Skip to content

Commit f876117

Browse files
committed
fix: docker composer ports
1 parent 746dad8 commit f876117

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
<<: *postgres-image
1616
pull_policy: missing
1717
ports:
18-
- "55432:5432"
18+
- "5432:5432"
1919
networks:
2020
- opensight-notification-net
2121
environment:

pkg/pgtesting/init_db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func NewDB(t *testing.T) *sqlx.DB {
2626
User: "postgres",
2727
Password: "password",
2828
Host: "localhost",
29-
Port: "55432",
29+
Port: "5432",
3030
Options: "sslmode=disable",
3131
}
3232

0 commit comments

Comments
 (0)