Category: Docker

Installing Docker

Installing Docker on a Debian/Ubuntu machine

In this really short article you can find the few commands you need to complete installing Docker on your Debian server. curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add – sudo -i apt install apt-transport-https...

Setup a Docker cluster

At some point when managing a big environment, you might be intrested in having a Docker cluster. Or like Docker calls it: a Docker swarm. Creating one is quite well explained on the official...