Skip to content

Commit f1f72ca

Browse files
authored
fix: bind postgres port to loopback only (#64)
* fix: local dev setup for running backend outside Docker * fix: bind postgres port to loopback only
1 parent 1495e71 commit f1f72ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
postgres:
33
image: postgres:16-alpine
44
ports:
5-
- "5432:5432"
5+
- "127.0.0.1:5432:5432"
66
environment:
77
POSTGRES_DB: atlas
88
POSTGRES_USER: ${POSTGRES_USER:-atlas}

0 commit comments

Comments
 (0)