Appearance
DockerでWiresharkを構築
cf. https://hub.docker.com/r/linuxserver/wireshark
yaml
services:
wireshark:
image: lscr.io/linuxserver/wireshark:latest
container_name: wireshark
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./volumes/config:/config
ports:
- 3000:3000
- 3001:3001
shm_size: "1gb"
restart: unless-stopped起動後、https://localhost:3001 からGUIにアクセスできます。