forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.cosmo.yml
80 lines (74 loc) · 2.3 KB
/
docker-compose.cosmo.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
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
---
version: '3.8'
name: cosmo
services:
cdn:
image: ghcr.io/wundergraph/cosmo/cdn:${DC_CDN_VERSION:-latest}
build:
context: .
dockerfile: cdn-server/Dockerfile
cache_from:
- ghcr.io/wundergraph/cosmo/cdn:buildcache
args:
GITHUB_SHA: ${GITHUB_SHA:-latest}
GITHUB_REF: ${GITHUB_REF:-latest}
keycloak:
image: ghcr.io/wundergraph/cosmo/keycloak:${DC_KEYCLOAK_VERSION:-latest}
build:
context: keycloak
dockerfile: Dockerfile
cache_from:
- ghcr.io/wundergraph/cosmo/keycloak:buildcache
args:
GITHUB_SHA: ${GITHUB_SHA:-latest}
GITHUB_REF: ${GITHUB_REF:-latest}
graphqlmetrics:
image: ghcr.io/wundergraph/cosmo/graphqlmetrics:${DC_GRAPHQLMETRICS_VERSION:-latest}
build:
context: graphqlmetrics
dockerfile: Dockerfile
cache_from:
- ghcr.io/wundergraph/cosmo/graphqlmetrics:buildcache
args:
GITHUB_SHA: ${GITHUB_SHA:-latest}
GITHUB_REF: ${GITHUB_REF:-latest}
otelcollector:
image: ghcr.io/wundergraph/cosmo/otelcollector:${DC_OTELCOLLECTOR_VERSION:-latest}
build:
context: otelcollector
dockerfile: Dockerfile
cache_from:
- ghcr.io/wundergraph/cosmo/otelcollector:buildcache
args:
GITHUB_SHA: ${GITHUB_SHA:-latest}
GITHUB_REF: ${GITHUB_REF:-latest}
router:
image: ghcr.io/wundergraph/cosmo/router:${DC_ROUTER_VERSION:-latest}
build:
context: router
dockerfile: Dockerfile
cache_from:
- ghcr.io/wundergraph/cosmo/router:buildcache
args:
GITHUB_SHA: ${GITHUB_SHA:-latest}
GITHUB_REF: ${GITHUB_REF:-latest}
controlplane:
image: ghcr.io/wundergraph/cosmo/controlplane:${DC_CONTROLPLANE_VERSION:-latest}
build:
context: .
dockerfile: controlplane/Dockerfile
cache_from:
- ghcr.io/wundergraph/cosmo/controlplane:buildcache
args:
GITHUB_SHA: ${GITHUB_SHA:-latest}
GITHUB_REF: ${GITHUB_REF:-latest}
studio:
image: ghcr.io/wundergraph/cosmo/studio:${DC_STUDIO_VERSION:-latest}
build:
context: .
dockerfile: studio/Dockerfile
cache_from:
- ghcr.io/wundergraph/cosmo/studio:buildcache
args:
GITHUB_SHA: ${GITHUB_SHA:-latest}
GITHUB_REF: ${GITHUB_REF:-latest}