Last active
July 29, 2020 09:26
-
-
Save s-chb/a16650f6c1d121c74a0489839f8ae5f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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