-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
112 lines (102 loc) · 2.57 KB
/
docker-compose.yml
File metadata and controls
112 lines (102 loc) · 2.57 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
services:
postgres:
image: postgres:16.1
networks:
- boot
environment:
POSTGRES_USER: sagittarius
POSTGRES_PASSWORD: sagittarius
POSTGRES_DB: sagittarius_production
sagittarius-rails-web:
image: ghcr.io/code0-tech/reticulum/ci-builds/sagittarius:${RETICULUM_CONTAINER_VERSION}-${SAGITTARIUS_VARIANT}
networks:
- boot
volumes:
- ../container/sagittarius/sagittarius.yml:/sagittarius/config/sagittarius.yml
curl-sagittarius-rails-web:
image: curlimages/curl:8.18.0
networks:
- boot
command:
- curl
- --fail
- -sv
- --retry
- "20"
- --retry-delay
- "3"
- --retry-connrefused
- http://sagittarius-rails-web:3000/health/liveness
sagittarius-grpc:
image: ghcr.io/code0-tech/reticulum/ci-builds/sagittarius:${RETICULUM_CONTAINER_VERSION}-${SAGITTARIUS_VARIANT}
networks:
- boot
volumes:
- ../container/sagittarius/sagittarius.yml:/sagittarius/config/sagittarius.yml
command:
- bin/grpc_server
environment:
SAGITTARIUS_PREPARE_DATABASE: "true"
ports:
- "50051:50051"
nats:
image: nats:2.11.9
networks:
- boot
command:
- -js
aquila:
image: ghcr.io/code0-tech/reticulum/ci-builds/aquila:${RETICULUM_CONTAINER_VERSION}
networks:
- boot
environment:
NATS_URL: nats://nats:4222
MODE: dynamic
WITH_HEALTH_SERVICE: "true"
GRPC_HOST: 0.0.0.0
SAGITTARIUS_URL: http://sagittarius-grpc:50051
RUNTIME_TOKEN: runtime_token
ports:
- "8081:8081"
taurus:
image: ghcr.io/code0-tech/reticulum/ci-builds/taurus:${RETICULUM_CONTAINER_VERSION}
networks:
- boot
environment:
NATS_URL: nats://nats:4222
WITH_HEALTH_SERVICE: "true"
GRPC_HOST: 0.0.0.0
GRPC_PORT: "8082"
ports:
- "8082:8082"
draco:
image: ghcr.io/code0-tech/reticulum/ci-builds/draco:${RETICULUM_CONTAINER_VERSION}-${DRACO_VARIANT}
networks:
- boot
environment:
NATS_URL: nats://nats:4222
WITH_HEALTH_SERVICE: "true"
GRPC_HOST: 0.0.0.0
GRPC_PORT: "8083"
ports:
- "8083:8083"
sculptor:
image: ghcr.io/code0-tech/reticulum/ci-builds/sculptor:${RETICULUM_CONTAINER_VERSION}-${SCULPTOR_VARIANT}
networks:
- boot
curl-sculptor:
image: curlimages/curl:8.18.0
networks:
- boot
command:
- curl
- --fail
- -sv
- --retry
- "20"
- --retry-delay
- "3"
- --retry-connrefused
- http://sculptor:3000/
networks:
boot: