-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathidempiere.yml
52 lines (48 loc) · 1.06 KB
/
idempiere.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3.9'
services:
idempiere12:
image: idempiereofficial/idempiere:12-release
hostname: 'idempiere'
ports:
- 8080:8080
- 8443:8443
- 12612:12612
environment:
- TZ=America/Caracas
- DB_NAME=idempiere
- DB_HOST=host.docker.internal
- DB_PORT=5432
- DB_USER=adempiere
- DB_PASS=adempiere
- DB_ADMIN_PASS_FILE=/run/secrets/postgres
- JAVA_OPTS=-Xms256M -Xmx12288M
- MIGRATE_EXISTING_DATABASE=true
volumes:
- idempiere_config:/opt/idempiere/configuration
- idempiere_plugins:/opt/idempiere/plugins
- idempiere_log:/opt/idempiere/log
secrets:
- postgres
- adempiere
networks:
- network_idempiere
deploy:
resources:
limits:
cpus: '4'
memory: 8096M
reservations:
cpus: '0.25'
memory: 512M
volumes:
idempiere_plugins:
idempiere_config:
idempiere_log:
networks:
network_idempiere:
external: true
secrets:
postgres:
external: true
adempiere:
external: true