chore: add `healthcheck` field to server and ml (#11573)
add healthcheck field to server and mlpull/11575/head
parent
3968d76a57
commit
3f4b783889
|
|
@ -46,6 +46,8 @@ services:
|
|||
depends_on:
|
||||
- redis
|
||||
- database
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
immich-web:
|
||||
container_name: immich_web
|
||||
|
|
@ -91,6 +93,8 @@ services:
|
|||
depends_on:
|
||||
- database
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ services:
|
|||
- redis
|
||||
- database
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
immich-machine-learning:
|
||||
container_name: immich_machine_learning
|
||||
|
|
@ -40,6 +42,8 @@ services:
|
|||
env_file:
|
||||
- .env
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
|
|
|
|||
|
|
@ -27,6 +27,8 @@ services:
|
|||
- redis
|
||||
- database
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
immich-machine-learning:
|
||||
container_name: immich_machine_learning
|
||||
|
|
@ -41,6 +43,8 @@ services:
|
|||
env_file:
|
||||
- .env
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
|
|
|
|||
Loading…
Reference in New Issue