-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
52 lines (47 loc) · 1.08 KB
/
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
50
51
52
version: '3.7'
services:
settings-service-api:
container_name: settings-service-api
build:
context: .
dockerfile: DockerFile
ports:
- '27500:8000'
environment:
NODE_ENV: production
networks:
- settings-services
db-postgres:
image: docker.io/bitnami/postgresql:11.7.0-debian-10-r9
container_name: db-postgres
ports:
- 5432:5432
restart: always
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "password"
POSTGRES_DB: "settings"
networks:
- settings-services
db-mssql:
image: "mcr.microsoft.com/mssql/server"
container_name: db-mssql
ports:
- "1433:1433"
environment:
SA_PASSWORD: "yourStrong(!)Password"
ACCEPT_EULA: "Y"
networks:
- settings-services
db-mysql:
image: mysql
container_name: db-mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: password
networks:
- settings-services
networks:
settings-services:
driver: bridge