-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (41 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
45 lines (41 loc) · 1.07 KB
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
version: '3'
services:
db:
image: "mcr.microsoft.com/mssql/server:2017-latest"
ports:
- "1433:1433"
environment:
ACCEPT_EULA: Y
SA_PASSWORD: ${SQL_PW}
MSSQL_PID: Express
essbase:
depends_on:
- db
build: .
image: essbase:11.1.2.4
container_name: essbase
ports:
- "7001:7001"
- "5300:5300"
- "12080:12080"
- "9000:9000"
- "9443:9443"
- "1423:1423"
- "32768-32778:32768-32778"
ulimits:
nofile:
hard: 32000
soft: 10000
volumes:
- ./start_scripts:/home/oracle/start_scripts
environment:
# There are some password requirements for various components; don't attempt to just set "password" here --
# it'll cause configuration to fail because WebLogic requires a stronger password. password1 will work
# EPM_ADMIN: admin
EPM_PASSWORD: ${EPM_PW}
SQL_HOST: db
SQL_USER: sa
SQL_PASSWORD: ${SQL_PW}
RESTART_EPM_AFTER_LCM_IMPORT: "false"
AUTO_START_ADMIN_CONSOLE: "false"
#NO_CONFIG: "true"