mirror of
https://github.com/getumbrel/umbrel-apps.git
synced 2024-11-13 17:09:17 +00:00
84de001fa8
Co-authored-by: Malte Kiefer <malte.kiefer@mailbox.org> Co-authored-by: nmfretz <nmfretz@gmail.com>
62 lines
2.0 KiB
YAML
62 lines
2.0 KiB
YAML
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.109.2@sha256:79f5d0c375b0df84e4d0ac89103753d6145ec3facb329e860008f2813f647d84
|
|
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.109.2@sha256:3ab8e332004c693421320ac7e22065a1187f3d0e84255f97cacf83bce7bdfc1f
|
|
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"
|
|
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
|
|
environment:
|
|
<<: *env
|
|
POSTGRES_PASSWORD: *db_password
|
|
POSTGRES_USER: *db_username
|
|
POSTGRES_DB: *db_database_name
|
|
POSTGRES_INITDB_ARGS: '--data-checksums'
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
|
|
restart: on-failure |