SomeNet
/
public repos
/
pub
/
jan
/
aic18.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Camunda BPMN aic container-overlay.
[pub/jan/aic18.git]
/
provision.sh
1
#!/bin/bash
2
3
cd /vagrant
4
5
apt update
6
apt install -y docker.io docker-compose
7
8
# camunda install
9
docker build -t camunda-aic-overlay camunda-aic-overlay
10
docker run -d --name camunda -p 8080:8080 camunda-aic-overlay:latest
11
12
# docker-compose up
13