Skip to content

Commit

Permalink
Completes pass-through of environment to Sentry via COMPOSE_PROJECT_N…
Browse files Browse the repository at this point in the history
…AME env var (#9960)

* Update docker-compose-stable.yml

add COMPOSE_PROJECT_NAME env var

* Update docker-compose-production.yml

* Update docker-compose-unstable.yml

* Update docker-compose-testing.yml
  • Loading branch information
jywarren authored Jul 27, 2021
1 parent 3c0190b commit 2d92f9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions containers/docker-compose-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ services:
- "127.0.0.1:4000:4000"
build: ..
environment:
- COMPOSE_PROJECT_NAME=${COMPOSE_PROJECT_NAME}
- DB_USER=${DB_USER}
- DB_NAME=${DB_NAME}
- DB_PASS=${DB_PASS}
Expand Down
1 change: 1 addition & 0 deletions containers/docker-compose-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ services:
- "127.0.0.1:4000:4000"
build: ..
environment:
- COMPOSE_PROJECT_NAME=${COMPOSE_PROJECT_NAME}
- DB_USER=${DB_USER}
- DB_NAME=${DB_NAME}
- DB_PASS=${DB_PASS}
Expand Down
1 change: 1 addition & 0 deletions containers/docker-compose-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ services:
cap_add:
- SYS_PTRACE
environment:
- COMPOSE_PROJECT_NAME=${COMPOSE_PROJECT_NAME}
- DB_USER=${DB_USER}
- DB_NAME=${DB_NAME}
- DB_PASS=${DB_PASS}
Expand Down
1 change: 1 addition & 0 deletions containers/docker-compose-unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ services:
- "127.0.0.1:5001:4000"
build: ..
environment:
- COMPOSE_PROJECT_NAME=${COMPOSE_PROJECT_NAME}
- DB_USER=${DB_USER}
- DB_NAME=${DB_NAME}
- DB_PASS=${DB_PASS}
Expand Down

0 comments on commit 2d92f9e

Please sign in to comment.