-
Notifications
You must be signed in to change notification settings - Fork 3
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
investigate how to use LXD images #54
Comments
I was able to extract the qcow2 from https://jenkins.linuxcontainers.org/view/Images/job/image-alpine/lastBuild/architecture=amd64,release=3.18,variant=default/ - I put it into disk.tar.gz and created a Dockerfile: FROM scratch
ADD disk.tar.gz / I can then run that image with There are go packages for interacting with the image server and reading qcow2 files, so I guess it would be possible to have bootloose download lxd images and create docker containers, but there would still have to be some customization for example to install sshd. |
Of course it could just start it as-is and if there's no sshd, so be it. Bootloose could include an |
I wonder how/where lxd pulls the images from? https://images.linuxcontainers.org/ |
Yes I think that's the repo, https://github.com/lxc/incus/tree/main/client somehow downloads images from there, there are some commits that mention images.linuxcontainers.com |
LXD maintains a lot of OS OCI images. It would be nice to be able to pull OS images from LXD. Needs investigation on how we can do this.
The text was updated successfully, but these errors were encountered: