Initial commit

This commit is contained in:
Никита Сычев
2026-01-03 23:09:01 +01:00
commit d0cb02102e
14 changed files with 389 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
ARG BASE_REPO="repo.nstart.local/"
FROM ${BASE_REPO}vaultwarden/server:testing-alpine
LABEL org.opencontainers.image.title="VaultWarden server" \
org.opencontainers.image.description="NStart VaultWarden server."
COPY config.json /data/config.json
HEALTHCHECK --interval=15s --timeout=10s CMD /healthcheck.sh || exit 1
CMD ["/start.sh"]