-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCS-Docker-Compose_Stateless.yml
93 lines (93 loc) · 3 KB
/
CS-Docker-Compose_Stateless.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
93
#For description of parameter please do refer to Readme.txt
version: '3.3'
services:
rcs:
image: amit17051980/dctm-cs:16.4.0
environment:
- DOCKER_HOST=127.0.0.1
- DATABASE_HOST=postgres
- DATABASE_USER=postgres
- DATABASE_PASSWORD=${DATABASE_PASSWORD}
- DATABASE_SERVER_PORT=5432
- ROOT_PASSWORD=${ROOT_PASSWORD}
- INSTALL_OWNER=dmadmin
- INSTALL_OWNER_PASSWORD=${INSTALL_OWNER_PASSWORD}
- DOCBASE_NAME=documentum
- GLOBAL_REGISTRY_PASSWORD=${GLOBAL_REGISTRY_PASSWORD}
- AEK_ALGORITHM=AES_256_CBC
- AEK_PASSPHRASE=${AEK_PASSPHRASE}
- AEK_NAME=CSaek
- ENABLE_LOCKBOX=false
- LOCKBOX_FILE_NAME=lockbox.lb
- LOCKBOX_PASSPHRASE=${LOCKBOX_PASSPHRASE}
- CONFIGURE_THUMBNAIL_SERVER=NO
- THUMBNAIL_SERVER_PORT=8081
- THUMBNAIL_SERVER_SSL_PORT=8443
- EXTERNAL_DOCBROKER_PORT=1689
- CONTENTSERVER_PORT=50000
- APP_SERVER_PASSWORD=${APP_SERVER_PASSWORD}
- INSTALL_OWNER_UID=1000
- HIGH_VOLUME_SERVER_LICENSE=
- TRUSTED_LICENSE=
- STORAGEAWARE_LICENSE=
- XMLSTORE_LICENSE=
- SNAPLOCKSTORE_LICENSE=
- RPS_LICENSE=
- FED_RECD_SERVICE_LICENSE=
- RECORD_MANAGER_LICENSE=
- PRM_LICENSE=
- DOCBASE_PASSWORD=${DOCBASE_PASSWORD}
- INSTALLER_UI=silent
- KEEP_TEMP_FILE=false
- INSTALLER_DEBUG_LOG=true
- DOCBASE_ID=453216
- USE_EXISTING_DATABASE_ACCOUNT=
- INDEXSPACE_NAME=DM_XCHIVE_DOCBASE
- USE_EXISTING_AEK_LOCKBOX=false
hostname:
"documentum-cs"
container_name:
"documentum-cs"
ports:
- "1689:1689"
- "1690:1690"
- "50000:50000"
- "50001:50001"
- "9080:9080"
- "9082:9082"
- "9081:9081"
- "9084:9084"
- "8081:8081"
- "8443:8443"
volumes:
- documentum_odbc:/opt/dctm/odbc
- documentum_data:/opt/dctm/data
- documentum_dba:/opt/dctm/dba
- documentum_share:/opt/dctm/share
- documentum_dfc:/opt/dctm/config
- documentum_mdserver_conf:/opt/dctm/mdserver_conf
- documentum_mdserver_log:/opt/dctm/wildfly9.0.1/server/DctmServer_MethodServer/log
- documentum_mdserver_logs:/opt/dctm/wildfly9.0.1/server/DctmServer_MethodServer/logs
- documentum_Thumbnail_Server_conf:/opt/dctm/product/16.4/thumbsrv/conf
- documentum_Thumbnail_Server_webinf:/opt/dctm/product/16.4/thumbsrv/container/webapps/thumbsrv/WEB-INF
- documentum_xhive_storage:/opt/dctm/xhive_storage
- documentum_XhiveConnector:/opt/dctm/wildfly9.0.1/server/DctmServer_MethodServer/deployments/XhiveConnector.ear
privileged: true
#'volumes' service definition:
volumes:
documentum_data:
documentum_share:
documentum_dba:
documentum_dfc:
documentum_odbc:
documentum_mdserver_conf:
documentum_mdserver_log:
documentum_mdserver_logs:
documentum_Thumbnail_Server_conf:
documentum_Thumbnail_Server_webinf:
documentum_XhiveConnector:
documentum_xhive_storage:
networks:
default:
external:
name: dctm-dev