Docker 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
2 comments
[ 2.7 ms ] story [ 18.8 ms ] thread- 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
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