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-21 10:45:37 +08:00
|
|
|
RUN apt-get update && apt-get install -y curl supervisor jq
|
2023-09-21 10:20:02 +08:00
|
|
|
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
COPY config/user.sh /user.sh
|
|
|
|
COPY config/entrypoint.sh /entrypoint.sh
|
2023-09-21 10:45:37 +08:00
|
|
|
COPY ./config/initproxy.conf /data/nginx/proxy_host/
|
2023-09-21 10:20:02 +08:00
|
|
|
RUN chmod +x /user.sh /entrypoint.sh
|
2023-09-21 11:19:35 +08:00
|
|
|
ENTRYPOINT ["/init", "&&", "/user.sh"]
|