I\'m trying to run example from Celery documentation.
I run: celeryd --loglevel=INFO
/usr/local/lib/python2.7/dist-packages/celery/loade
In my case the error was because one container created files in a folder that were mounted on the host file-system with docker-compose.
I just had to do remove the files created by the container on the host system and I was able to launch my project again.
sudo rm -Rf foldername
(I had to use sudo because the files were owned by the root user)
Docker version: 18.03.1