Created
July 24, 2016 00:10
-
-
Save hacfi/9bc60d980c1859a2b3fefbeb08e89532 to your computer and use it in GitHub Desktop.
Docker run Activiti & Camunda
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
docker run --name=mysql -d -e 'DB_NAME=activiti' -e 'DB_USER=activiti' -e 'DB_PASS=password' sameersbn/mysql:latest | |
docker run --name=activiti --rm -it -p 8080:8080 --link mysql:mysql eternnoir/activiti:latest | |
# open browser at http://{DOCKERIP}:8080/activiti-explorer/ |
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
docker run -d --name camunda -p 8081:8080 camunda/camunda-bpm-platform:latest | |
# open browser at http://{DOCKERIP}:8081/camunda/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment