1
0
Fork 0
Learning-GoLang/simple-blog/docker-compose-dev.yml

13 lines
275 B
YAML
Raw Normal View History

2024-07-19 20:13:45 +00:00
version: "3.8"
services:
dev_db:
image: postgres:15.4-alpine3.18
environment:
POSTGRES_PASSWORD: pass
POSTGRES_USER: goxygen
POSTGRES_DB: goxygen
ports:
- 5432:5432
volumes:
- ./init-db.sql:/docker-entrypoint-initdb.d/init.sql