moved logging-conf into docker image

master
sephger 2024-02-11 13:43:38 +01:00
parent 01d61c602f
commit 522cb63f5e
2 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,6 @@ services:
context: .
volumes:
- 'webdata:/var/www/html'
- './php-logging.conf:/usr/local/etc/php-fpm.d/zz-log.conf'
depends_on:
- mariadb

View File

@ -1,4 +1,5 @@
FROM php:8.1-fpm
ADD php-logging.conf /usr/local/etc/php-fpm.d/zz-log.conf
# Installing dependencies for the PHP modules
RUN apt-get update && \