-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (33 loc) · 855 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (33 loc) · 855 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
services:
router-service:
image: ghcr.io/apollographql/router:v2.6.2
container_name: router-service
volumes:
- ./supergraph.graphql:/dist/supergraph.graphql
- ./router.yml:/dist/router.yml
command:
[
"--supergraph",
"/dist/supergraph.graphql",
"--config",
"/dist/router.yml",
"--hot-reload"
]
ports:
- "4000:4000"
- "8088:8088"
- "8089:8089"
networks:
- aviation-network
include:
- ./services/gateway/docker-compose.yml
- ./services/flights/docker-compose.yml
- ./services/aircraft/docker-compose.yml
- ./services/authentication/docker-compose.yml
- ./services/search/docker-compose.yml
- ./kafka/docker-compose.yml
- ./monitoring/docker-compose.yml
networks:
aviation-network:
name: aviation-network
driver: bridge