fix: use sh shell instead bash

This commit is contained in:
Markus Pesch 2021-03-28 16:24:32 +02:00
parent a2dbf375f5
commit b7c64622c9
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ To use this image execute the following command in a docker environment.
$ docker run \
--rm \
volkerraschek/network-tools:latest \
bash
sh
```
### Kubernetes
@ -34,5 +34,5 @@ kubectl create -f https://git.cryptic.systems/volker.raschek/network-tools/raw/b
Execute a shell inside the container by
```bash
kubectl exec -it network-tools -- bash
kubectl exec -it network-tools -- sh
```