-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
48 lines (45 loc) · 1019 Bytes
/
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
version: '3'
services:
boogiestats:
build:
context: .
dockerfile: docker/Dockerfile
volumes:
- type: bind
source: ./prod/boogiestats-data
target: /data
# - type: bind
# source: /path/to/stepmania-chart-db/db_v2
# target: /chart-db
# read_only: true
environment:
GUNICORN_THREADS: 6
GUNICORN_WORKERS: 2
ports:
- "127.0.0.1:55523:55523"
depends_on:
- redis
deploy:
restart_policy:
condition: any
redis:
image: redis/redis-stack-server:7.2.0-v10
volumes:
- type: bind
source: ./prod/redis-data
target: /data
deploy:
restart_policy:
condition: any
# grafana-agent:
# image: grafana/agent:v0.40.4
# depends_on:
# - boogiestats
# deploy:
# restart_policy:
# condition: any
# volumes:
# - type: bind
# source: ./prod/grafana-agent-config.yaml
# target: /etc/agent/agent.yaml
# read_only: true