Skip to content

llamashoes/dind-kubernetes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kubernetes - Docker-in-Docker

This recipe lets you run Kubernetes in Docker within Docker.

Forked from https://github.com/jpetazzo/dind

The purpose of this came down to a desire to quickly start a local kubernetes cluster using hack/local-up-cluster.sh in the kubernetes source code.

There is only one requirement: your Docker version should support the --privileged flag.

Quickstart

Build the image:

docker build -t dind-kubernetes.

then run:

docker run --privileged -t -i --net="host" dind-kubernetes

Or run the image without building:

docker run --privileged -t -i --net="host" llamashoes/dind-kubernetes

You can then make api calls to kubernetes apiserver running on :8888

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%