forked from idempiere/idempiere-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
34 lines (33 loc) · 1.07 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
services:
idempiere:
image: ghcr.io/banda-health/banda-idempiere:${IDEMPIERE_VERSION}
build:
context: ./
target: idempiere
depends_on:
- postgres
volumes:
- ./src:${INSTALLATION_HOME}
environment:
- DB_ADMIN_PASS=${POSTGRES_PASSWORD}
- DB_HOST=${POSTGRES_HOST}
- DB_NAME=${DB_NAME}
- DB_PASS=${IDEMPIERE_DATABASE_PASSWORD}
- DB_PORT=${POSTGRES_PORT}
- IDEMPIERE_FRESH_DB=${IDEMPIERE_FRESH_DB}
- IDEMPIERE_VERSION=${IDEMPIERE_VERSION}
- MIGRATE_EXISTING_DATABASE=${MIGRATE_EXISTING_DATABASE}
- GENERATE_PLUGIN_BUNDLE_INFO=${GENERATE_PLUGIN_BUNDLE_INFO}
- HEALTHY_AFTER_PLUGINS_START=${HEALTHY_AFTER_PLUGINS_START}
- INSTALLATION_HOME=${INSTALLATION_HOME}
ports:
- ${IDEMPIERE_PORT}:8080
- ${IDEMPIERE_SSL_PORT}:8443
- ${TELNET_PORT}:12612
postgres:
image: postgres:12
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- PGPORT=${POSTGRES_PORT}
ports:
- ${POSTGRES_PORT}:${POSTGRES_PORT}