ImmichI
Immich6mo ago
SamTan

docker-compose - microservices

Greetings...
Trying to install using this docker-compose, getting error "immich-microservices Error manifest unknown". I haven't yet created the .env, stuck here.
I've tried multiple variations to no avail. Please point out my error and a solution?

services: immich-server: image: ghcr.io/immich-app/immich-server:main container_name: immich-server depends_on: - redis - database env_file: .env environment: - NODE_ENV=production volumes: - /mnt/media/pictures:/usr/src/app/upload networks: - immich - traefik labels: - "traefik.enable=true" - "traefik.http.routers.immich.rule=Host(pix.my-site.com)" - "traefik.http.routers.immich.entrypoints=websecure" - "traefik.http.routers.immich.tls.certresolver=letsencrypt" - "traefik.http.routers.immich.middlewares=authelia@docker" - "traefik.http.services.immich.loadbalancer.server.port=3001" immich-microservices: image: ghcr.io/immich-app/immich-microservices:main container_name: immich-microservices depends_on: - redis - database env_file: .env environment: - NODE_ENV=production volumes: - /mnt/media/pictures:/usr/src/app/upload networks: - immich immich-machine-learning: image: ghcr.io/immich-app/immich-machine-learning:main container_name: immich-ml volumes: - model-cache:/cache networks: - immich redis: image: redis:6.2 container_name: immich-redis networks: - immich database: image: postgres:14 container_name: immich-postgres env_file: .env volumes: - pgdata:/var/lib/postgresql/data networks: - immich volumes: pgdata: model-cache: networks: immich: traefik: external: true
Was this page helpful?