Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Docker has this feature of “docker inside docker”. Since Orbstack runs docker engine, you can run docker inside Orbstack! To setup docker you should follow the following script for Ubuntu:


# if you want to check for these packages

dpkg-query -l | grep -E 'docker.io|docker-doc|docker-compose|docker-compose-v2|podman-docker|containerd|runc'


# if found remove Remove any apt-based docker

for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done

...