From ecd1817a9558e11d0b0e4cc0efcca728adfbd951 Mon Sep 17 00:00:00 2001 From: Leonardo Amaral Date: Sat, 6 Apr 2019 17:19:46 -0300 Subject: [PATCH] * Initial ARM support. Based on https://github.com/leleobhz/rpi-nginx-proxy and https://github.com/lroguet/rpi-nginx-proxy --- Dockerfile.arm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Dockerfile.arm diff --git a/Dockerfile.arm b/Dockerfile.arm new file mode 100644 index 0000000..68805b7 --- /dev/null +++ b/Dockerfile.arm @@ -0,0 +1,38 @@ +FROM nginx:mainline-alpine +LABEL authors="Ludovic Roguet " +LABEL maintainer="Leonardo Amaral " + +# Install wget and install/updates certificates +RUN apk add --no-cache --virtual .run-deps \ + ca-certificates bash wget openssl \ + && update-ca-certificates + +# Configure Nginx and apply fix for very long server names +RUN echo "daemon off;" >> /etc/nginx/nginx.conf \ + && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf + +# Install Forego +RUN wget https://bin.equinox.io/c/ekMN3bCZFUn/forego-stable-linux-arm.tgz \ + && tar -C /usr/local/bin -xvzf forego-stable-linux-arm.tgz \ + && chmod a+x /usr/local/bin/forego \ + && rm /forego-stable-linux-arm.tgz + +ENV DOCKER_GEN_VERSION 0.7.4 + +# Install docker-gen + +RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-armhf-$DOCKER_GEN_VERSION.tar.gz \ + && tar -C /usr/local/bin -xvzf docker-gen-linux-armhf-$DOCKER_GEN_VERSION.tar.gz \ + && rm /docker-gen-linux-armhf-$DOCKER_GEN_VERSION.tar.gz + +COPY network_internal.conf /etc/nginx/ + +COPY . /app/ +WORKDIR /app/ + +ENV DOCKER_HOST unix:///tmp/docker.sock + +VOLUME ["/etc/nginx/certs", "/etc/nginx/dhparam"] + +ENTRYPOINT ["/app/docker-entrypoint.sh"] +CMD ["forego", "start", "-r"]