Docker version issue

If you encounter docker-compose issue with

sudo brainframe install

It could be due to the latest change of the docker installation. Try to reinstall Docker. Here’s how you can do that (Thanks ChatGPT 4):

  1. Uninstall Docker: You can uninstall Docker with the following command:

sudo apt-get purge docker-ce docker-ce-cli containerd.io

This command will remove Docker but preserve your images, containers, volumes, and configuration files. If you want to delete all Docker data, you can use the following command instead:

sudo rm -rf /var/lib/docker

  1. Install Docker: After uninstalling Docker, you can install it again with the following commands:

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg lsb-release
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo “deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] Index of linux/ubuntu/ $(lsb_release -cs) stable” | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io