This commit is contained in:
tavo 2025-08-02 14:03:47 -06:00
parent 454efa116f
commit 892da04bd4
2 changed files with 4 additions and 3 deletions

View file

@ -30,7 +30,7 @@ services:
- ${UPLOAD_LOCATION}:/data - ${UPLOAD_LOCATION}:/data
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
env_file: env_file:
- ${REPO_PREFIX}immich.env - immich.env
#ports: #ports:
# - '2283:2283' # - '2283:2283'
depends_on: depends_on:
@ -51,7 +51,7 @@ services:
volumes: volumes:
- model-cache:/cache - model-cache:/cache
env_file: env_file:
- ${REPO_PREFIX}immich.env - immich.env
restart: always restart: always
healthcheck: healthcheck:
disable: false disable: false
@ -98,6 +98,6 @@ configs:
} }
}, },
"AllowFunnel": { "AllowFunnel": {
"$${TS_CERT_DOMAIN}:443": false "$${TS_CERT_DOMAIN}:443": ${TS_ALLOW_FUNNEL:-false}
} }
} }

View file

@ -1,6 +1,7 @@
TS_HOSTNAME=immich TS_HOSTNAME=immich
TS_AUTHKEY=tskey-client-nnn-nnn # Change required TS_AUTHKEY=tskey-client-nnn-nnn # Change required
TS_EXTRA_ARGS=--advertise-tags=tag:container TS_EXTRA_ARGS=--advertise-tags=tag:container
TS_ALLOW_FUNNEL=false
BASE_DATA_DIR=${BASE_DATA_DIR:-.} # If desired, change data store location BASE_DATA_DIR=${BASE_DATA_DIR:-.} # If desired, change data store location
#REPO_PREFIX=${REPO_PREFIX:-immich/} #REPO_PREFIX=${REPO_PREFIX:-immich/}