Update README

This commit is contained in:
2024-01-09 17:43:58 +01:00
parent b91e7aac97
commit dfdd9ed00d
2 changed files with 15 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
FROM ubuntu:23.10 FROM ubuntu:23.10
RUN apt-get update -qq \ 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 -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
RUN curl https://get.docker.com/ > dockerinstall && chmod 777 dockerinstall && ./dockerinstall RUN curl https://get.docker.com/ > dockerinstall && chmod 777 dockerinstall && ./dockerinstall

View File

@@ -13,3 +13,16 @@ DevOps Portable toolkit
- kustomize - kustomize
- jq - jq
- k6 - 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
```