Skip to content

Instantly share code, notes, and snippets.

@HRKings
Last active December 21, 2021 00:23
Show Gist options
  • Save HRKings/6d2b6281d3ccc009e494bdd24f9585d1 to your computer and use it in GitHub Desktop.
Save HRKings/6d2b6281d3ccc009e494bdd24f9585d1 to your computer and use it in GitHub Desktop.
PostgreSQL Template Docker Compose File
version: "3.9"
services:
postgres:
container_name: postgres
image: postgres:alpine
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password}
PGDATA: /data/postgres
volumes:
- ./postgres:/data/postgres
ports:
- "5432:5432"
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment