本文介绍了从 Docker 内部访问蓝牙加密狗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在 docker 容器内使用蓝牙(在我的情况下为 BLE)加密狗?
Is it possible to use a bluetooth (BLE in my case) dongle inside of a docker container?
在我的主机上:
$ hcitool dev
Devices:
hci0 5C:F3:70:64:F0:11
在 Docker 内部它没有找到任何东西.我正在运行 Docker:
Inside of Docker it doesn't find anything. I'm running Docker as:
sudo docker run --privileged -i -t ubuntu /bin/bash
我对 Linux 中的蓝牙子系统了解不够,无法理解主机和 docker 之间的区别.
I don't know enough about the bluetooth subsystem in Linux to understand what is different between the host and docker.
hci0
设备确实出现在两个系统中:
The hci0
device does show up in both systems:
$ ls -l /sys/class/bluetooth
lrwxrwxrwx 1 root root 0 Mar 5 01:23 hci0 -> ../../devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb2/2-2/2-2.3/2-2.3:1.0/bluetooth/hci0
有人尝试在 Docker 内部使用蓝牙吗?
Anyone try to use bluetooth inside of Docker?
推荐答案
试试这个:
sudo docker run --net=host --privileged -i -t ubuntu /bin/bash
这篇关于从 Docker 内部访问蓝牙加密狗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!