Aircrack with python installation
222
Run container shell
sudo docker run --rm -it \
--privileged \
--net=host \
--name airmon-container \
-e LANG=C.UTF-8 \
-e LC_ALL=C.UTF-8 \
-v $(pwd):/deadbox \
monkeybusinez/aircrackng:latest
Compose
version: '3.8'
services:
airmon-container:
image: monkeybusinez/aircrackng:latest
container_name: airmon-container
privileged: true
network_mode: host
volumes:
- .:/deadbox
command: >
bash -c "airodump-ng --berlin 120 --uptime --manufacturer --band bg wlan1"
tty: true
restart: unless-stopped
Content type
Image
Digest
sha256:3ab01b28b…
Size
245.4 MB
Last updated
almost 2 years ago
docker pull monkeybusinez/aircrackng