mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 14:22:23 +00:00
14 lines
139 B
Bash
14 lines
139 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
build_packages()
|
||
|
{
|
||
|
sudo docker run -v $(pwd):/zto ztwd
|
||
|
}
|
||
|
|
||
|
build_dockerfile()
|
||
|
{
|
||
|
sudo docker build -t ztwd . --load
|
||
|
}
|
||
|
|
||
|
"$@"
|