mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-17 16:50:53 +00:00
Add restart policy to Docker services
Adding a restart policy so that the default recommendation is to use unless-stopped.
This commit is contained in:
parent
9007064166
commit
39f2f8f970
1 changed files with 3 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ services:
|
|||
# dockerfile: docker/Dockerfile.dev
|
||||
image: ghcr.io/dispatcharr/dispatcharr:base
|
||||
container_name: dispatcharr_dev
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5656:5656
|
||||
- 9191:9191
|
||||
|
|
@ -33,6 +34,7 @@ services:
|
|||
|
||||
pgadmin:
|
||||
image: dpage/pgadmin4
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
PGADMIN_DEFAULT_EMAIL: admin@admin.com
|
||||
PGADMIN_DEFAULT_PASSWORD: admin
|
||||
|
|
@ -43,6 +45,7 @@ services:
|
|||
|
||||
redis-commander:
|
||||
image: rediscommander/redis-commander:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- REDIS_HOSTS=dispatcharr:dispatcharr:6379:0
|
||||
- TRUST_PROXY=true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue