Last active
July 7, 2016 15:53
-
-
Save ramitsurana/0a1c8e9f4af1b01e35c035c9b519564c to your computer and use it in GitHub Desktop.
Some commands and setup method for using rkt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Commands to setup rkt | |
| # Installing rkt | |
| wget https://github.com/coreos/rkt/releases/download/v1.0.0/rkt-v1.0.0.tar.gz | |
| tar xfv rkt-v1.0.0.tar.gz | |
| alias rkt="sudo '${PWD}/rkt-v1.0.0/rkt'" | |
| # Running alpine container from quay.io registry | |
| rkt run --interactive quay.io/coreos/alpine-sh | |
| # Running a ubuntu container from docker registry | |
| rkt run --interactive docker://ubuntu --insecure-options=image | |
| # Using aci to build up your image | |
| rkt run --insecure-options=image --net=host sample.aci |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment