Emanuel Aguirre

Results 4 comments of Emanuel Aguirre

**Hi @DarkGhostHunter, I’m having trouble getting this setup to work.** Here’s my docker-compose.yml setup: ``` services: php: build: context: . dockerfile: Dockerfile image: php_una environment: APACHE_DOCUMENT_ROOT: "/var/www/html" PHP_FPM_POOL_NAME: "php_una" ports:...

yes, thank you > I believe the image must change the cron permissions to be able to run. > > Can you try adding this before the `USER www-data` line?...

@DarkGhostHunter Thanks for the suggestion! I initially thought that modifying cron’s permissions with: ```bash chmod gu+s /usr/sbin/cron chmod gu+rw /var/run ``` would allow www-data to run cron, and while this...