Update compose to use new custom nginx infrastructure

This commit is contained in:
Ethan Paul 2024-04-10 19:11:09 -04:00
parent 2ae4390f93
commit d98b8fc065
Signed by: enpaul
GPG Key ID: 9B6D99E4CFA31867
1 changed files with 5 additions and 2 deletions

View File

@ -3,14 +3,17 @@ services:
nginx:
container_name: nginx-nextcloud
image: nginx:latest
build: ./nginx
ports:
- 80:80
- 443:443
volumes:
- ${NEXTCLOUD_DIR}:/var/www/html
- ${DATA_DIR}:/data
- ./nginx.conf:/etc/nginx/nginx.conf:ro
environment:
- NEXTCLOUD_PHP_FPM_HOST=${NEXTCLOUD_PHP_FPM_HOST}
- NEXTCLOUD_DOMAIN=${NEXTCLOUD_DOMAIN}
- NEXTCLOUD_MAX_UPLOAD_SIZE=${NEXTCLOUD_MAX_UPLOAD_SIZE}
networks:
- nextcloud
depends_on: