16 lines
313 B
YAML
16 lines
313 B
YAML
version: "2.1"
|
|
services:
|
|
wireshark:
|
|
image: lscr.io/linuxserver/wireshark
|
|
container_name: wireshark
|
|
cap_add:
|
|
- NET_ADMIN
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Warsaw
|
|
volumes:
|
|
- /docker/wireshark:/config
|
|
ports:
|
|
- 3222:3000
|
|
restart: always |