websoft9/docker/w9proxy/Dockerfile

10 lines
258 B
Docker
Raw Normal View History

2023-09-19 18:03:28 +08:00
FROM jc21/nginx-proxy-manager:2.10.4
2023-09-19 17:47:59 +08:00
LABEL maintainer="Websoft9<help@websoft9.com>"
2023-09-19 18:03:28 +08:00
LABEL version="2.10.4"
2023-09-19 17:47:59 +08:00
2023-09-19 18:06:43 +08:00
RUN apt-get update && apt-get install -y curl
2023-09-19 17:47:59 +08:00
COPY user.sh /user.sh
COPY initproxy.conf /data/nginx/proxy_host
RUN chmod +x /user.sh
CMD ["/user.sh"]