Wireshark Docker#
The world’s most popular network protocol analyzer
Docker#
docker run -d --name=wireshark -p 3000:3000 linuxserver/wireshark
Docker Compose#
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=Etc/UTC
volumes:
- /path/to/config:/config
ports:
- 3000:3000 #optional
- 3001:3001 #optional
restart: unless-stopped