diff --git a/stack-templates.json b/stack-templates.json
index 4b00ec4..0fb303b 100644
--- a/stack-templates.json
+++ b/stack-templates.json
@@ -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: https://github.com/camunda/portainer-templates/blob/master/stack-templates.json
Source: https://github.com/camunda/portainer-templates/blob/master/stacks/weblogic14r1-721-latest/docker-stack.yml",
+ "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"
diff --git a/stacks/weblogic14r1-721-latest/docker-stack.yml b/stacks/weblogic14r1-721-latest/docker-stack.yml
new file mode 100644
index 0000000..1a9a1fa
--- /dev/null
+++ b/stacks/weblogic14r1-721-latest/docker-stack.yml
@@ -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'
diff --git a/stacks/websphere9-721-latest/docker-stack.yml b/stacks/websphere9-721-latest/docker-stack.yml
new file mode 100644
index 0000000..0264e98
--- /dev/null
+++ b/stacks/websphere9-721-latest/docker-stack.yml
@@ -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'