mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 10:17:15 +08:00
10 lines
240 B
Docker
10 lines
240 B
Docker
|
FROM jc21/nginx-proxy-manager:2.10.3
|
||
|
|
||
|
LABEL maintainer="Websoft9<help@websoft9.com>"
|
||
|
LABEL version="2.10.3"
|
||
|
|
||
|
RUN apk add --no-cache curl
|
||
|
COPY user.sh /user.sh
|
||
|
COPY initproxy.conf /data/nginx/proxy_host
|
||
|
RUN chmod +x /user.sh
|
||
|
CMD ["/user.sh"]
|