Created
August 17, 2018 05:04
-
-
Save jeremylcarter/581fd9acd61041145f01853021d1bd19 to your computer and use it in GitHub Desktop.
This file contains 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' | |
services: | |
db: | |
image: postgres:9.6-alpine | |
container_name: camunda_db | |
ports: | |
- "5432:5432" | |
networks: | |
- camunda-bpm | |
environment: | |
- POSTGRES_DB=camunda | |
- POSTGRES_USER=camunda | |
- POSTGRES_PASSWORD=camunda | |
platform: | |
image: camunda/camunda-bpm-platform | |
container_name: camunda_bpm | |
ports: | |
- "8080:8080" | |
environment: | |
- DB_DRIVER=org.postgresql.Driver | |
- WAIT_FOR=db:5432 | |
- DB_URL=jdbc:postgresql://db:5432/camunda | |
- DB_USERNAME=camunda | |
- DB_PASSWORD=camunda | |
networks: | |
- camunda-bpm | |
depends_on: | |
- 'db' | |
networks: | |
camunda-bpm: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment