forked from SlopCrew/SlopCrew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (47 loc) · 1.06 KB
/
docker-compose.yml
File metadata and controls
51 lines (47 loc) · 1.06 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
version: '3.8'
networks:
slopcrew-network:
driver: bridge
services:
slopcrew-server:
image: slopcrew-server:local
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
- "42069:42069/udp"
networks:
- slopcrew-network
volumes:
- ./docker/slop:/slop
environment:
- ASPNETCORE_URLS=http://*:8080
- Metrics__Host=graphite
- Database__DatabasePath=/slop/database.db
depends_on:
- graphite
grafana:
image: grafana/grafana:latest
container_name: grafana
restart: unless-stopped
ports:
- "3000:3000"
networks:
- slopcrew-network
volumes:
- ./docker/grafana/grafana:/var/lib/grafana
graphite:
image: graphiteapp/graphite-statsd
container_name: graphite
restart: unless-stopped
ports:
- "2003-2004:2003-2004"
- "2023-2024:2023-2024"
- "8125:8125/udp"
- "8126:8126"
networks:
- slopcrew-network
volumes:
- ./docker/graphite/storage:/opt/graphite/storage