websoft9/docker/proxy/Dockerfile
2023-09-19 20:06:11 +08:00

10 lines
258 B
Docker

FROM jc21/nginx-proxy-manager:2.10.4
LABEL maintainer="Websoft9<help@websoft9.com>"
LABEL version="2.10.4"
RUN apt-get update && apt-get install -y curl
COPY user.sh /user.sh
COPY initproxy.conf /data/nginx/proxy_host
RUN chmod +x /user.sh
CMD ["/user.sh"]