-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose.local.yml
More file actions
37 lines (33 loc) · 956 Bytes
/
docker-compose.local.yml
File metadata and controls
37 lines (33 loc) · 956 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
31
32
33
34
35
36
37
services:
# Local development override: build configs from source
config-init:
build:
context: ./config
args:
VERSION: local-dev
BUILD_TS: "${BUILD_TS:-local}"
image: local/configs:dev
# Local development override: build Flask backend from source
monitoring_flask_backend:
build:
context: ./monitoring_flask_backend
args:
VERSION: local-dev
BUILD_TS: "${BUILD_TS:-local}"
image: local/monitoring_flask_backend:dev
# Local development override: build reporter from source
postgres-reports:
build:
context: ./reporter
args:
VERSION: local-dev
BUILD_TS: "${BUILD_TS:-local}"
image: local/reporter:dev
# Expose sink-postgres to host for local reporter runs
sink-postgres:
ports:
- "127.0.0.1:55433:5432"
# Override Grafana port to avoid conflict with local dev server
grafana:
ports:
- "127.0.0.1:3001:3000"