1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

docker for RaspberryPi にwiresharkを導入する

Last updated at Posted at 2021-03-07

RaspberryPiにdockerでwiresharkを入れてみた

はじめに、以下のコマンドを入力して、dockerを導入します。
snap install docker
次に、

あとは、dockerのwiresharkに記載されている通りにことを進めていく。

mkdir ws
cd ws
touch docker-compose.yml
vi docker-compose.yml

!!注意!!
記載されている通りに進めていると...network_modeの部分で、
network_mode: hostと記載されていることによりエラーが発生する事がある。
そこで、docker network lsで、ネットワーク関連を調べる。
今回自分の場合は、docker network inspect bridgeで、
dockerのネットワークが管理されていたので、hostではなくbridgeに変更した。
dockerのネットワーク構成によってもコンテナが作成されないので、注意が必要だ。
docker network ls =>で確認。

docker-compose.yml
version: "2.1"
services:
  wireshark:
    image: ghcr.io/linuxserver/wireshark
    container_name: wireshark
    cap_add:
      - NET_ADMIN
    network_mode: bridge
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Asia/Tokyo
    volumes:
      - /root/ws/config:/config
    ports:
      - 3000:3000 #optional
    restart: unless-stopped

最後に、下記のコマンドを実行してコンテナを作成し、起動します。

docker-compose up -d

あとは、http://{ラズパイのIPアドレス}:3000/にブラウザーで接続すれば、起動の確認ができる。

以上、現場からでした。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?