-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
97 lines (87 loc) · 1.88 KB
/
Copy pathdocker-compose.yml
File metadata and controls
97 lines (87 loc) · 1.88 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
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
94
95
96
97
name: repodb
version: '3.8'
services:
clickhouse:
container_name: clickhouse
image: clickhouse/clickhouse-server:latest
ports:
- 127.0.0.1:8123:8123
- 127.0.0.1:9000:9000
networks:
- repodb
environment:
CLICKHOUSE_PASSWORD: RepoDB2026
db2:
container_name: db2
image: icr.io/db2_community/db2:12.1.0.0
privileged: true
ports:
- 127.0.0.1:50000:50000
networks:
- repodb
environment:
LICENSE: accept
DB2INSTANCE: db2inst1
DB2INST1_PASSWORD: RepoDB2026
DBNAME: repodb
firebird:
container_name: firebird
image: jacobalberty/firebird:latest
ports:
- 127.0.0.1:3050:3050
networks:
- repodb
environment:
ISC_PASSWORD: RepoDB2026
FIREBIRD_DATABASE: repodb.fdb
mariadb:
container_name: mariadb
image: mariadb:latest
ports:
- 127.0.0.1:3307:3306
networks:
- repodb
environment:
MARIADB_ROOT_PASSWORD: RepoDB2026
command: --local-infile=1
mssql:
container_name: mssql
image: mcr.microsoft.com/mssql/server:2025-latest
ports:
- 127.0.0.1:1433:1433
networks:
- repodb
environment:
ACCEPT_EULA: true
MSSQL_SA_PASSWORD: RepoDB2026
mysql:
container_name: mysql
image: mysql:latest
ports:
- 127.0.0.1:3306:3306
networks:
- repodb
environment:
MYSQL_ROOT_PASSWORD: RepoDB2026
command: --local-infile=1
oracle:
container_name: oracle
image: container-registry.oracle.com/database/free:latest
ports:
- 127.0.0.1:1521:1521
networks:
- repodb
environment:
ORACLE_PWD: RepoDB2026
postgresql:
container_name: pgsql
image: postgres:latest
ports:
- 127.0.0.1:5432:5432
networks:
- repodb
environment:
POSTGRES_PASSWORD: RepoDB2026
networks:
repodb:
driver: bridge