From 5bffce8c5c14b4ae095e8b004758df945c2e9da7 Mon Sep 17 00:00:00 2001 From: borgal Date: Fri, 5 May 2023 20:34:40 +0200 Subject: [PATCH] =?UTF-8?q?Wireshark=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wireshark/docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 wireshark/docker-compose.yml diff --git a/wireshark/docker-compose.yml b/wireshark/docker-compose.yml new file mode 100644 index 0000000..82fce74 --- /dev/null +++ b/wireshark/docker-compose.yml @@ -0,0 +1,19 @@ +version: "2.1" +services: + wireshark: + image: lscr.io/linuxserver/wireshark:latest + container_name: wireshark + cap_add: + - NET_ADMIN + security_opt: + - seccomp:unconfined #optional + #network_mode: host + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + volumes: + - ./config:/config + ports: + - 3010:3000 #optional + restart: unless-stopped \ No newline at end of file