- Add HSTS, CSP headers, remove Server header, fix GIF magic tuple - Add ARIA landmarks, button labels, inline SVG favicon - Scheduled cleanup loop (every 5min), /health endpoint - Remove docker-compose version field, unused named volumes - Move ensure_dirs to startup, remove duplicate definitions
13 lines
272 B
YAML
13 lines
272 B
YAML
services:
|
|
pastebin:
|
|
build: .
|
|
ports:
|
|
- "${PORT:-9780}:8080"
|
|
volumes:
|
|
- ./uploads:/app/uploads
|
|
- ./store:/app/store
|
|
environment:
|
|
- PORT=8080
|
|
- SECRET_KEY=${SECRET_KEY:-change-me-to-a-random-secret}
|
|
restart: unless-stopped
|