Skip to content

Instantly share code, notes, and snippets.

@hacfi
Created July 24, 2016 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hacfi/9bc60d980c1859a2b3fefbeb08e89532 to your computer and use it in GitHub Desktop.
Save hacfi/9bc60d980c1859a2b3fefbeb08e89532 to your computer and use it in GitHub Desktop.
Docker run Activiti & Camunda
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/
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