Skip to content

Commit

Permalink
Fix docker compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
Yureien committed Sep 11, 2023
1 parent 25c3c58 commit c408130
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ services:
db:
image: postgres:15-alpine
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
- POSTGRES_DB=yabin
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
POSTGRES_DB: yabin
POSTGRES_HOST_AUTH_METHOD: "trust"
volumes:
- db_data:/var/lib/postgresql/data:Z
restart: always
Expand Down

0 comments on commit c408130

Please sign in to comment.