Skip to content

Instantly share code, notes, and snippets.

@s-chb
Created December 10, 2020 22:31
Show Gist options
  • Save s-chb/6aef49b23b490dfb25012494b02ba9a1 to your computer and use it in GitHub Desktop.
Save s-chb/6aef49b23b490dfb25012494b02ba9a1 to your computer and use it in GitHub Desktop.
version: '3.1'
services:
postgres:
image: postgres:12
hostname: postgres
container_name: postgres
volumes:
- ./db:/var/lib/postgresql/data:rw
- ./initdb.d:/docker-entrypoint-initdb.d
ports:
- "5432:5432"
environment:
POSTGRES_DB: camunda
POSTGRES_USER: camunda
POSTGRES_PASSWORD: camunda
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment