5 ms·
Build, Store and Run VM images? This is the way
- p-as-software 4y agoDocker made building, storing and running container images painless by giving you: - a minimal configuration management domain specific language, the Dockerfile From alpine ... - an easy way to build and locally store container images docker image build -t websever:v1 . - an easy way to remotely store the images docker image push websever:v1 - an easy way to run the images docker container run webserver:v1 Saya gives you the same Dev(Ops) eXperience, so that, to build, store and run VM images, you just do: saya image build -t websever:v1 . saya image push websever:v1 saya vm run webserver:v1 Easy enough? What say you? You can find more about and download Saya at: https://cloudwesen.com/saya/index.html https://cloudwesen.com/saya/index.html Best Patrice
- p-as-software 4y agoSorry, bad formatting for the commands. Here is what you do to build, store and run VM images: - saya image build -t websever:v1 - saya image push websever:v1 - saya vm run webserver:v1