-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (27 loc) · 736 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (27 loc) · 736 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
version: '3.7'
services:
ijson:
# ~ 70 MB memory
image: lega911/ijson
container_name: ijson
ports:
- "8001:8001"
db:
image: postgres:14-alpine
container_name: db
ports:
- "5432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: example
# for testing opentelemetry
# agent:
# image: matthewpatell/opentelemetry-collector:latest
# container_name: opentelemetry_collector
# environment:
# TEMPO_ENDPOINT: tempo-us-central1.grafana.net:443
# TEMPO_BASIC_AUTH: FILL_THIS_FIELD
# METRIC_ENDPOINT: https://prometheus-prod-10-prod-us-central-0.grafana.net/api/prom/push
# METRIC_BASIC_AUTH: FILL_THIS_FIELD
# ports:
# - "4318:4318"