Skip to content

Commit

Permalink
Minor changes to docker-compose.yml
Browse files Browse the repository at this point in the history
* Undid removal of rabbitmq, dont know why this happened.
  • Loading branch information
HenrikEngen committed Sep 8, 2023
1 parent ea51945 commit d3775aa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions phoenix-development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,22 @@ services:
db:
image: postgres:alpine
env_file: .db_env
healthcheck:
test: ["CMD-SHELL", "pg_isready --username=phoenix"]
interval: 10s
timeout: 5s
retries: 5
logging:
options:
max-size: "1g"
rabbitmq:
image: rabbitmq:alpine
env_file: .rabbitmq_env
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 5s
timeout: 30s
retries: 3
logging:
options:
max-size: "1g"
Expand Down

0 comments on commit d3775aa

Please sign in to comment.