-
Notifications
You must be signed in to change notification settings - Fork 1
/
compose.yaml
48 lines (48 loc) · 1.33 KB
/
compose.yaml
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
include:
- path: customer/connector/aurora/compose.yaml
- path: customer/connector/mongo/compose.yaml
- path: customer/connector/logic/compose.yaml
- path: support/connector/atlas/compose.yaml
- path: support/connector/vector/compose.yaml
- path: network/connector/clickhouse/compose.yaml
- path: auth/connector/auth/compose.yaml
- path: network/connector/kafka_sink/compose.yaml
- path: globals/connector/global_functions/compose.yaml
services:
engine:
build:
context: engine
dockerfile_inline: |-
FROM ghcr.io/hasura/v3-engine
COPY ./build /md/
develop:
watch:
- action: sync+restart
path: engine/build
target: /md/
env_file:
- engine/.env.engine
extra_hosts:
- local.hasura.dev=host-gateway
ports:
- mode: ingress
protocol: tcp
published: "3000"
target: 3000
otel-collector:
command:
- --config=/etc/otel-collector-config.yaml
environment:
HASURA_DDN_PAT: ${HASURA_DDN_PAT}
image: otel/opentelemetry-collector:0.104.0
ports:
- mode: ingress
protocol: tcp
published: "4317"
target: 4317
- mode: ingress
protocol: tcp
published: "4318"
target: 4318
volumes:
- ./otel-collector-config.yaml:/etc/otel-collector-config.yaml