-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4dd75f
commit 4385db0
Showing
16 changed files
with
123 additions
and
29 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
cammand/ | ||
*.jar | ||
*.p12 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Cammad Docker Setup (Alternative UI for Camunda / Replacement for Camunda Webapps) | ||
|
||
**This is a development version for demo purposes!** | ||
|
||
You must access the UI from the root url. | ||
If you copy a url with path or query parameters the page will fail to load. | ||
|
||
## Setup: | ||
|
||
1. Download the Cammand.zip from the Releases and uzip into the `docker/cammand` folder. | ||
1. Add your `keystore.p12` or pcks file for https into the root of the docker folder. | ||
1. Update the `default.yml` for the ssl settings: | ||
```yml | ||
server.ssl.key-store: classpath:keystore.p12 | ||
server.ssl.key-store-password: 1234567890 | ||
server.ssl.key-store-type: PKCS12 | ||
server.ssl.key-alias: tomcat | ||
``` | ||
1. run from the docker folder: `docker-compose up` | ||
1. `https://locahost:8080` (note **s** in the https) | ||
|
||
If you want to access the original Camunda WebApps: | ||
|
||
1. `localhost:8080/camunda/app/welcome` | ||
1. `localhost:8080/camunda/app/cockpit` | ||
1. `localhost:8080/camunda/app/tasklist` | ||
1. `localhost:8080/camunda/app/admin` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#spring: | ||
# datasource: | ||
# url: jdbc:h2:./build/DB/dbdevDb1;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=TRUE # jdbc:h2:~/devDb1;MODE=PostgreSQL;AUTO_SERVER=TRUE | ||
# username: sa | ||
# password: '' | ||
|
||
server: | ||
ssl: | ||
key-store: classpath:keystore.p12 | ||
key-store-password: 1234567890 | ||
key-store-type: PKCS12 | ||
key-alias: tomcat | ||
|
||
camunda: | ||
bpm: | ||
webapp: | ||
index-redirect-enabled: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: '3.7' | ||
|
||
services: | ||
camunda: | ||
image: camunda/camunda-bpm-platform:run-latest | ||
container_name: camunda-with-cammand | ||
ports: | ||
- "8080:8080" | ||
expose: | ||
- 8080 | ||
volumes: | ||
- ./cammand:/camunda/configuration/userlib/META-INF/resources/ | ||
- ./default.yml:/camunda/configuration/default.yml | ||
- ./keystore.p12:/camunda/configuration/keystore/keystore.p12 | ||
networks: | ||
- camunda-net | ||
|
||
networks: | ||
camunda-net: | ||
driver: bridge |
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
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
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
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
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
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
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
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
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
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
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