-
Notifications
You must be signed in to change notification settings - Fork 600
/
docker-compose.yml
84 lines (71 loc) · 1.68 KB
/
docker-compose.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
name: petapoco-integration-tests
version: '3'
x-mysql-environment: &mysql-environment
MYSQL_ROOT_PASSWORD: petapoco
MYSQL_DATABASE: petapoco
MYSQL_PASSWORD: petapoco
MYSQL_USER: petapoco
x-mssql-environment: &mssql-environment
ACCEPT_EULA: Y
SA_PASSWORD: pAtAp0c8
services:
postgres:
image: postgres:latest
container_name: postgres_petapoco
ports:
- "5001:5432"
environment:
- POSTGRES_PASSWORD=petapoco
- POSTGRES_USER=petapoco
firebird:
image: jacobalberty/firebird:2.5-sc
container_name: firebird_petapoco
ports:
- "5004:3050"
environment:
- EnableWireCrypt=true
- ISC_PASSWORD=petapoco
# TODO: firebird:v3.0
# TODO: firebird:v4.0
mysql:
image: mysql:latest
container_name: mysql_petapoco
ports:
- "5002:3306"
environment:
<<: *mysql-environment
mysqlconnector:
image: mysql:latest
container_name: mysqlconnector_petapoco
ports:
- "5005:3306"
environment:
<<: *mysql-environment
mariadb:
image: mariadb:10.9
container_name: mariadb_petapoco
ports:
- "5003:3306"
environment:
<<: *mysql-environment
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: mssql_petapoco
ports:
- "5006:1433"
environment:
<<: *mssql-environment
mssqlmsdata:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: mssqlmsdata_petapoco
ports:
- "5007:1433"
environment:
<<: *mssql-environment
#oracledb:
# image: sath89/oracle-12c:latest
# container_name: oracledb_petapoco
# ports:
# - "5008:1521"
# - "5009:8008"
# TODO: teradata