-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.public.yml
48 lines (43 loc) · 1.04 KB
/
docker-compose.public.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
version: '3'
services:
pgsql:
image: ontop/ontop-pgsql
env_file: .env
container_name: ontop_pgsql_running
ports:
- "7777:5432"
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
oracle:
image: ontop/ontop-oracle
container_name: ontop_oracle_running
ports:
- "49160:8080"
- "49161:1521"
mssql:
image: ontop/ontop-mssql
env_file: .env
container_name: ontop_mssql_running
ports:
- "1533:1433"
environment:
- SA_PASSWORD=${SA_PASSWORD}
- ACCEPT_EULA=Y
mysql:
image: ontop/ontop-mysql
env_file: .env
container_name: ontop_mysql_running
ports:
- "3694:3306"
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
db2:
image: ontop/ontop-db2
env_file: .env
container_name: ontop_db2_running
privileged: true
ports:
- "50000:50000"
environment:
- DB2INST1_PASSWORD=${DB2INST1_PASSWORD}
- LICENSE=accept