only restart docker unless stopped

This commit is contained in:
jonaswinkler 2021-01-12 00:21:05 +01:00
parent 681b769a71
commit 221cf12184
3 changed files with 7 additions and 7 deletions

View File

@ -2,11 +2,11 @@ version: "3.4"
services:
broker:
image: redis:6.0
restart: always
restart: unless-stopped
db:
image: postgres:13
restart: always
restart: unless-stopped
volumes:
- pgdata:/var/lib/postgresql/data
environment:
@ -16,7 +16,7 @@ services:
webserver:
image: jonaswinkler/paperless-ng:latest
restart: always
restart: unless-stopped
depends_on:
- db
- broker

View File

@ -2,11 +2,11 @@ version: "3.4"
services:
broker:
image: redis:6.0
restart: always
restart: unless-stopped
webserver:
image: jonaswinkler/paperless-ng:latest
restart: always
restart: unless-stopped
depends_on:
- broker
ports:

View File

@ -2,11 +2,11 @@ version: "3.4"
services:
broker:
image: redis:6.0
restart: always
restart: unless-stopped
webserver:
image: jonaswinkler/paperless-ng:latest
restart: always
restart: unless-stopped
depends_on:
- broker
ports: