Add dockerfile for building custom nginx container

Add entrypoint that calls envsubst ahead of starting nginx
This commit is contained in:
2024-04-10 19:06:45 -04:00
parent c39cd210f8
commit 2ae4390f93
2 changed files with 26 additions and 0 deletions

10
nginx/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM docker.io/library/nginx:latest
ENV NEXTCLOUD_DOMAIN=example.com
ENV NEXTCLOUD_PHP_FPM_HOST=php-fpm-nextcloud:9000
ENV NEXTCLOUD_MAX_UPLOAD_SIZE=512M
ADD nginx.conf.template /nginx.conf.template
ADD docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["sh", "-c", "/docker-entrypoint.sh"]