-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
71 lines (67 loc) · 1.69 KB
/
docker-compose.yml
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
68
69
70
71
version: "3.8"
services:
# https://github.com/fsouza/fake-gcs-server
fake-gcs:
image: fsouza/fake-gcs-server
command:
- "-scheme"
- "http"
- "-backend"
- "memory"
- "-port"
- "4443"
- "-public-host"
- "localhost:4443"
- "-data"
- "/data"
ports:
- "4443:4443"
volumes:
- "${TMPDIR:-/tmp}/data:/data"
localstack:
image: localstack/localstack:0.13.3
ports:
- "4566:4566"
- "4571:4571"
environment:
- MAIN_CONTAINER_NAME=localstack
- EDGE_PORT=4566
- SERVICES=${SERVICES:- }
- DEBUG=${DEBUG- }
- DATA_DIR=${DATA_DIR- }
- LAMBDA_EXECUTOR=${LAMBDA_EXECUTOR- }
- HOST_TMP_FOLDER=${TMPDIR:-/tmp/}localstack
- DOCKER_HOST=unix:///var/run/docker.sock
volumes:
- "${TMPDIR:-/tmp}/localstack:/tmp/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
prometheus:
image: prom/prometheus:v2.35.0
volumes:
- ./prometheus/:/etc/prometheus/
command:
- '--config.file=/etc/prometheus/prometheus.yaml'
- '--storage.tsdb.path=/prometheus'
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
- '--web.console.templates=/usr/share/prometheus/consoles'
ports:
- 9090:9090
restart: always
grafana:
image: grafana/grafana:8.5.0
volumes:
- ./grafana/:/etc/grafana/provisioning/
depends_on:
- prometheus
ports:
- "3000:3000"
restart: always
vervet-underground:
build:
context: ./
dockerfile: Dockerfile
image: vervet-underground
ports:
- "8080:8080"
volumes:
- ${PWD}/${CONFIG:-config.json}:/config.default.json