webarc/docker-compose.yml

18 lines
477 B
YAML
Raw Normal View History

2024-12-29 16:51:34 +01:00
services:
webarc:
build: .
ports:
- "8080:8000"
volumes:
- ./websites:/websites
2024-12-29 19:35:56 +01:00
- ./favicon:/favicon
2024-12-29 16:51:34 +01:00
environment:
- "RUST_LOG=info"
- "ROCKET_ADDRESS=0.0.0.0"
2024-12-29 16:58:58 +01:00
# Rewrite links to point back to the archive itself
- "ROUTE_INTERNAL=true"
# Download missing routes on demand
- "DOWNLOAD_ON_DEMAND=true"
2024-12-29 20:13:15 +01:00
# Blacklisted domains (Comma-seperated regex)
- "BLACKLIST_DOMAINS=google.com,.*.youtube.com"