Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(stacks): Add Docker QA Stack for 7.23.0-SNAPSHOT #69

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions new-stack-templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,39 @@
"title": "WebLogic 14R1 (autosetup): Camunda Platform 7.22.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-723-latest/docker-stack.yml\">https://github.com/camunda/portainer-templates/blob/master/stacks/weblogic14r1-723-latest/docker-stack.yml</a>",
"platform": "linux",
"repository": {
"stackfile": "stacks/weblogic14r1-723-latest/docker-stack.yml",
"url": "https://github.com/camunda/portainer-templates"
},
"title": "WebLogic 14R1 (autosetup): Camunda Platform 7.23.x",
"type": 2
},
{
"categories": ["server"],
"description": "NOTE: Please first start a database container and fill out the database fields before creating this container!",
Expand Down
35 changes: 35 additions & 0 deletions stack-templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,41 @@
"title": "WebLogic 14R1 (autosetup): Camunda Platform 7.22.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-723-latest/docker-stack.yml\">https://github.com/camunda/portainer-templates/blob/master/stacks/weblogic14r1-723-latest/docker-stack.yml</a>",
"platform": "linux",
"repository": {
"stackfile": "stacks/weblogic14r1-723-latest/docker-stack.yml",
"url": "https://github.com/camunda/portainer-templates"
},
"title": "WebLogic 14R1 (autosetup): Camunda Platform 7.23.x",
"type": 2
},
{
"categories": [
"server"
Expand Down
17 changes: 17 additions & 0 deletions stacks/weblogic14r1-723-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.23.0-ee
psavidis marked this conversation as resolved.
Show resolved Hide resolved
ports:
- 7001/tcp
restart: on-failure
version: '3'