OpenMediaVault-Plugin-Developers / openmediavault-docker-gui

Docker plugin for OpenMediaVault
32 stars 17 forks source link

[OMV 3.x] +[backport kernel] #31

Closed happyreacer closed 7 years ago

happyreacer commented 7 years ago

The openmediavault-docker-gui does not work with the backport kernel from the omv-extras. many logs are on the omv-forum on the side: http://forum.openmediavault.org/index.php/Thread/11290-Docker-GUI-plugin-now-stable/?pageNo=22 or exactly http://forum.openmediavault.org/index.php/Thread/11290-Docker-GUI-plugin-now-stable/?postID=123269#post123269

can everybody fix it?

luxflow commented 7 years ago

http://log.rowanto.com/broken-docker-in-debian-jessie/

systemctl stop docker
rm -rf /var/lib/docker/aufs
systemctl start docker 

did you try this? I'm currently running backport kernel + OMV 3 without problem

also try deleteing all docker container (*caution you may lose docker data if you don't use docker volume)

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
subzero79 commented 7 years ago

There's no issue. The answer was given in the forum, there is no aufs driver in bpo kernel, you can switch to devicemapper or a dedicated btrfs disk for docker.

happyreacer commented 7 years ago

@luxflow yes it works, but i think it is better to use for newbies when this is changed.