22 lines
491 B
YAML
22 lines
491 B
YAML
---
|
|
version: "3"
|
|
services:
|
|
infranet:
|
|
container_name: infranet
|
|
image: dcr.wallace.sh/scott/infranet:latest
|
|
volumes:
|
|
- /path/to/infranet/config/nebula:/etc/nebula
|
|
- /path/to/infranet/config/seaweedfs:/etc/seaweedfs
|
|
- /path/to/infranet/filestore:/storage
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_ADMIN
|
|
security_opt:
|
|
- apparmor:unconfined
|
|
devices:
|
|
- /dev/net/tun
|
|
- /dev/fuse
|
|
environment:
|
|
- TZ=UTC
|
|
restart: unless-stopped
|