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: "simple" JWT_SECRET: ${APP_SEED} DISABLE_REVERSE_GEOCODING: "false" REVERSE_GEOCODING_PRECISION: "3" PUBLIC_LOGIN_PAGE_MESSAGE: "" TYPESENSE_API_KEY: &typesense_api_key "any-text-for-self-hosted-typesense" IMMICH_SERVER_URL: &immich_server_url "http://immich_server_1:3001" IMMICH_WEB_URL: &immich_web_url "http://immich_web_1:3000" IMMICH_MACHINE_LEARNING_URL: "http://immich_machine-learning_1:3003" services: app_proxy: environment: APP_HOST: immich_proxy_1 APP_PORT: 8080 PROXY_AUTH_WHITELIST: "/api/*,/search/*" server: image: ghcr.io/immich-app/immich-server:v1.74.0@sha256:6b5a532b67d0a12276062dc404499a7b0e9fc90225e3e58199554fb776329e76 command: [ "start.sh", "immich" ] volumes: - ${APP_DATA_DIR}/data/upload:/usr/src/app/upload environment: <<: *env depends_on: - redis - postgres - typesense restart: on-failure microservices: image: ghcr.io/immich-app/immich-server:v1.74.0@sha256:6b5a532b67d0a12276062dc404499a7b0e9fc90225e3e58199554fb776329e76 # 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 - typesense restart: on-failure machine-learning: image: ghcr.io/immich-app/immich-machine-learning:v1.74.0@sha256:f504a443f13a3b2cadc4f1c4ef9fdc7b40ab326fc454bb0728c027089c146f5d volumes: - ${APP_DATA_DIR}/data/model-cache:/cache environment: <<: *env restart: on-failure web: image: ghcr.io/immich-app/immich-web:v1.74.0@sha256:ae9192bef9215b5d898878a6c4428334f95ec3d7806064e46182ccdd572bbf53 environment: <<: *env restart: on-failure typesense: image: typesense/typesense:0.24.1@sha256:9bcff2b829f12074426ca044b56160ca9d777a0c488303469143dd9f8259d4dd environment: TYPESENSE_API_KEY: *typesense_api_key TYPESENSE_DATA_DIR: "/data" volumes: - ${APP_DATA_DIR}/data/tsdata:/data restart: on-failure proxy: image: ghcr.io/immich-app/immich-proxy:v1.74.0@sha256:409c785c69954bba3b7905f47319af2fcb0b4972d0cf6865440dcd3c73cd909d environment: IMMICH_SERVER_URL: *immich_server_url IMMICH_WEB_URL: *immich_web_url depends_on: - server - web 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: postgres:14-alpine@sha256:28407a9961e76f2d285dc6991e8e48893503cc3836a4755bbc2d40bcc272a441 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