-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fig up complains about nonexistent open file descriptors #340
Comments
The problem is your db:
build: ./mysql
volumes:
- /home/amackera/data/mysql:/var/lib/mysql
ports:
- "3306:3306" See #129 - we need to be validating this stuff. |
Also getting that same error message on OSX using deploy:
build: deploy/build
postgres:
build: ./postgres/build
ports:
- "5432:5432"
volumes:
- /Users/dominicwatson/Dropbox/Docker/app/xyz/postgres/data:/var/lib/postgresql
redis:
image: redis
nginx:
build: ./nginx/build
links:
- postgres
- redis
ports:
- "80:80"
- "443:443"
volumes:
- /Users/dominicwatson/Dropbox/Docker/app/xyz/nginx:/data |
I had to |
Well, I tried it on my work computer and it worked straight away. Just got home and |
This just caught me out too. +1 for cleaning up changes in volumes |
I believe #711 would fix it |
Updating things, |
When trying to
fig up
, it fails complaining with the following:My
fig.yml
looks like this:Also, after running
fig up
there are a bunch of empty directories nameda
andb
, etc. in the directory that I keep myfig.yml
file.Any ideas?
Tested with
fig
version 0.5.0 and 0.5.1, and withdocker
version 1.1.0 and 1.1.1.The text was updated successfully, but these errors were encountered: