Skip to content

Commit 4d2d48f

Browse files
committedOct 29, 2019
docker: Specify GID for docker-compose-pg.yml too
We just need to mirror the changes in the MySQL/default docker-compose.yml file. Fixes: b4f4c85 ("docker: Require GID also") Signed-off-by: Daniel Axtens <[email protected]>
1 parent 29321ed commit 4d2d48f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎docker-compose-pg.yml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ services:
1313
dockerfile: ./tools/docker/Dockerfile
1414
args:
1515
- UID
16+
- GID
1617
depends_on:
1718
- db
1819
command: python3 manage.py runserver 0.0.0.0:8000
@@ -22,6 +23,7 @@ services:
2223
- "8000:8000"
2324
environment:
2425
- UID
26+
- GID
2527
- PW_TEST_DB_HOST=db
2628
- PW_TEST_DB_PORT=5432
2729
- PW_TEST_DB_TYPE=postgres

0 commit comments

Comments
 (0)
Please sign in to comment.