Alpha stage commit
This commit is contained in:
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal 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:
|
||||
Reference in New Issue
Block a user