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
+13
View File
@@ -0,0 +1,13 @@
ARG BASE_REPO="repo.nstart.local/"
FROM ${BASE_REPO}library/nginx:1.29.1-alpine
LABEL org.opencontainers.image.title="VaultWarden proxy" \
org.opencontainers.image.description="NGINX VaultWarden proxy."
COPY vaultwarden.conf /etc/nginx/conf.d/
HEALTHCHECK --interval=30s --timeout=3s CMD nginx -t || exit 1
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]