Skip to content

Commit

Permalink
chore(stacks): Add Docker QA Stack for 7.21.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
psavidis committed Oct 5, 2023
1 parent 96615a1 commit 23e5d42
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
35 changes: 35 additions & 0 deletions stack-templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,41 @@
"title": "WebLogic 14R1 (autosetup): Camunda Platform 7.20.x",
"type": 2
},
{
"categories": [
"server"
],
"description": "NOTE: Please first start a database container and fill out the database fields before creating this container!",
"env": [
{
"label": "Database Host",
"name": "DATABASE_HOST"
},
{
"label": "Database Port",
"name": "DATABASE_PORT"
},
{
"default": "XE",
"label": "Database Name",
"name": "DATABASE_NAME"
},
{
"default": "oracle",
"label": "Database Type (oracle, postgres, h2)",
"name": "DATABASE_TYPE"
}
],
"logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/registry.png",
"note": "List: <a href=\"https://github.com/camunda/portainer-templates/blob/master/stack-templates.json\">https://github.com/camunda/portainer-templates/blob/master/stack-templates.json</a><br/>Source: <a href=\"https://github.com/camunda/portainer-templates/blob/master/stacks/weblogic14r1-721-latest/docker-stack.yml\">https://github.com/camunda/portainer-templates/blob/master/stacks/weblogic14r1-721-latest/docker-stack.yml</a>",
"platform": "linux",
"repository": {
"stackfile": "stacks/weblogic14r1-721-latest/docker-stack.yml",
"url": "https://github.com/camunda/portainer-templates"
},
"title": "WebLogic 14R1 (autosetup): Camunda Platform 7.21.x",
"type": 2
},
{
"categories": [
"server"
Expand Down
17 changes: 17 additions & 0 deletions stacks/weblogic14r1-721-latest/docker-stack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
services:
main:
command: /home/camunda/start_container.sh
deploy:
restart_policy:
condition: on-failure
environment:
- DATABASE_HOST=${DATABASE_HOST}
- DATABASE_PORT=${DATABASE_PORT}
- DATABASE_NAME=${DATABASE_NAME}
- DATABASE_TYPE=${DATABASE_TYPE}
image: registry.camunda.cloud/team-cambpm/weblogic14r1:7.21.0-ee
ports:
- 7001/tcp
restart: on-failure
version: '3'
18 changes: 18 additions & 0 deletions stacks/websphere9-721-latest/docker-stack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
services:
main:
command: /home/camunda/start_container.sh
deploy:
restart_policy:
condition: on-failure
environment:
- DATABASE_HOST=${DATABASE_HOST}
- DATABASE_PORT=${DATABASE_PORT}
- DATABASE_NAME=${DATABASE_NAME}
- DATABASE_TYPE=${DATABASE_TYPE}
image: registry.camunda.cloud/team-cambpm/websphere9:7.21.0-ee
ports:
- 9060/tcp
- 9080/tcp
restart: on-failure
version: '3'

0 comments on commit 23e5d42

Please sign in to comment.