docker-bits/lsio/wireshark/docker-compose.yaml
2021-04-10 12:16:29 +02:00

32 lines
1.2 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# [Wireshark]({{ project_url }}) is the worlds foremost and widely-used network
# protocol analyzer. It lets you see whats happening on your network at a
# microscopic level and is the de facto (and often de jure) standard across many
# commercial and non-profit enterprises, government agencies, and educational
# institutions. Wireshark development thrives thanks to the volunteer
# contributions of networking experts around the globe and is the continuation
# of a project started by Gerald Combs in 1998.
---
version: "2.1"
services:
wireshark:
image: ghcr.io/linuxserver/wireshark
container_name: wireshark
cap_add:
- NET_ADMIN
network_mode: host
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=Europe/Amsterdam
volumes:
# Users home directory in the container, stores program settings and potentially dump files.
- ${BASEDIR:-/volume1/docker}/wireshark/config:/config
ports:
# WireShark desktop gui, only use this if you are not using host mode and sniffing Docker network traffic.
- 3000:3000 # optional
restart: unless-stopped