Skip to content

Commit

Permalink
change user, pw, db to postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrickchan committed Dec 9, 2023
1 parent 34b2d0d commit 7417a94
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker-compose-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ version: '3.8'
services:

postgres:
image: postgres:16-alpine
image: postgres:16.1-alpine
restart: unless-stopped
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: pass
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
volumes:
- postgres_data:/var/lib/postgresql/data
- ./init/postgres/initdb/:/docker-entrypoint-initdb.d/:ro
Expand Down

0 comments on commit 7417a94

Please sign in to comment.