diff --git a/Dockerfile b/Dockerfile index f483f6c..d1c6f4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:23.10 RUN apt-get update -qq \ - && apt-get install -qqy apt-transport-https ca-certificates curl gnupg2 software-properties-common jq + && apt-get install -qqy apt-transport-https ca-certificates curl gnupg2 software-properties-common jq git RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - RUN curl https://get.docker.com/ > dockerinstall && chmod 777 dockerinstall && ./dockerinstall diff --git a/README.md b/README.md index 4c2d17a..5da0b51 100644 --- a/README.md +++ b/README.md @@ -12,4 +12,17 @@ DevOps Portable toolkit - helm - kustomize - jq -- k6 \ No newline at end of file +- k6 + +```yaml +version: '3.7' +services: + toolkit: + image: jkaninda/toolkit:latest + container_name: toolkit + command: ["sleep", "600"] + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - ~/.kube:/root/.kube + - ~/.ssh:/root/.ssh # If you use private CVS +``` \ No newline at end of file