Skip to content

Commit

Permalink
For #3321: docker-compose.yml now using images from registry
Browse files Browse the repository at this point in the history
  • Loading branch information
obruchez committed Jul 12, 2024
1 parent 297e739 commit 9a00416
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
version: '3.8'
services:
tomcat:
build:
dockerfile: Dockerfile_orbeon_forms
orbeon-forms:
image: orbeon/orbeon-forms:2023.1.3-pe
ports:
- ${ORBEON_TOMCAT_PORT:-8080}:8080
volumes:
- ${ORBEON_PROPERTIES_FILE}:/usr/local/tomcat/webapps/orbeon/WEB-INF/resources/config/properties-local.xml
- ${ORBEON_PROPERTIES_FILE:-./properties-local.xml}:/usr/local/tomcat/webapps/orbeon/WEB-INF/resources/config/properties-local.xml
secrets:
- source: license
target: /usr/local/tomcat/webapps/orbeon/WEB-INF/resources/config/license.xml
depends_on:
- postgres
postgres:
build:
dockerfile: Dockerfile_postgres
image: orbeon/postgres:2023.1.3-pe
restart: always
ports:
- ${ORBEON_POSTGRES_PORT:-5432}:5432
Expand All @@ -32,6 +30,6 @@ volumes:
name: ${POSTGRES_VOLUME:-orbeon_pgdata}
secrets:
license:
file: ${ORBEON_LICENSE_FILE:-license.xml}
file: ${ORBEON_LICENSE_FILE:-./license.xml}
# postgres_password:
# file: ${ORBEON_POSTGRES_PASSWORD_FILE:-postgres_password.txt}

0 comments on commit 9a00416

Please sign in to comment.