Replies: 2 comments
-
If you pull the image then probably no reason to build. Error: stat /home/thomas/Dockerfile: no such file or directory Also are you using alias docker=podman or actually using podman. Does the podman run command work, then you are all set. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I'm using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm trying to deploy Tailscale docker image on Ubuntu 22.04 using
podman
.The instructions are simple and clear:
docker pull tailscale/tailscale:stable
docker build -t tailscale/tailscale .
docker run -d --name=tailscaled -v /var/lib:/var/lib -v /dev/net/tun:/dev/net/tun --network=host --cap-add=NET_ADMIN --cap-add=NET_RAW tailscale/tailscale
Here the first issue occurs:
Error: stat /home/thomas/Dockerfile: no such file or directory
However I can run
docker run -d --name=tailscaled -v /var/lib:/var/lib -v /dev/net/tun:/dev/net/tun --network=host --cap-add=NET_ADMIN --cap-add=NET_RAW tailscale/tailscale
and the container is available withpodman ps -a
.Can you please advise what's wrong here?
Is `docker build¸ required?
THX
Beta Was this translation helpful? Give feedback.
All reactions