Run bash inside any version of Linux using Docker
08 January 2019 [Docker, Tech] Docker is useful for some things, and not as useful as you think for others. Here’s something really useful: get a disposable bash prompt inside any version of Linux distribution in one command: docker run -i -t –mount “type=bind,src=$HOME/Desktop,dst=/Desktop” ubuntu:18.10 bash This command downloads the latest Ubuntu 18.10 image, mounts […]