forked from SpatioCore/STAC-Atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (38 loc) · 883 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (38 loc) · 883 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
42
43
# This docker-compose file orchestrates the startup of the entire STAC-Atlas project.
# It includes the docker-compose configurations from the individual components.
networks:
stac-network:
name: stac-network
external: true
volumes:
stac_data:
services:
db:
extends:
file: db/docker-compose.yml
service: database
networks: [stac-network]
crawler:
extends:
file: crawler/docker-compose.yml
service: crawler
networks: [stac-network]
depends_on:
db:
condition: service_healthy
api:
extends:
file: api/docker-compose.yml
service: api
networks: [stac-network]
depends_on:
crawler:
condition: service_started
ui:
extends:
file: ui/docker-compose.yml
service: ui
networks: [stac-network]
depends_on:
api:
condition: service_started