Instructions are for docker-machine for windows
docker volume create bitpoll
docker network create test
docker run --name bitpoll-postgres -v bitpoll:/var/lib/postgresql/data -p 5000:5432 -e 'POSTGRES_PASSWORD=postgres' -e 'PGDATA=/var/lib/postgresql/data/pgdata' -d --network=test postgres
docker-machine does not allow mapping outside ~ (home-dir) without tricks
Attention the slashes //c - thats an windows-issue!
docker run -d --rm -p 3008:3008 -v '//c/Users/<your-id>/bitpoll-win-settings/settings_local.py://app/bitpoll/settings_local.py' --network=test mschwehl/bitpoll:0.9.7
http://192.168.99.101:3008
the ip is available to docker-machine ip <machine>