30 lines
955 B
Docker
30 lines
955 B
Docker
|
FROM uozi/nginx-ui-base:latest
|
||
|
ARG TARGETOS
|
||
|
ARG TARGETARCH
|
||
|
ARG TARGETVARIANT
|
||
|
EXPOSE 80 443
|
||
|
|
||
|
ENV NGINX_UI_OFFICIAL_DOCKER=true
|
||
|
|
||
|
# register nginx-ui service
|
||
|
COPY resources/docker/nginx-ui.run /etc/s6-overlay/s6-rc.d/nginx-ui/run
|
||
|
RUN echo 'longrun' > /etc/s6-overlay/s6-rc.d/nginx-ui/type && \
|
||
|
touch /etc/s6-overlay/s6-rc.d/user/contents.d/nginx-ui
|
||
|
|
||
|
# copy nginx config
|
||
|
COPY resources/docker/nginx.conf /usr/local/etc/nginx/nginx.conf
|
||
|
COPY resources/docker/nginx-ui.conf /usr/local/etc/nginx/conf.d/nginx-ui.conf
|
||
|
|
||
|
# copy nginx-ui executable binary
|
||
|
COPY nginx-ui-$TARGETOS-$TARGETARCH$TARGETVARIANT/nginx-ui /usr/local/bin/nginx-ui
|
||
|
|
||
|
# remove default nginx config
|
||
|
RUN rm -f /etc/nginx/conf.d/default.conf \
|
||
|
&& rm -f /usr/local/etc/nginx/conf.d/default.conf
|
||
|
|
||
|
# recreate access.log and error.log
|
||
|
RUN rm -f /var/log/nginx/access.log && \
|
||
|
touch /var/log/nginx/access.log && \
|
||
|
rm -f /var/log/nginx/error.log && \
|
||
|
touch /var/log/nginx/error.log
|