I\'m trying to build a data container for my application in Docker. I run this command to expose some volumes:
docker run --name svenv.nl-data -v /etc/environmen
I guess because you are not mounting a file but instead declaring a mount. Try this notation instead: -v :/etc/environment
-v :/etc/environment