14 lines
365 B
Docker
14 lines
365 B
Docker
ARG BASE_REPO="repo.nstart.cloud/"
|
|
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;"]
|