Add wireshark in Docker

This commit is contained in:
Sukchan Lee 2018-05-29 11:15:18 +09:00
parent 2fb37ad797
commit 4f1efbb521
2 changed files with 5 additions and 1 deletions

View File

@ -55,7 +55,8 @@ services:
- mongodb
- base
environment:
DB_URI: mongodb://mongodb/nextepc
- DB_URI=mongodb://mongodb/nextepc
- DISPLAY
cap_add:
- NET_ADMIN
devices:
@ -65,6 +66,7 @@ services:
volumes:
- home:/home/${USER}
- ${HOME}:/mnt
- /tmp/.X11-unix:/tmp/.X11-unix
hostname: nextepc-dev
user: ${USER}
entrypoint: /bin/bash -c "/bin/bash -c \"$${@}\""

View File

@ -22,6 +22,8 @@ RUN apt-get update && \
net-tools && \
apt-get clean
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y wireshark
COPY setup.sh /root
ARG username=acetcom