Alpha stage commit

This commit is contained in:
2026-07-02 21:04:05 +02:00
parent c03b183dfb
commit abed21be21
136 changed files with 15531 additions and 15 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
version: "3.9"
services:
db:
image: postgis/postgis:16-3.4
environment:
POSTGRES_DB: bikepackpilot
POSTGRES_USER: bikepackpilot
POSTGRES_PASSWORD: bikepackpilot
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:7-alpine
ports:
- "6379:6379"
# Optional future self-hosted routing service.
# routing:
# image: ghcr.io/gis-ops/valhalla:latest
# ports:
# - "8002:8002"
volumes:
postgres_data: