diff --git a/README.md b/README.md index b3383c297..f58aaa96b 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,10 @@ version: "3.1" services: peppermint_postgres: container_name: peppermint_postgres + profiles: + - prod + - dev + - test image: postgres:latest restart: always ports: @@ -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 @@ -75,7 +83,8 @@ services: DB_USERNAME: "peppermint" DB_PASSWORD: "1234" DB_HOST: "peppermint_postgres" - + SECRET: 'peppermint4life' + volumes: pgdata: ```