forked from nodirbek004/ImtihonProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (38 loc) · 964 Bytes
/
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
version: '3.4'
networks:
backend:
services:
poliklinika.api:
image: ${DOCKER_REGISTRY-}poliklinikaapi
build:
context: .
dockerfile: Poliklinika.Api/Dockerfile
SqlServer:
image: mcr.microsoft.com/mssql/server:2022-latest
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Numsey#2022
ports:
- "1433:1433"
volumes:
- ./poliklinika-data:/var/lib/postgresql/data
getaway.api:
image: ${DOCKER_REGISTRY-}getawayapi
build:
context: .
dockerfile: Getaway/Getaway.Api/Dockerfile
restarant.api:
image: ${DOCKER_REGISTRY-}restarantapi
build:
context: .
dockerfile: Restarant/Restarant.Api/Dockerfile
yandex.api:
image: ${DOCKER_REGISTRY-}yandexapi
build:
context: .
dockerfile: Yandex/Yandex.Api/Dockerfile
jwt.api:
image: ${DOCKER_REGISTRY-}jwtapi
build:
context: .
dockerfile: Jwt/Jwt.Api/Dockerfile