Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Nov 25, 2023
2 parents 56be07f + 4e7a895 commit ab1e1a1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ version: "3.1"
services:
peppermint_postgres:
container_name: peppermint_postgres
profiles:
- prod
- dev
- test
image: postgres:latest
restart: always
ports:
Expand All @@ -66,6 +70,10 @@ services:
restart: always
depends_on:
- peppermint_postgres
profiles:
- prod
depends_on:
- postgres
healthcheck:
test: ["CMD", "sh", "-c", "wget --spider $$BASE_URL"]
interval: 30s
Expand All @@ -75,7 +83,8 @@ services:
DB_USERNAME: "peppermint"
DB_PASSWORD: "1234"
DB_HOST: "peppermint_postgres"
SECRET: 'peppermint4life'
volumes:
pgdata:
```
Expand Down

0 comments on commit ab1e1a1

Please sign in to comment.