Move tools to seperate repo

This commit is contained in:
Khue Doan 2021-03-28 22:52:26 +07:00
parent a503f8fbb9
commit 8c66d78ecd
4 changed files with 0 additions and 44 deletions

View File

@ -1,18 +0,0 @@
FROM alpine
RUN apk add --no-cache \
curl \
docker-cli \
make \
neovim \
python3 \
tree \
zsh
RUN apk add --no-cache --repository "http://dl-cdn.alpinelinux.org/alpine/edge/testing" \
helm \
kubectl \
lxd \
terraform
WORKDIR /src

View File

@ -1,9 +0,0 @@
.POSIX:
default: build run
build:
docker-compose build --quiet
run:
docker-compose run --rm tools zsh

View File

@ -1,8 +0,0 @@
# Genesis
## Usage
```sh
docker-compose build
docker-compose run tools zsh
```

View File

@ -1,9 +0,0 @@
version: '3'
services:
tools:
build: .
volumes:
- ..:/src
- $HOME:/root
- /var/run/docker.sock:/var/run/docker.sock