-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
47 lines (47 loc) · 1.25 KB
/
compose.yaml
File metadata and controls
47 lines (47 loc) · 1.25 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
include:
- path: app/connector/my_pg/compose.yaml
services:
engine:
build:
context: engine
dockerfile: Dockerfile.engine
pull: true
environment:
AUTHN_CONFIG_PATH: /md/auth_config.json
ENABLE_CORS: "true"
ENABLE_SQL_INTERFACE: "true"
INTROSPECTION_METADATA_FILE: /md/metadata.json
METADATA_PATH: /md/open_dd.json
OTLP_ENDPOINT: http://local.hasura.dev:4317
extra_hosts:
- local.hasura.dev:host-gateway
labels:
io.hasura.ddn.service-name: engine
ports:
- 3280: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:
- 4317:4317
- 4318:4318
volumes:
- ./otel-collector-config.yaml:/etc/otel-collector-config.yaml
# auth-webhook:
# build:
# context: auth-webhook
# dockerfile: Dockerfile
# environment:
# PORT: 3001
# NEON_PROJECT_ID: ${NEON_PROJECT_ID:-}
# NEON_AUTH_ISSUER: ${NEON_AUTH_ISSUER:-}
# NEON_JWKS_URI: ${NEON_JWKS_URI:-}
# extra_hosts:
# - local.hasura.dev:host-gateway
# labels:
# io.hasura.ddn.service-name: auth-webhook
# ports:
# - 3001:3001