minikube/deploy/docker
Dan Lorenc f911bec60e Add conntrack to the Docker image. 2016-06-03 08:43:32 -07:00
..
static-pods Fix hostPort bug in dashboard-svc.yaml. hostPort is invalid in a service. 2016-05-29 11:13:05 -07:00
Dockerfile Add conntrack to the Docker image. 2016-06-03 08:43:32 -07:00
Makefile Fixed issue with wrong static-pods location in Makefile 2016-06-01 01:56:31 +05:30
README.md Add a localkube-in-docker image 2016-05-28 00:42:42 +03:00

README.md

Run localkube in a docker container (experimental)

Warning: This is very experimental code at the moment.

How to build

$ make VERSION=vX.Y.Z

How to run

$ docker run -d \
    --volume=/:/rootfs:ro \
    --volume=/sys:/sys:rw \
    --volume=/var/lib/docker:/var/lib/docker:rw \
    --volume=/var/lib/kubelet:/var/lib/kubelet:rw \
    --volume=/var/run:/var/run:rw \
    --net=host \
    --pid=host \
    --privileged \
    gcr.io/google_containers/localkube-amd64:vX.Y.Z \
    /localkube start \
    --containerized