move stable to own branch
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Daniel Wolf 2021-04-26 22:06:02 -04:00
parent bf8a1a0d4d
commit ee3bb42a4c
Signed by: nephatrine
GPG Key ID: F402AF4822FB01F5
3 changed files with 12 additions and 95 deletions

View File

@ -8,20 +8,23 @@ platform:
arch: amd64
steps:
- name: build-table
- name: build-mainline
commands:
- docker build --pull -t pdr.nephatrine.net/nephatrine/nginx-ssl:stable -f Dockerfile-stable .
- HOME=/mnt/config/home docker push pdr.nephatrine.net/nephatrine/nginx-ssl:stable
- docker tag pdr.nephatrine.net/nephatrine/nginx-ssl:stable nephatrine/nginx-ssl:stable
- HOME=/mnt/config/home docker push nephatrine/nginx-ssl:stable
- docker rmi pdr.nephatrine.net/nephatrine/nginx-ssl:stable
- docker build --pull -t pdr.nephatrine.net/nephatrine/nginx-ssl:mainline .
- HOME=/mnt/config/home docker push pdr.nephatrine.net/nephatrine/nginx-ssl:mainline
- docker tag pdr.nephatrine.net/nephatrine/nginx-ssl:mainline nephatrine/nginx-ssl:mainline
- HOME=/mnt/config/home docker push nephatrine/nginx-ssl:mainline
- docker rmi pdr.nephatrine.net/nephatrine/nginx-ssl:mainline
- name: build-latest
commands:
- docker tag nephatrine/nginx-ssl:mainline pdr.nephatrine.net/nephatrine/nginx-ssl:latest
- docker build --pull -t pdr.nephatrine.net/nephatrine/nginx-ssl:latest .
- HOME=/mnt/config/home docker push pdr.nephatrine.net/nephatrine/nginx-ssl:latest
- docker tag pdr.nephatrine.net/nephatrine/nginx-ssl:latest nephatrine/nginx-ssl:latest
- HOME=/mnt/config/home docker push nephatrine/nginx-ssl:latest
- docker rmi pdr.nephatrine.net/nephatrine/nginx-ssl:latest
depends_on:
- build-mainline
---
kind: pipeline
@ -31,7 +34,7 @@ steps:
- name: notify
image: appleboy/drone-discord
settings:
avatar_url: https://files.nephatrine.net/Images/Buttons/Drone.png
avatar_url: https://nephatrine.net/images/buttons/drone-ci.png
message: "Automated build of **{{repo.name}}:{{commit.branch}}** has returned [{{build.status}}]({{build.link}})."
username: DroneCI
webhook_id:
@ -49,6 +52,6 @@ trigger:
---
kind: signature
hmac: 81393e18146a36f9c49d749cc8afcb1dd7d3ed0c50c2ff4e060b71739d7efb86
hmac: adadb0bd9a07d0510e6ace6433267dda05bdcd4c196625e314d5b5693aabdb28
...

View File

@ -1,85 +0,0 @@
FROM nephatrine/alpine-s6:latest
LABEL maintainer="Daniel Wolf <nephatrine@gmail.com>"
RUN echo "====== INSTALL PACKAGES ======" \
&& apk add certbot geoip libgd libxslt pcre py3-pip \
&& pip install zope.component \
&& rm -rf /var/cache/apk/*
ARG NGINX_VERSION=branches/stable-1.20
RUN echo "====== COMPILE NGINX ======" \
&& apk add --virtual .build-nginx \
build-base \
gd-dev \
geoip-dev \
git \
libatomic_ops-dev \
libressl-dev \
libxml2-dev \
libxslt-dev \
linux-headers \
pcre-dev \
zlib-dev \
&& cd /usr/src \
&& git clone https://github.com/nginx/nginx.git \
&& cd nginx \
&& git fetch && git fetch --tags \
&& git checkout "$NGINX_VERSION" \
&& ./auto/configure \
--prefix=/var/www \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib/nginx/modules \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--user=guardian \
--group=users \
--with-threads \
--with-file-aio \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_xslt_module=dynamic \
--with-http_image_filter_module=dynamic \
--with-http_geoip_module=dynamic \
--with-http_sub_module \
--with-http_dav_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_auth_request_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_slice_module \
--http-log-path=/var/log/nginx/access.log \
--http-client-body-temp-path=/var/cache/nginx/client_body \
--http-proxy-temp-path=/var/cache/nginx/proxy \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi \
--http-scgi-temp-path=/var/cache/nginx/scgi \
--with-mail=dynamic \
--with-mail_ssl_module \
--with-stream=dynamic \
--with-stream_ssl_module \
--with-stream_realip_module \
--with-stream_geoip_module=dynamic \
--with-stream_ssl_preread_module \
--with-compat \
--with-pcre \
--with-pcre-jit \
--with-libatomic \
&& make -j4 \
&& make install \
&& strip /usr/sbin/nginx \
&& strip /usr/lib/nginx/modules/*.so \
&& cd /usr/src && rm -rf /usr/src/* \
&& apk del --purge .build-nginx && rm -rf /var/cache/apk/*
RUN echo "====== CONFIGURE SYSTEM ======" \
&& mkdir -p /var/cache/nginx
COPY override /
EXPOSE 80/tcp 443/tcp

View File

@ -24,8 +24,7 @@ PHP or MySQL are not included.
## Docker Tags
- **nephatrine/nginx-ssl:testing**: NGINX Master
- **nephatrine/nginx-ssl:latest**: NGINX Mainline (v.1.21)
- **nephatrine/nginx-ssl:mainline**: NGINX Mainline (v.1.21)
- **nephatrine/nginx-ssl:stable**: NGINX Stable (v1.20)
## Configuration Variables