mirror of
https://github.com/fosrl/gerbil.git
synced 2026-02-07 21:46:40 +00:00
17 lines
371 B
YAML
17 lines
371 B
YAML
version: '3'
|
|
|
|
services:
|
|
gerbil:
|
|
image: gerbil
|
|
container_name: gerbil
|
|
command: ["./gerbil", "--config", "/config/gerbil.conf"]
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_MODULE
|
|
ports:
|
|
- 51820:51820/udp
|
|
volumes:
|
|
- ./config_example.json:/config/config.json
|
|
sysctls:
|
|
- net.ipv4.conf.all.src_valid_mark=1
|
|
restart: unless-stopped |