zyclonite / zerotier-docker

ZeroTier One as Docker Image
MIT License
305 stars 74 forks source link

Docker command to join network does not work #2

Closed 3nigm4 closed 3 years ago

3nigm4 commented 3 years ago

Hey there,

when I run $ sudo docker exec zerotier-one /zerotier-cli join 8056c2e21c000001

I get the following error: OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "/zerotier-cli": stat /zerotier-cli: no such file or directory: unknown

but when I do:

$ sudo docker exec -it zerotier-one /bin/sh

and then:

# zerotier-cli join 8056c2e21c000001

I get:

200 join OK

maybe because of the OCI Runtime?

zyclonite commented 3 years ago

@3nigm4 you are right, this was wrong in the readme

you can just skip the leading / for the zerotier-cli and it should work

updated the readme: https://github.com/zyclonite/zerotier-docker/commit/9b5623ac02c9f4715401b404361055a96a848839

3nigm4 commented 3 years ago

thank you, it works now!