https://github.com/dotwee/docker-bluetooth-presence-monitor
Unprivileged docker image that wraps andrewjfreyer/monitor, with support on running on arm platforms like a raspberry pi.
https://github.com/dotwee/docker-bluetooth-presence-monitor
arm armv7 bluetooth bluetooth-monitor docker docker-image monitor presence-detection
Last synced: 3 months ago
JSON representation
Unprivileged docker image that wraps andrewjfreyer/monitor, with support on running on arm platforms like a raspberry pi.
- Host: GitHub
- URL: https://github.com/dotwee/docker-bluetooth-presence-monitor
- Owner: dotWee
- Archived: true
- Created: 2021-02-22T03:08:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-29T18:33:36.000Z (about 2 years ago)
- Last Synced: 2025-04-09T04:06:29.872Z (3 months ago)
- Topics: arm, armv7, bluetooth, bluetooth-monitor, docker, docker-image, monitor, presence-detection
- Language: Makefile
- Homepage: https://hub.docker.com/r/dotwee/bluetooth-presence-monitor
- Size: 51.8 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# [`dotwee/bluetooth-presence-monitor`](https://hub.docker.com/r/dotwee/bluetooth-presence-monitor)



**Unprivileged** docker image that wraps [andrewjfreyer/monitor](https://github.com/andrewjfreyer/monitor), with support on running on arm platforms like a raspberry pi.
## pulling
### from [**docker hub**](https://hub.docker.com/r/dotwee/bluetooth-presence-monitor)
```bash
$ docker pull dotwee/bluetooth-presence-monitor:latest
```### from [**github packages**](https://github.com/dotWee/docker-bluetooth-presence-monitor/pkgs/container/bluetooth-presence-monitor)
```bash
$ docker pull ghcr.io/dotwee/bluetooth-presence-monitor:latest
```## tags
- `linux/arm/v6`
- `linux/arm/v7`
- `linux/arm64`
- `linux/amd64`## running
```bash
$ docker run \
--name bluetooth-presence-monitor \
-v "${PWD}":/config \
--net=host \
--restart always \
--cap-add NET_ADMIN \
dotwee/bluetooth-presence-monitor:latest
```using [docker-compose](./docker-compose.yml):
```yaml
version: '2.2'services:
bluetooth-presence-monitor:
image: dotwee/bluetooth-presence-monitor:latest
container_name: bluetooth-presence-monitor
volumes:
- ./config:/config:rw
- /sys/fs/cgroup:/sys/fs/cgroup:ro
# optionally bind your host's time config readonly
# or use the TZ environment variable
#- /etc/timezone:/etc/timezone:ro
#- /etc/localtime:/etc/localtime:ro
network_mode: host # bluetooth
restart: always
cap_add:
- NET_ADMIN
# optionally set your timezone (UTC is used by default)
# environment:
# - TZ="Europe/Berlin"
```