-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (39 loc) · 895 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (39 loc) · 895 Bytes
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
version: "3"
services:
auction-distributer:
container_name: auction-distributor
build:
context: ./apps/auction-distributor/.
restart: always
ports:
- 8010:8010
env_file:
- ./apps/auction-distributor/.env
networks:
- app_network
auction-processor:
container_name: auction-processor
build:
context: ./apps/auction-processor/.
restart: always
ports:
- 8001:8001
env_file:
- ./apps/auction-processor/.env
networks:
- app_network
# api:
# container_name: api
# build:
# context: .
# dockerfile: ./apps/api/Dockerfile
# restart: always
# ports:
# - 3001:3001
# networks:
# - app_network
# Define a network, which allows containers to communicate
# with each other, by using their container name as a hostname
networks:
app_network:
external: true