1
0
mirror of https://github.com/immich-app/immich.git synced 2025-01-02 12:48:35 +02:00

fix(server): Set dev restart policy to unless-stopped. (#3123)

Previously, if you'd shut down the `make-dev` command and restart
the docker daemon (say, on a system reboot), there would be 3 immich
containers already running.
This commit is contained in:
Rohitt Vashishtha 2023-07-06 01:53:23 +05:30 committed by GitHub
parent 71a2914f3e
commit 814030be77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ services:
- NODE_ENV=development - NODE_ENV=development
depends_on: depends_on:
- database - database
restart: always restart: unless-stopped
immich-microservices: immich-microservices:
container_name: immich_microservices container_name: immich_microservices
@ -88,7 +88,7 @@ services:
volumes: volumes:
- ../web:/usr/src/app - ../web:/usr/src/app
- /usr/src/app/node_modules - /usr/src/app/node_modules
restart: always restart: unless-stopped
depends_on: depends_on:
- immich-server - immich-server
@ -137,7 +137,7 @@ services:
depends_on: depends_on:
- immich-server - immich-server
- immich-web - immich-web
restart: always restart: unless-stopped
volumes: volumes:
pgdata: pgdata: