aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-28 23:40:34 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-28 23:40:34 +0100
commit86f6025c2df01c17162be8f16f97ebdf0ea33d16 (patch)
tree0dde12dff3b6e4a41f335e49efae9b2742b909f9
parentupdated volumes for the newspipe service (npm_components is now ignored) (diff)
downloadnewspipe-86f6025c2df01c17162be8f16f97ebdf0ea33d16.tar.gz
newspipe-86f6025c2df01c17162be8f16f97ebdf0ea33d16.tar.bz2
newspipe-86f6025c2df01c17162be8f16f97ebdf0ea33d16.zip
docker now exposes port number 5532 for postgres
-rw-r--r--docker-compose.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
index 45e81d0b..3634afc2 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -10,9 +10,9 @@ services:
- POSTGRES_PASSWORD=password
- POSTGRES_DB=postgres
ports:
- - '5432:5432'
+ - '5532:5432'
expose:
- - '5432'
+ - '5532'
volumes:
- ./docker/postgres/data:/var/lib/postgresql/data
bgstack15