- Use default laravel nginx and extend it with invoiceninja -specific settings

- Overwrite php.ini/php-fpm.ini settings with customized settings
This commit is contained in:
Benjamin Brummer
2024-11-28 14:04:11 +01:00
parent 687e74c983
commit b83fb831b9
8 changed files with 46 additions and 86 deletions

View File

@@ -13,8 +13,10 @@ services:
env_file:
- ./.env
volumes:
- ./.env:/var/www/html/.env
- ./supervisor/supervisord.conf:/etc/supervisor/conf.d/supervisord.conf
- ./.env:/var/www/html/.env:ro
- ./php/php.ini:/usr/local/etc/php/conf.d/zzz-php.ini:ro
- ./php/php-fpm.conf:/usr/local/etc/php-fpm.d/zzz-php-fpm.conf:ro
- ./supervisor/supervisord.conf:/etc/supervisor/conf.d/supervisord.conf:ro
- app_storage:/var/www/html/storage
- app_cache:/var/www/html/bootstrap/cache
- image_public:/var/www/html/public:ro
@@ -33,8 +35,7 @@ services:
ports:
- "80:80"
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d:ro
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- ./nginx:/etc/nginx/nginx.conf:ro
- app_storage:/var/www/html/storage:ro
- image_public:/var/www/html/public:ro
networks: