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:
9
aircrack-ng/Dockerfile
Normal file
9
aircrack-ng/Dockerfile
Normal 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
13
aircrack-ng/README.md
Normal 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
|
||||
```
|
||||
15
aircrack-ng/docker-compose.yml
Normal file
15
aircrack-ng/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user