[PATCH v2] docker: Specify GID for docker-compose-pg.yml too

Daniel Axtens dja at axtens.net
Thu Oct 24 15:07:27 AEDT 2019


We just need to mirror the change in the MySQL/default
docker-compose.yml file.

Fixes: b4f4c8554c11 ("docker: Require GID also")
Signed-off-by: Daniel Axtens <dja at axtens.net>

---

v2: an object lesson in why you should test before emailing
---
 docker-compose-pg.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git docker-compose-pg.yml docker-compose-pg.yml
index 7bb579c3279f..44c49fb6113d 100644
--- docker-compose-pg.yml
+++ docker-compose-pg.yml
@@ -13,6 +13,7 @@ services:
       dockerfile: ./tools/docker/Dockerfile
       args:
         - UID
+        - GID
     depends_on:
       - db
     command: python3 manage.py runserver 0.0.0.0:8000
@@ -22,6 +23,7 @@ services:
       - "8000:8000"
     environment:
       - UID
+      - GID
       - PW_TEST_DB_HOST=db
       - PW_TEST_DB_PORT=5432
       - PW_TEST_DB_TYPE=postgres
-- 
2.20.1



More information about the Patchwork mailing list