refactor: move away from monorepo setup

This commit is contained in:
2025-09-19 22:34:07 +02:00
parent bf119e4b47
commit 6b6c23e4e6
12 changed files with 34 additions and 40 deletions

31
support/compose.yml Normal file
View File

@@ -0,0 +1,31 @@
services:
grafana:
image: grafana/grafana-oss
container_name: factorio_grafana
restart: unless-stopped
ports:
- 3000:3000
volumes:
- ./grafana/config:/etc/grafana/provisioning/datasources:ro
- factorio_grafana:/var/lib/grafana:Z
prometheus:
image: prom/prometheus
container_name: factorio_prometheus
restart: unless-stopped
volumes:
- factorio_prometheus:/prometheus:Z
- ./prometheus/config:/etc/prometheus:ro
sidecar:
image: httpd:latest
container_name: factorio_prometheus_sidecar
restart: unless-stopped
volumes:
- ~/.factorio/script-output:/usr/local/apache2/htdocs:ro
volumes:
factorio_grafana:
external: true
factorio_prometheus:
external: true