Skip to content

Instantly share code, notes, and snippets.

@ramitsurana
Last active July 7, 2016 15:53
Show Gist options
  • Select an option

  • Save ramitsurana/0a1c8e9f4af1b01e35c035c9b519564c to your computer and use it in GitHub Desktop.

Select an option

Save ramitsurana/0a1c8e9f4af1b01e35c035c9b519564c to your computer and use it in GitHub Desktop.
Some commands and setup method for using rkt
# 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