aboutsummaryrefslogtreecommitdiffstats
path: root/roles/jails/20_immich/defaults/main.yml
blob: cb0bd35839ee3404a0b3084fafd7bdef58fd94df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
userland: "15.0-RELEASE"
immich_version: "v2.4.1"

oci_images:
  - name: immich-server
    image: "ghcr.io/immich-app/immich-server:{{ immich_version }}"
    check_path: /usr/src/app/server/dist/main.js
    mounts:
      - { type: nullfs, src: immich_data, dst: /data }
  - name: immich-ml
    image: "ghcr.io/immich-app/immich-machine-learning:{{ immich_version }}"
    check_path: /opt/venv/bin/python
    mounts:
      - { type: nullfs, src: model-cache, dst: /cache }

zfs:
  - name: zroot/jails/volumes/immich_data
    mountpoint: /immich_data
    mode: "0755"
  - name: zroot/jails/volumes/immich_model_cache
    mountpoint: /model_cache
    mode: "0755"

pkg:
  - skopeo

services: []