2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-21 13:23:02 +01:00

update aircrack-ng

This commit is contained in:
kevin
2025-07-03 13:55:29 +08:00
parent 5675c4c1e5
commit 3f9310aa06
6 changed files with 25 additions and 17 deletions

9
aircrack-ng/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
#
# Dockerfile for aircrack-ng-arm
#
FROM alpine:3
RUN apk add --no-cache aircrack-ng bash coreutils pciutils tmux
ENTRYPOINT ["sleep", "inf"]

13
aircrack-ng/README.md Normal file
View File

@@ -0,0 +1,13 @@
aircrack-ng
===========
```bash
$ docker-compose up -d
$ docker-compose exec aircrack bash
>>> airmon-ng
>>> airmon-ng start wlan1
>>> ifconfig
>>> airodump-ng wlan1mon
>>> airmon-ng stop wlan1mon
>>> exit
```

View File

@@ -0,0 +1,15 @@
services:
aircrack-ng:
image: easypi/aircrack-ng-arm64
entrypoint: sleep
command: infinity
volumes:
- ./data:/data
- /usr/share/zoneinfo:/usr/share/zoneinfo:ro
environment:
- TZ=Asia/Shanghai
working_dir: /data
network_mode: host
privileged: true
tty: true
restart: unless-stopped