Reputation: 1934
I'm using boot2mac and docker-compose. I want to be able to configure this to mount my volume via NFS. This is my configuration:
web:
image: nginx
links:
- db
ports:
- "80:80"
volumes:
- .:/usr/share/nginx/html
db:
image: postgres
Upvotes: 4
Views: 9140