-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
62 lines (56 loc) · 1.21 KB
/
compose.yaml
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
services:
maria:
image: mariadb
environment:
MARIADB_ROOT_PASSWORD: root
ports:
- 3306:3306
postgresql:
image: postgres
environment:
POSTGRES_DB: public
POSTGRES_PASSWORD: root
POSTGRES_USER: root
command: postgres -c 'max_connections=1000'
ports:
- 5432:5432
mysql:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: root
#MYSQL_ROOT_USER: root
MYSQL_TCP_PORT: 3307
ports:
- 3307:3307
mssql:
image: mcr.microsoft.com/mssql/server:2017-latest
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: Root_root1
#MSSQL_SA_USERNAME: sa
ports:
- 1433:1433
db2:
image: icr.io/db2_community/db2
privileged: true
environment:
- LICENSE=accept
- DB2INSTANCE=db2inst1
- DB2INST1_PASSWORD=root
- DBNAME=main
- BLU=false
- ENABLE_ORACLE_COMPATIBILITY=false
- UPDATEAVAIL=NO
- TO_CREATE_SAMPLEDB=true
- REPODB=false
- IS_OSXFS=false
- PERSISTENT_HOME=false
- HADR_ENABLED=false
ports:
- 50000:50000
oracle:
ports:
- 1521:1521
image: gvenzl/oracle-xe:18-slim
environment:
- ORACLE_PASSWORD=root