I created some containers on my system (ubuntu 14.04) using docker-compose which mounted directories from the host into the containers. Now, every time I reboot the host, these directories are recreated, even though the containers do not longer exist (and I therefore deleted the directory).
Example: I had a container for gitlab-ci in
/var/docker/gitlab-ci/
Containing the files/directories
docker-compose.yml
data/
postegresql/
I have deleted the directory
gitlab-ci/
now,
gitlab-ci/data
gitlab-ci/postgresql
are created after every reboot. How do I get rid of them?