How to quickly log into a Debian Docker container

panos May 29, 2017, midnight

Debian can be hard to install for a beginner. Docker is great for experimenting with it without having to install and boot into it. Here is how:

  • Download and install Docker for your platform
  • On your system's command line run
  • docker pull debian
  • docker run --rm -it debian bash -l
  • You should be logged in as root

Debian Docker terminal

Back to homepage