-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
49 lines (43 loc) · 920 Bytes
/
docker-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
version: '3.8'
services:
app:
build: .
environment:
- RUNNING_IN_DOCKER=true
networks:
- app-network
postgres_db:
image: postgres
environment:
POSTGRES_PASSWORD: "test_p@ssword_f0r_CI!"
ports:
- "5432:5432"
networks:
- app-network
mssql_db:
image: mcr.microsoft.com/mssql/server:2019-latest
environment:
SA_PASSWORD: "test_p@ssword_f0r_CI!"
ACCEPT_EULA: "Y"
ports:
- "1433:1433"
networks:
- app-network
oracle_db:
image: container-registry.oracle.com/database/express:latest
environment:
ORACLE_PWD: "test_p@ssword_f0r_CI!"
ports:
- "1521:1521"
networks:
- app-network
mysql_db:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: "test_p@ssword_f0r_CI!"
ports:
- "3306:3306"
networks:
- app-network
networks:
app-network: