Patch to change the default port for postgres to 8123

This commit is contained in:
Alex Huddleston 2020-03-31 23:02:09 -05:00
parent 03cee23ccb
commit 86beb92ecd

View file

@ -34,7 +34,7 @@ services:
networks:
- net
ports:
- 5432:5432
- 8123:8123
volumes:
- ./pg_data:/var/lib/postgresql/data/pg_data
- ./config:/config
@ -43,7 +43,7 @@ services:
POSTGRES_DB: covid_prod
POSTGRES_USER: covidbot
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
POSTGRES_PORT: 8123
PGDATA: /var/lib/postgresql/data/pg_data
networks:
net: