Skip to content

Commit c408130

Browse files
committed
Fix docker compose file
1 parent 25c3c58 commit c408130

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docker-compose.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ services:
1111
db:
1212
image: postgres:15-alpine
1313
environment:
14-
- POSTGRES_USER=user
15-
- POSTGRES_PASSWORD=pass
16-
- POSTGRES_DB=yabin
14+
POSTGRES_USER: user
15+
POSTGRES_PASSWORD: pass
16+
POSTGRES_DB: yabin
17+
POSTGRES_HOST_AUTH_METHOD: "trust"
1718
volumes:
1819
- db_data:/var/lib/postgresql/data:Z
1920
restart: always

0 commit comments

Comments
 (0)