mirror of
https://github.com/pommee/goaway.git
synced 2025-12-30 18:39:34 -06:00
21 lines
387 B
YAML
21 lines
387 B
YAML
services:
|
|
goaway:
|
|
container_name: goaway
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
restart: unless-stopped
|
|
user: 1000:1000
|
|
volumes:
|
|
- ./:/app
|
|
environment:
|
|
- DNS_PORT=6121
|
|
- WEBSITE_PORT=8080
|
|
ports:
|
|
- "6121:6121/udp"
|
|
- "6121:6121/tcp"
|
|
- "8080:8080/tcp"
|
|
cap_add:
|
|
- NET_BIND_SERVICE
|
|
- NET_RAW
|