From 29c704a9a1a4014cb7be3415099f7660d26f9867 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 2 May 2018 16:06:25 +0100 Subject: [PATCH] docker-compose: Re-add 'PGPASSWORD' to correct section This was moved in commit '1590c21d' but should not have been. Restore it to its rightful place. Signed-off-by: Stephen Finucane Fixes: 1590c21d ("docker-compose: Remove 'links' section") Tested-by: Daniel Axtens --- docker-compose-pg.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker-compose-pg.yml b/docker-compose-pg.yml index fdc3fbef..7bb579c3 100644 --- a/docker-compose-pg.yml +++ b/docker-compose-pg.yml @@ -6,8 +6,6 @@ services: - ./tools/docker/db/postdata:/var/lib/postgresql/data environment: - POSTGRES_PASSWORD=password - - PGUSER=postgres - - PGPASSWORD=password web: build: @@ -29,3 +27,4 @@ services: - PW_TEST_DB_TYPE=postgres - PW_TEST_DB_USER=postgres - PW_TEST_DB_PASS=password + - PGPASSWORD=password -- 2.47.3