Reputation: 16084
I'm following http://bradgessler.com/articles/docker-bundler. The first time around, it made "bundler fast again". I started getting issues with some missing linked files in the gems, so I blew away the docker images, and did a docker-compose build
. After it built, I could no longer do docker-compose run web bundle
-- I get this:
Creating network "myapp_default" with the default driver
Pulling bundle (myapp_web:latest)...
Pulling repository docker.io/library/myapp_web
ERROR: Error: image library/myapp_web:latest not found
How do I resolve this?
Upvotes: 2
Views: 3614
Reputation: 78
Following the same article, here are the steps that worked for me:
docker-compose build web
docker images
. Mine was 'appcontainer_web'docker-compose.yml
and replace 'image: myapp_web' with 'image: [your_image_name]'docker-compose.yml
file "command: echo I'm a little..."Upvotes: 1