Docker inside a Linux VM? #305
-
Hi, is there a way to install Docker inside a Linux VM? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
You can just install it like you normally would. For example, in a Ubuntu machine: sudo apt install docker.io
# make it work without root
sudo useradd -aG docker $USER
# then exit the shell session and start a new one
docker ps The plan is for Docker to be set up automatically in machines in the future. See #269 for more info about that. |
Beta Was this translation helpful? Give feedback.
-
Works fine for me with official install instructions: |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
You can just install it like you normally would. For example, in a Ubuntu machine:
The plan is for Docker to be set up automatically in machines in the future. See #269 for more info about that.