-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (61 loc) · 1.5 KB
/
docker-compose.yml
File metadata and controls
67 lines (61 loc) · 1.5 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
services:
postgres:
image: postgres:15-alpine
command: ["postgres", "-c", "log_statement=all", "-c", "log_destination=stderr"]
ports:
- "3002:5432"
environment:
POSTGRES_USER: api
POSTGRES_PASSWORD: api
POSTGRES_DB: api
volumes:
- pgdata:/var/lib/postgresql/data
adminer:
depends_on:
- postgres
image: adminer:latest
ports:
- "3003:8080"
environment:
ADMINER_DEFAULT_SERVER: postgres
pubsub:
image: google/cloud-sdk
platform: linux/x86_64 # this is required for running on M1 Mac
command:
- gcloud
- beta
- emulators
- pubsub
- start
- --host-port=0.0.0.0:8085
ports:
- "3004:8085"
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "16686:16686"
otel-collector:
image: otel/opentelemetry-collector:latest
command: ["--config=/etc/otel-collector-config.yml"]
volumes:
- ./hack/otel-collector-config.yaml:/etc/otel-collector-config.yml:ro
ports:
- "4317:4317" # OTLP gRPC receiver
depends_on:
- jaeger
mem_limit: 100m
bigquery:
platform: linux/x86_64 # this is required for running on M1 Mac
image: ghcr.io/goccy/bigquery-emulator:latest
command:
- "bigquery-emulator"
- "--project=project"
- "--dataset=dataset"
- "--data-from-yaml=/data.yaml"
ports:
- "9050:9050"
volumes:
- ./hack/bigquery-emulator-data.yaml:/data.yaml
volumes:
pgdata:
dependency-track: