2016-07-27 00:19:31 +08:00
|
|
|
FROM nginx:alpine
|
2016-05-06 22:04:02 +08:00
|
|
|
|
2018-03-16 21:09:15 +08:00
|
|
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
2016-05-06 22:04:02 +08:00
|
|
|
|
2018-04-04 20:13:11 +08:00
|
|
|
COPY nginx.conf /etc/nginx/
|
2016-05-06 22:04:02 +08:00
|
|
|
|
2017-11-14 21:01:07 +08:00
|
|
|
# If you're in China, or you need to change sources, will be set CHANGE_SOURCE to true in .env.
|
2016-07-24 10:49:57 +08:00
|
|
|
|
2017-11-14 21:01:07 +08:00
|
|
|
ARG CHANGE_SOURCE=false
|
|
|
|
RUN if [ ${CHANGE_SOURCE} = true ]; then \
|
|
|
|
# Change application source from dl-cdn.alpinelinux.org to aliyun source
|
2018-01-04 13:53:01 +08:00
|
|
|
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories \
|
2017-11-14 21:01:07 +08:00
|
|
|
;fi
|
2017-02-15 10:20:18 +08:00
|
|
|
|
2016-07-27 01:41:52 +08:00
|
|
|
RUN apk update \
|
|
|
|
&& apk upgrade \
|
2019-05-18 10:54:45 +08:00
|
|
|
&& apk --update add logrotate \
|
2018-11-13 20:44:51 +08:00
|
|
|
&& apk add --no-cache openssl \
|
2019-06-06 12:25:25 +08:00
|
|
|
&& apk add --no-cache bash
|
2017-08-04 05:50:20 +08:00
|
|
|
|
2019-06-06 13:02:45 +08:00
|
|
|
RUN set -x ; \
|
|
|
|
addgroup -g 82 -S www-data ; \
|
|
|
|
adduser -u 82 -D -S -G www-data www-data && exit 0 ; exit 1
|
|
|
|
|
2017-11-14 21:01:07 +08:00
|
|
|
ARG PHP_UPSTREAM_CONTAINER=php-fpm
|
|
|
|
ARG PHP_UPSTREAM_PORT=9000
|
|
|
|
|
2019-05-18 10:54:45 +08:00
|
|
|
# Create 'messages' file used from 'logrotate'
|
|
|
|
RUN touch /var/log/messages
|
|
|
|
|
|
|
|
# Copy 'logrotate' config file
|
|
|
|
COPY logrotate/nginx /etc/logrotate.d/
|
|
|
|
|
2017-08-04 05:50:20 +08:00
|
|
|
# Set upstream conf and remove the default conf
|
|
|
|
RUN echo "upstream php-upstream { server ${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" > /etc/nginx/conf.d/upstream.conf \
|
|
|
|
&& rm /etc/nginx/conf.d/default.conf
|
2016-05-06 22:04:02 +08:00
|
|
|
|
2018-11-13 20:44:51 +08:00
|
|
|
ADD ./startup.sh /opt/startup.sh
|
2019-01-08 15:24:32 +08:00
|
|
|
RUN sed -i 's/\r//g' /opt/startup.sh
|
2018-11-13 20:44:51 +08:00
|
|
|
CMD ["/bin/bash", "/opt/startup.sh"]
|
2016-05-06 22:04:02 +08:00
|
|
|
|
|
|
|
EXPOSE 80 443
|