Docker Compose: Disable automatic restart

This commit is contained in:
Michael Mayer 2020-12-18 21:18:25 +01:00
parent 6e4f95adba
commit 27ff4ce2c9
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,6 @@ version: '3.5'
services:
photoprism:
image: photoprism/photoprism-arm64:latest
restart: unless-stopped
# Uncomment and edit the following line to set a specific user / group id:
# user: "1000:1000"
security_opt:
@ -22,6 +21,7 @@ services:
ports:
- 2342:2342 # [local port]:[container port]
# Uncomment the following lines to enable regular health checks (causes automatic restarts):
# restart: unless-stopped
# healthcheck:
# test: ["CMD", "photoprism", "status"]
# interval: 60s

View File

@ -13,7 +13,6 @@ version: '3.5'
services:
photoprism:
image: photoprism/photoprism:latest
restart: unless-stopped
# Uncomment and edit the following line to set a specific user / group id:
# user: "1000:1000"
security_opt:
@ -22,6 +21,7 @@ services:
ports:
- 2342:2342 # [local port]:[container port]
# Uncomment the following lines to enable regular health checks (causes automatic restarts):
# restart: unless-stopped
# healthcheck:
# test: ["CMD", "photoprism", "status"]
# interval: 60s