We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So I have a docker-compose.yml that looks like this:
mongo: image: mongo:2.6 command: "--smallfiles" volumes_from: data restart: always mem_limit: 100MB data: image: mongo:2.6 volumes: /data/db
When I run docker-compose up, I get this:
docker-compose up
Service "mongo" mounts volumes from "d", which is not the name of a service or container.
Version: 1.1.0-rc2
Queh?
The text was updated successfully, but these errors were encountered:
volumes_from should be a list not a string. There's an issue open somewhere to improve validation around this kind of thing.
volumes_from
Sorry, something went wrong.
ah, thank you kindly!
Related to #129
No branches or pull requests
So I have a docker-compose.yml that looks like this:
When I run
docker-compose up
, I get this:Service "mongo" mounts volumes from "d", which is not the name of a service or container.
Version: 1.1.0-rc2
Queh?
The text was updated successfully, but these errors were encountered: