Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
379 B
YAML
23 lines
379 B
YAML
services:
|
|
route-rush:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: route-rush
|
|
restart: unless-stopped
|
|
environment:
|
|
- DB_PATH=/data/rr.db
|
|
volumes:
|
|
- route_rush_data:/data
|
|
- ./static:/app/static
|
|
networks:
|
|
- web-net
|
|
|
|
volumes:
|
|
route_rush_data:
|
|
|
|
networks:
|
|
web-net:
|
|
external: true
|
|
name: web_web-net
|