Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djelibeybi/flicd-container
Flicd in a container
https://github.com/djelibeybi/flicd-container
container container-image flic flicd
Last synced: about 1 month ago
JSON representation
Flicd in a container
- Host: GitHub
- URL: https://github.com/djelibeybi/flicd-container
- Owner: Djelibeybi
- License: mit
- Created: 2022-06-18T03:27:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T14:23:28.000Z (6 months ago)
- Last Synced: 2024-10-14T08:44:05.225Z (2 months ago)
- Topics: container, container-image, flic, flicd
- Language: Dockerfile
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flicd in a container
This is a container image of the official Shortcut Labs AB `flicd` daemon that
can be used with things like the Home Assistant Flic integration.## Usage
The following example command will start a container named `flicd` in the background
that will automatically restart on failure or if the host reboots:```shell
docker run -d \
--name flicd \
--restart=always \
--net=host \
--privileged \
-v ./data:/data \
djelibeybi/flicd
```Change `./data:/data` to map to a local directory in which `flicd` will store the
button registration database. If not specified, Docker will automatically create
a volume to store this database.