mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-08 21:33:58 +01:00
NebulaOSS/nebula Docker Image
Building
From the root of the repository, run make docker.
Running
To run the built image, use the following command:
docker run \
--name nebula \
--network host \
--cap-add NET_ADMIN \
--volume ./config:/config \
--rm \
nebulaoss/nebula
A few notes:
- The
NET_ADMINcapability is necessary to create the tun adapter on the host (this is unnecessary if the tun device is disabled.) --volume ./config:/configshould point to a directory that contains yourconfig.ymland any other necessary files.