mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-01-23 12:14:17 +00:00
1.1 KiB
1.1 KiB
Docker Troubleshooting
ERROR: Version in "./docker-compose.yml" is unsupported.
sudo apt-get remove docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
ERROR: Couldn't connect to Docker daemon at http+docker://localhost - is it running?
sudo reboot
ERROR: Permission denied while trying to connect to the Docker daemon
sudo usermod -a -G docker $USER
ERROR: mountpoint for devices not found
e.g.
OCI runtime create failed: container_linux.go:349: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for devices not found\"": unknown
Follow These Steps:
- edit grub
sudo nano /etc/default/grub
- change GRUB_CMDLINE_LINUX value to the below:
GRUB_CMDLINE_LINUX="systemd.unified_cgroup_hierarchy=0"
- then run:
grub2-mkconfig
- then:
sudo reboot