From 1a9b141d835cf3bfe9bdca67f881b520975f9058 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Tue, 3 Mar 2020 00:29:52 +0100 Subject: Add nginx behind traefik in docker-compose + image updates - support/docker/production/docker-compose.yml: addition of a nginx image reusing support/nginx/peertube nginx conf to improve performance, and lessen setup differences between the docker-compose install and the typical production install. - support/docker/production/docker-compose.yml: postgres 10 -> postgres 12, redis 4 -> redis 5. Postgres major updates implies manual upgrade. - support/nginx/peertube: HTTP -> HTTPS redirection is now commented by default, to allow its reuse in support/docker/production/docker-compose.yml. --- support/docker/production/Dockerfile.buster | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'support/docker/production/Dockerfile.buster') diff --git a/support/docker/production/Dockerfile.buster b/support/docker/production/Dockerfile.buster index 414bf9aac..5af8aa29a 100644 --- a/support/docker/production/Dockerfile.buster +++ b/support/docker/production/Dockerfile.buster @@ -38,8 +38,8 @@ ENV NODE_CONFIG_DIR /config VOLUME /data VOLUME /config -COPY ./support/docker/production/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh -ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] +COPY ./support/docker/production/entrypoint.sh /usr/local/bin/entrypoint.sh +ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] # Run the application CMD ["npm", "start"] -- cgit v1.2.3