21 lines
405 B
YAML
21 lines
405 B
YAML
---
|
|
version: "3.8"
|
|
|
|
services:
|
|
netbird:
|
|
container_name: ${PEER_NAME:-homelab-jumper}
|
|
hostname: ${PEER_NAME:-homelab-jumper}
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_ADMIN
|
|
- SYS_RESOURCE
|
|
environment:
|
|
- NB_SETUP_KEY=${NB_SETUP_KEY}
|
|
volumes:
|
|
- netbird-client:/etc/netbird
|
|
image: netbirdio/netbird:latest
|
|
|
|
volumes:
|
|
netbird-client:
|
|
name: netbird-client
|