This repository has been archived by the owner on Sep 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathdocker-compose.yml
92 lines (92 loc) · 2.09 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
version: '3.6'
services:
maxdb:
image: maximo/db2
hostname: "${DB_HOST_NAME}"
environment:
- MAXDB_DATADIR=/home/ctginst1/ctginst1
- BACKUPDIR=/backup
networks:
- maxnet
ports:
- 50005:50005
privileged: true
volumes:
- type: volume
source: maxdb76
target: /home/ctginst1/ctginst1
- type: volume
source: vardb2
target: /var/db2
# - type: bind
# source: ./backup
# target: /backup
maxdmgr:
image: maximo/maxdmgr
hostname: "${DMGR_HOST_NAME}"
ports:
- 9043:9043
environment:
- PROFILE_NAME=ctgDmgr01
- CELL_NAME=ctgCell01
- NODE_NAME=ctgCellManager01
networks:
- maxnet
maxapps:
image: maximo/maxapps
hostname: "${APP_SERVER_HOST_NAME}"
environment:
- PROFILE_NAME=ctgAppSrv01
- CELL_NAME=ctgNodeCell01
- NODE_NAME=ctgNode01
depends_on:
- maxdmgr
- maxweb
- maxdb
networks:
- maxnet
maxweb:
image: maximo/maxweb
hostname: "${WEB_SERVER_HOST_NAME}"
environment:
- PROFILE_NAME=ctgWebSrv01
- CELL_NAME=ctgNodeWSCell01
- NODE_NAME=ctgNodeWebSrv01
ports:
- 80:80
depends_on:
- maxdmgr
networks:
- maxnet
maximo:
image: maximo/maximo
hostname: maximo
environment:
- "DB_HOST_NAME=${DB_HOST_NAME}"
- "DB_TABLE_SPACE=${DB_TABLE_SPACE}"
- "DB_TEMP_SPACE=${DB_TEMP_SPACE}"
- "DB_INDEX_SPACE=${DB_INDEX_SPACE}"
- "MAXADMIN_PASSWORD=${MAXADMIN_PASSWORD}"
- "MAXREG_PASSWORD=${MAXREG_PASSWORD}"
- "MXINTADM_PASSWORD=${MXINTADM_PASSWORD}"
- WAS_DM_PROFILE_NAME=ctgDmgr01
- WAS_DM_NODE_NAME=ctgCellManager01
- WAS_NODE_NAME=ctgNode01
- SMTP_SERVER_HOST_NAME=localhost
- ADMIN_EMAIL_ADDRESS=root@localhost
# - ADD_LANGS=ja,fr
- BASE_LANG=en
- UPDATE_APPS_ON_REBOOT=no
- KEEP_RUNNING=no
- ENABLE_DEMO_DATA=no
depends_on:
- maxdb
- maxapps
- maxweb
networks:
- maxnet
networks:
maxnet:
volumes:
maxdb76:
vardb2: