-
Notifications
You must be signed in to change notification settings - Fork 96
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
Using existing docker images? #502
Comments
Hi, You can't run existing docker images "by name" in vagga. But you don't have to build by vagga. You can do run "docker export" to save a file with a filesystem image and the result of that command using We're thinking about fetching images directly from docker hub, but have not implement it yet. |
Thank you for that. I tried that today but I think it's failing before it even gets to try to load the image (#503). |
This would be a killer feature. Could you provide an example? I'm having trouble understanding the documentation for |
Something along the lines of:
|
Great, thanks! I'm getting the following error right now:
I tried it with a Debian archive as well and got the same error. My vagga.yaml looks like this: containers:
fedora:
setup:
- !Tar
url: ./fedora.tar
path: /
commands:
bash: !Command
description: Run bash shell inside the container
container: fedora
run: /bin/bash It looks like it might be trying to enter the container as |
Is it possible to use / run existing docker images or do they always have to be built separately using vagga?
The text was updated successfully, but these errors were encountered: