17 lines
477 B
YAML
17 lines
477 B
YAML
services:
|
|
webarc:
|
|
build: .
|
|
ports:
|
|
- "8080:8000"
|
|
volumes:
|
|
- ./websites:/websites
|
|
- ./favicon:/favicon
|
|
environment:
|
|
- "RUST_LOG=info"
|
|
- "ROCKET_ADDRESS=0.0.0.0"
|
|
# Rewrite links to point back to the archive itself
|
|
- "ROUTE_INTERNAL=true"
|
|
# Download missing routes on demand
|
|
- "DOWNLOAD_ON_DEMAND=true"
|
|
# Blacklisted domains (Comma-seperated regex)
|
|
- "BLACKLIST_DOMAINS=google.com,.*.youtube.com"
|