Update docker-compose.yml (#64)

Added `restart: unless-stopped` to all services.

Closes #63.
This commit is contained in:
wasalm 2022-09-28 14:26:07 +01:00 committed by GitHub
parent ec43c98cf0
commit 5c5f58c63f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,7 @@ services:
chirpstack-gateway-bridge-eu868:
image: chirpstack/chirpstack-gateway-bridge:4.0.0
restart: unless-stopped
ports:
- 1700:1700/udp
volumes:
@ -30,6 +31,7 @@ services:
chirpstack-rest-api:
image: chirpstack/chirpstack-rest-api:4.0.0
restart: unless-stopped
command: --server chirpstack:8080 --bind 0.0.0.0:8090 --insecure
ports:
- 8090:8090
@ -38,6 +40,7 @@ services:
postgres:
image: postgres:14-alpine
restart: unless-stopped
volumes:
- ./configuration/postgresql/initdb:/docker-entrypoint-initdb.d
- postgresqldata:/var/lib/postgresql/data
@ -46,6 +49,7 @@ services:
redis:
image: redis:7-alpine
restart: unless-stopped
volumes:
- redisdata:/data