16 lines
329 B
YAML
16 lines
329 B
YAML
version: "2.1"
|
|
services:
|
|
wireshark:
|
|
image: lscr.io/linuxserver/wireshark:latest
|
|
container_name: wireshark
|
|
cap_add:
|
|
- NET_ADMIN
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/London
|
|
volumes:
|
|
- ./config:/config
|
|
ports:
|
|
- 4000:3000 #optional
|
|
restart: unless-stopped |