Skip to content

Instantly share code, notes, and snippets.

View tkim90's full-sized avatar
💥

Tae Kim tkim90

💥
View GitHub Profile
@tkim90
tkim90 / docker-compose.yml
Last active September 6, 2019 18:35 — forked from onjin/docker-compose.yml
example docker compose for postgresql with db init script
postgres:
image: postgres:9.4
volumes:
# running multiple files
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
- ./schema.sql:/docker-entrypoint-initdb.d/1-schema.sql
- ./data.sql:/docker-entrypoint-initdb.d/2-data.sql