Skip to content

Instantly share code, notes, and snippets.

@kelvingakuo
Created November 2, 2021 10:06
Show Gist options
  • Save kelvingakuo/b7cc8800fb90c6327128ccdb03892d1a to your computer and use it in GitHub Desktop.
Save kelvingakuo/b7cc8800fb90c6327128ccdb03892d1a to your computer and use it in GitHub Desktop.
version: '3.1'
services:
database:
image: "postgres"
restart: "always"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=db
- PGDATA=/tmp/
ports:
- '5432:5432'
volumes:
- ./db-data:/var/lib/postgresql/data
- ./sql/init.sql:/docker-entrypoint-initdb.d/create_tables.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment