🐳 devspace

DevSpace - The Fastest Developer Tool for Kubernetes ⚡ Automate your deployment workflow with DevSpace and develop software directly inside Kubernetes.

Docker Ready 4,979 stars
1. Pull Image docker pull devspace-sh/devspace:latest
2. 1-Click Launch Command docker run -d --name devspace --restart always devspace-sh/devspace:latest
Dockerfile
FROM alpine:3 as alpine

ARG RELEASE_VERSION=latest

RUN apk add --update-cache curl tar docker git

RUN curl -L -o /bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.17.3/bin/linux/amd64/kubectl \
 && chmod +x /bin/kubectl

RUN curl -s -L "https://github.com/loft-sh/devspace/releases/download/$RELEASE_VERSION/devspace-linux-amd64" -o /bin/devspace \
 && chmod +x /bin/devspace