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

add dsniff

This commit is contained in:
kev
2016-07-19 14:28:16 +08:00
parent ea31d4db73
commit ccbd39afeb
6 changed files with 91 additions and 0 deletions

15
dsniff/arm/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
#
# Dockerfile for dsniff-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \
&& apk add --no-cache bash coreutils dsniff tmux
CMD set -xe \
&& tmux new -d -x 800 -y 600 \
&& sleep infinity

View File

@@ -0,0 +1,8 @@
dsniff:
image: easypi/dsniff-arm
net: host
volumes:
- ./data:/data
working_dir: /data
tty: yes
restart: unless-stopped