├── Dockerfile └── readme.md /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:jessie-slim 2 | 3 | MAINTAINER Maik Ellerbrock (https://github.com/ellerbrock) 4 | 5 | RUN apt-get update && \ 6 | apt-get install -y aircrack-ng && \ 7 | rm -rf /var/lib/apt/lists/* 8 | 9 | ENTRYPOINT ["aircrack-ng"] 10 | CMD ["--help"] 11 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ![Docker Security](https://github.frapsoft.com/top/docker-security.jpg) 2 | 3 | # aircrack-ng 4 | 5 | _A Collection of Docker Containers for Security and Penetration Testing can be found [here](https://github.com/ellerbrock/docker-security-container)._ 6 | 7 | [![Docker Automated Build](https://img.shields.io/docker/automated/frapsoft/aircrack-ng.svg)](https://hub.docker.com/r/frapsoft/aircrack-ng/) [![Docker Pulls](https://img.shields.io/docker/pulls/frapsoft/aircrack-ng.svg)](https://hub.docker.com/r/frapsoft/aircrack-ng/) [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg)](https://github.com/ellerbrock/open-source-badges/) [![Gitter Chat](https://badges.gitter.im/frapsoft/frapsoft.svg)](https://gitter.im/frapsoft/frapsoft/) 8 | 9 | - Docker Hub: [frapsoft/aircrack-ng](https://hub.docker.com/r/frapsoft/aircrack-ng/) 10 | - Repository: 11 | - Dockerfile: 12 | - Base Image: [alpine](https://hub.docker.com/_/alpine/) 13 | 14 | ## Installation 15 | 16 | `docker pull frapsoft/aircrack-ng` 17 | 18 | ## Example 19 | 20 | `docker run frapsoft/aircrack-ng` 21 | 22 | ### Contact / Social Media 23 | 24 | _Get the latest News about Web Development, Open Source, Tooling, Server & Security_ 25 | 26 | [![Github](https://github.frapsoft.com/social/github.png)](https://github.com/ellerbrock/)[![Docker](https://github.frapsoft.com/social/docker.png)](https://hub.docker.com/u/frapsoft/)[![npm](https://github.frapsoft.com/social/npm.png)](https://www.npmjs.com/~ellerbrock)[![Twitter](https://github.frapsoft.com/social/twitter.png)](https://twitter.com/frapsoft/)[![Facebook](https://github.frapsoft.com/social/facebook.png)](https://www.facebook.com/frapsoft/)[![Google+](https://github.frapsoft.com/social/google-plus.png)](https://plus.google.com/116540931335841862774)[![Gitter](https://github.frapsoft.com/social/gitter.png)](https://gitter.im/frapsoft/frapsoft/) 27 | --------------------------------------------------------------------------------