From 8087694123757fea4e572bc4c700e0c5d12b5aeb Mon Sep 17 00:00:00 2001 From: Andy Bunce Date: Fri, 2 Sep 2022 22:24:23 +0100 Subject: [PATCH] [add] wireshark --- wireshark/.gitignore | 1 + wireshark/docker-compose.yml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 wireshark/.gitignore create mode 100644 wireshark/docker-compose.yml diff --git a/wireshark/.gitignore b/wireshark/.gitignore new file mode 100644 index 0000000..94f7b77 --- /dev/null +++ b/wireshark/.gitignore @@ -0,0 +1 @@ +# ignore diff --git a/wireshark/docker-compose.yml b/wireshark/docker-compose.yml new file mode 100644 index 0000000..33d9dd3 --- /dev/null +++ b/wireshark/docker-compose.yml @@ -0,0 +1,17 @@ +version: "2.1" +services: + wireshark: + image: lscr.io/linuxserver/wireshark:latest + container_name: wireshark + cap_add: + - NET_ADMIN + network_mode: host + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/London + volumes: + - ./config:/config + ports: + - 4000:3000 #optional + restart: unless-stopped \ No newline at end of file