You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
version: '3'
|
|
services:
|
|
gunicorn:
|
|
env_file:
|
|
- .env
|
|
image: xmrauctions:latest
|
|
command: [".venv/bin/gunicorn", "-b", "0.0.0.0:8000", "xmrauctions.wsgi"]
|
|
ports:
|
|
- 8000:8000
|
|
depends_on:
|
|
- "db"
|
|
huey:
|
|
env_file:
|
|
- .env
|
|
image: xmrauctions:latest
|
|
command: ["./manage.py", "run_huey", "-q"]
|
|
depends_on:
|
|
- "db"
|
|
grafana:
|
|
image: grafana/grafana:6.5.0
|
|
ports:
|
|
- 127.0.0.1:3000:3000
|
|
environment:
|
|
HOSTNAME: grafana
|
|
GF_SECURITY_ADMIN_USER: admin
|
|
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_PASSWORD}
|
|
GF_SERVER_ROOT_URL: ${GRAFANA_URL}
|
|
GF_SERVER_SERVE_FROM_SUB_PATH: "true"
|
|
GF_ANALYTICS_REPORTING_ENABLED: "false"
|
|
GF_ANALYTICS_CHECK_FOR_UPDATES: "false"
|
|
GF_USERS_ALLOW_SIGN_UP: "false"
|
|
GF_USERS_ALLOW_ORG_CREATE: "false"
|
|
volumes:
|
|
- ./Docker/files/grafana/dashboards.yaml:/etc/grafana/provisioning/dashboards/default.yaml:ro
|
|
- ./Docker/files/grafana/prometheus.yaml:/etc/grafana/provisioning/datasources/prometheus.yaml:ro
|
|
- ./Docker/files/grafana/xmrauctions_metrics.json:/var/lib/grafana/dashboards/xmrauctions_metrics.json:ro
|
|
- grafana:/var/lib/grafana
|
|
prometheus:
|
|
image: prom/prometheus:v2.15.2
|
|
ports:
|
|
- 127.0.0.1:9090:9090
|
|
volumes:
|
|
- ./Docker/files/prometheus:/etc/prometheus
|
|
- prometheus:/prometheus
|
|
|
|
volumes:
|
|
grafana:
|
|
prometheus:
|