Skip to content

Instantly share code, notes, and snippets.

@s-chb
Last active July 29, 2020 09:26
Show Gist options
  • Save s-chb/a16650f6c1d121c74a0489839f8ae5f0 to your computer and use it in GitHub Desktop.
Save s-chb/a16650f6c1d121c74a0489839f8ae5f0 to your computer and use it in GitHub Desktop.
version: '3.1'
services:
postgres:
image: postgres:12
hostname: postgres
container_name: postgres
ports:
- "5432:5432"
environment:
POSTGRES_DB: camunda
POSTGRES_USER: camunda
POSTGRES_PASSWORD: camunda
camunda:
image: camunda/camunda-bpm-platform:latest
hostname: camunda
container_name: camunda
ports:
- "8080:8080"
depends_on:
- postgres
environment:
- DB_DRIVER=org.postgresql.Driver
- DB_URL=jdbc:postgresql://postgres:5432/camunda
- DB_USERNAME=camunda
- DB_PASSWORD=camunda
- WAIT_FOR=postgres:5432
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment