mirror of
https://github.com/pommee/goaway.git
synced 2026-01-04 04:49:37 -06:00
19 lines
577 B
YAML
19 lines
577 B
YAML
services:
|
|
goaway:
|
|
image: pommee/goaway:latest
|
|
container_name: goaway
|
|
restart: unless-stopped
|
|
# volumes:
|
|
# - /path/to/config:/app/config # Custom settings.yaml configuration
|
|
# - /path/to/data:/app/data # Database storage location
|
|
environment:
|
|
- DNS_PORT=${DNS_PORT:-53}
|
|
- WEBSITE_PORT=${WEBSITE_PORT:-8080}
|
|
ports:
|
|
- "${DNS_PORT:-53}:${DNS_PORT:-53}/udp"
|
|
- "${DNS_PORT:-53}:${DNS_PORT:-53}/tcp"
|
|
- "${WEBSITE_PORT:-8080}:${WEBSITE_PORT:-8080}/tcp"
|
|
cap_add:
|
|
- NET_BIND_SERVICE
|
|
- NET_RAW
|