-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (55 loc) · 1.57 KB
/
Copy pathdocker-compose.yml
File metadata and controls
57 lines (55 loc) · 1.57 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
version: "2.4"
services:
slt:
container_name: slt
image: slt:latest
entrypoint: ["/slt", "/slt.conf"]
networks:
- common
ports:
- "<external IP>:8443"
volumes:
- type: bind
source: /var/containers/slt/slt.conf
target: /slt.conf
read_only: true
- type: bind
source: /var/containers/slt/acme
target: /acme
grafana:
container_name: grafana
image: grafana/grafana:live
depends_on:
- influx
networks:
- common
ports:
- "127.0.0.1:3000:3000"
volumes:
- type: bind
source: /var/containers/grafana/data
target: /var/lib/grafana
- type: bind
source: /var/containers/grafana/log
target: /var/log/grafana
- type: bind
source: /var/containers/grafana/etc
target: /etc/grafana
user: "472"
influx:
container_name: influx
image: influxdb:alpine-live
entrypoint: ["/usr/bin/influxd", "-config", "/etc/influxdb/influxdb.conf"]
networks:
- common
volumes:
- type: bind
source: /var/containers/influx/influxdb.conf
target: /etc/influxdb/influxdb.conf
read_only: true
- type: bind
source: /var/containers/influx/varlib
target: /var/lib/influxdb
networks:
common:
driver: bridge