This commit is contained in:
2026-01-14 19:41:55 +00:00
commit 5639702912
7 changed files with 409 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM --platform=amd64 debian:13.3
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
USER root
RUN useradd -r -s /bin/bash -m velocitycmdb
RUN velocitycmdb
# Install as service account
RUN pip install velocitycmdb
# Data will be stored in /home/velocitycmdb/.velocitycmdb/
ENTRYPOINT [ "velocitycmdb", "init" ]
EXPOSE 8086