19 lines
425 B
YAML
19 lines
425 B
YAML
---
|
|
version: "3"
|
|
services:
|
|
infranet:
|
|
container_name: infranet
|
|
image: dcr.wallace.sh/scott/infranet:latest
|
|
volumes:
|
|
- /path/to/infranet/config:/etc/nebula
|
|
cap_add:
|
|
- NET_ADMIN
|
|
devices:
|
|
- /dev/net/tun
|
|
environment:
|
|
- TZ=Europe/London
|
|
# A Lighthouse should be listening for incoming connections; but not nodes
|
|
# ports:
|
|
# - 4242:4242/udp
|
|
restart: unless-stopped
|