Stephan Müller
Stephan Müller
Here is a command to reproduce this behavior: ``` » docker run --rm -it --user www-data nextcloud:fpm-alpine sh /var/www/html $ NEXTCLOUD_ADMIN_USER=admin NEXTCLOUD_ADMIN_PASSWORD=admin NEXTCLOUD_UPDATE=1 REDIS_HOST=localhost /entrypoint.sh sh -c 'echo $?' Configuring...
I know changing the permissions is kind of a security issue. But running the image as root is even more. What definitely does not work: 1. Writing configuration in `.user.ini`...
@J0WI I prefer 3 over 2 because if redis host is not set, there is a file called `redis-session.ini` which might irritate users. Best practices of writing Docker images says...
> The web server already runs as a non-root user (www-data) by default. I can't verify that, have a look at the commands: - FPM ``` » docker run --rm...
I was not aware of that in https://github.com/docker-library/php/pull/787 the permissions of folder `/var/www/html` were set to `777`. So yes, every user can be used to run the php-fpm image. I...
We are also interested in having an option to customize the Uvicorn logging. @LasseGravesenSaxo why did you choose a plain environment variable? For me, it would make a lot more...
@dokterbob The option for mounting chainlit in a custom FastAPI app was a really nice feature and we migrated to. So for us, there is no need for this specific...
@patrick246 I had the same question. I found a way to inject secrets before the tests are executed. The trick is to set the `ManifestPath` to a `yaml` file (a...