Self-hosting

If you like, you can host OmniKee on your own server. Since OmniKee is a static web application without a server component, just serving the HTML, CSS, and JavaScript will do.

Docker

Serve OmniKee on port 8080:

docker run \
    --name omnikee \
    -p  8080:8080 \
    ghcr.io/omnikee/omnikee

The BusyBox httpd server is very minimalistic - there will be no log messages to indicate the server is running.

You can alternatively provide a version number matching a release, e.g. ghcr.io/omnikee/omnikee:v0.1.36

Edit this page on GitHub