diff options
author | 2021-06-06 22:35:52 +0100 | |
---|---|---|
committer | 2021-06-06 22:35:52 +0100 | |
commit | 222b3305db381f93d7f665932080869a161b68d7 (patch) | |
tree | aa9671acb3561a07f502c0a2b647f0c5d88bea59 /docker-compose.yml | |
parent | Merge pull request #1587 from RohanJnr/voice_ver_dm (diff) |
Change to unless-stopped restart policy
Since we use the same port for redis on all out projects, having this
always restart causes conflicts for people starting up docker and
wanting to use redis for anyother project.
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index bdfedf5c2..1761d8940 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ x-logging: &logging max-size: "10m" x-restart-policy: &restart_policy - restart: always + restart: unless-stopped services: postgres: |