This commit is contained in:
Tord-Vincent Heggland
2026-03-14 17:37:44 +01:00
commit 35c6a3e9f4
2 changed files with 34 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM kali-custom:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt upgrade -y && apt install -y \
htop \
steghide \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /root

23
docker-compose.yaml Normal file
View File

@@ -0,0 +1,23 @@
name: kali
services:
kali:
build: .
container_name: kali
hostname: kali
stdin_open: true
tty: true
network_mode: host
cap_add:
- NET_ADMIN
- NET_RAW
devices:
- /dev/bus/usb:/dev/bus/usb
volumes:
- kali_root:/root
restart: unless-stopped
command: sleep infinity
volumes:
kali_root:
name: kali_root