You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.3 KiB
76 lines
2.3 KiB
version: "3.7"
|
|
|
|
x-environment: &env
|
|
NODE_ENV: "production"
|
|
DB_HOSTNAME: "immich_postgres_1"
|
|
DB_USERNAME: &db_username "immich"
|
|
DB_PASSWORD: &db_password "moneyprintergobrrr"
|
|
DB_DATABASE_NAME: &db_database_name "immich"
|
|
REDIS_HOSTNAME: "immich_redis_1"
|
|
LOG_LEVEL: "log"
|
|
JWT_SECRET: ${APP_SEED}
|
|
DISABLE_REVERSE_GEOCODING: "false"
|
|
REVERSE_GEOCODING_PRECISION: "3"
|
|
PUBLIC_LOGIN_PAGE_MESSAGE: ""
|
|
IMMICH_MACHINE_LEARNING_URL: "http://immich_machine-learning_1:3003"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: immich_server_1
|
|
APP_PORT: 3001
|
|
PROXY_AUTH_WHITELIST: "/api/*,/search/*"
|
|
|
|
server:
|
|
image: ghcr.io/immich-app/immich-server:v1.98.2@sha256:5d46c02f171b2c85c5c445ed9ae233d68568b241e14e293b0195d539b98de42a
|
|
command: [ "start.sh", "immich" ]
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/upload:/usr/src/app/upload
|
|
environment:
|
|
<<: *env
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
restart: on-failure
|
|
|
|
microservices:
|
|
image: ghcr.io/immich-app/immich-server:v1.98.2@sha256:5d46c02f171b2c85c5c445ed9ae233d68568b241e14e293b0195d539b98de42a
|
|
# This service cannot run under 1000:1000
|
|
# And because the uploads are shared
|
|
# We'll run immich specific services as root
|
|
command: [ "start.sh", "microservices" ]
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/upload:/usr/src/app/upload
|
|
environment:
|
|
<<: *env
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
restart: on-failure
|
|
|
|
machine-learning:
|
|
image: ghcr.io/immich-app/immich-machine-learning:v1.98.2@sha256:ac21ed6160c106eb26f704626d1fbf693dd74640131afd4d2ccad5db26aa98c5
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/model-cache:/cache
|
|
environment:
|
|
<<: *env
|
|
restart: on-failure
|
|
|
|
redis:
|
|
image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/redis:/data
|
|
|
|
postgres:
|
|
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
|
user: "1000:1000"
|
|
environment:
|
|
<<: *env
|
|
POSTGRES_PASSWORD: *db_password
|
|
POSTGRES_USER: *db_username
|
|
POSTGRES_DB: *db_database_name
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
|
|
restart: on-failure
|
|
|