Skip to content

Commit e742bd7

Browse files
committed
2 parents f724b7c + bec602b commit e742bd7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/docker-build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
shell: bash
2222
run: echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
2323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24-
- uses: docker/setup-qemu-action@5964de0df58d5ad28b04d8fe2e6b80ad47105b91 # v3.5.0
24+
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
2525
- uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
2626
- uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
2727
id: meta

.github/workflows/docker-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
shell: bash
1919
run: echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}"
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21-
- uses: docker/setup-qemu-action@5964de0df58d5ad28b04d8fe2e6b80ad47105b91 # v3.5.0
21+
- uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
2222
- uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
2323
- uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
2424
id: meta

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Kali Linux as a docker container.
1313
**Mac/Linux**
1414

1515
```bash
16-
docker run -t --user="$(id -u):$(id -g)" -v "$(pwd):/tmp" leplusorg/kali
16+
docker run -it --user="$(id -u):$(id -g)" -v "$(pwd):/tmp" leplusorg/kali
1717
```
1818

1919
Add the `--rm` option if you want to discard the container when you exit it.
@@ -23,13 +23,13 @@ Add the `--rm` option if you want to discard the container when you exit it.
2323
In `cmd`:
2424

2525
```batch
26-
docker run -t -v "%cd%:/tmp" leplusorg/kali
26+
docker run -it -v "%cd%:/tmp" leplusorg/kali
2727
```
2828

2929
In PowerShell:
3030

3131
```pwsh
32-
docker run --rm -t -v "${PWD}:/tmp" leplusorg/kali
32+
docker run -it -v "${PWD}:/tmp" leplusorg/kali
3333
```
3434

3535
Add the `--rm` option if you want to discard the container when you exit it.

0 commit comments

Comments
 (0)