Does this allow for a docker image to be run inside a browser tab?
Naturally. With this and a bit of hacking: https://bellard.org/jslinux/
Show HN: Slim – Build and run tiny VMs from Dockerfiles
41–50 of 144 posts
Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#42Earlier quoted context omitted.
Docker images contain a filesystem for an operating system, minus the OS kernel. This project uses Docker to build a tiny OS, extracts all the files out of the Docker image, adds a small OS kernel and re-packages that as a VM image.
So why was Docker needed to create a lightweight VM? I thought Docker was supposed to replace VMs.
Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#43Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#44Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#45Earlier quoted context omitted.
Naturally. With this and a bit of hacking: https://bellard.org/jslinux/
Forgive my lack of technical depth, but is it actually running client-side, in the memory allocated to my newly-opened browser tab, or on bellard.org's server and syncing the input/output to my browser?
Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#46Earlier quoted context omitted.
Naturally. With this and a bit of hacking: https://bellard.org/jslinux/
Forgive my lack of technical depth, but is it actually running client-side, in the memory allocated to my newly-opened browser tab, or on bellard.org's server and syncing the input/output to my browser?
> Run Linux or other Operating Systems in your browser!
It runs in your browser.
If you clicked the link you would also see demo links that run in your browser.
Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#47Earlier quoted context omitted.
Naturally. With this and a bit of hacking: https://bellard.org/jslinux/
Forgive my lack of technical depth, but is it actually running client-side, in the memory allocated to my newly-opened browser tab, or on bellard.org's server and syncing the input/output to my browser?
Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#48Recently on HN (I think) and related: - https://micromind.me/en/posts/from-docker-container-to-boota... - https://godarch.com/ Really like seeing these new usecases for containers -- would have never thought to mix the two technologies in this way.
Here are my personal recipes: https://github.com/pauldotknopf/darch-recipes
Re: Show HN: Slim – Build and run tiny VMs from Dockerfiles
#49Earlier quoted context omitted.
Docker images contain a filesystem for an operating system, minus the OS kernel. This project uses Docker to build a tiny OS, extracts all the files out of the Docker image, adds a small OS kernel and re-packages that as a VM image.
So why was Docker needed to create a lightweight VM? I thought Docker was supposed to replace VMs.
Kata Containers (https://katacontainers.io) is more along the lines of a "VM replacement", although it is doing so using VMs.