Last active
February 17, 2023 13:41
-
-
Save diegogslomp/e9e2200b156d6501672fd207a2c183d5 to your computer and use it in GitHub Desktop.
jbpm-server-full with remote postgres and persistence
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
version: "3.1" | |
services: | |
jbpm: | |
image: jboss/jbpm-server-full:latest | |
environment: | |
JBPM_DB_DRIVER: postgres | |
JBPM_DB_HOST: jbpmdb | |
JBPM_DB_PASSWORD: jbpmpass | |
ports: | |
- "8080:8080" | |
- "8001:8001" | |
volumes: | |
- "jdata:/opt/jboss/wildfly/standalone" | |
- "workbench:/opt/jboss/wildfly/bin" | |
volumes: | |
jdata: | |
workbench: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment