Build, Store and Run VM images? This is the way
cloudwesen.com
Build, Store and Run VM images? This is the way
1–3 of 3 posts
Re: Build, Store and Run VM images? This is the way
#2- 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
Best
Patrice
Re: Build, Store and Run VM images? This is the way
#3Docker 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…
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