MX Linux setting up docker and docker-compose
Steps to set up docker and docker-compose on MX Linux
docker installation
- install docker using the debian repos: https://docs.docker.com/install/linux/docker-ce/debian/
- add users to the docker group, and logout and back in: https://docs.docker.com/install/linux/linux-postinstall/
sudo groupadd docker
sudo usermod -aG docker $USER
- start docker
sudo service docker start
docker-compose installation
- install docker-compose: https://docs.docker.com/compose/install/
- Alternation this is under Debian packages - though this may be a few versions behind