summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2019-10-15 13:41:20 +0100
committerStephen Finucane <stephen@that.guru>2019-10-17 12:02:39 +0100
commitb4f4c8554c1168ffe177dc11ddf9ff1535c1ff31 (patch)
tree57e9d2f7c00986a84ddb6d41a47dda32320c1ac4 /docker-compose.yml
parent77d10d311f022f7b63bc0a66570837fe5fb6c43f (diff)
downloadpatchwork-b4f4c8554c1168ffe177dc11ddf9ff1535c1ff31.tar
patchwork-b4f4c8554c1168ffe177dc11ddf9ff1535c1ff31.tar.gz
docker: Require GID also
If you don't do this, created files end up with a group of 'gcc' or whatever group has an ID of 1000. Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 90b24c2..1762d4a 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -15,6 +15,7 @@ services:
dockerfile: ./tools/docker/Dockerfile
args:
- UID
+ - GID
depends_on:
- db
command: python3 manage.py runserver 0.0.0.0:8000
@@ -24,5 +25,6 @@ services:
- "8000:8000"
environment:
- UID
+ - GID
- PW_TEST_DB_HOST=db
- PW_TEST_DB_PORT=3306