Replies: 1 comment
-
|
The .env file is not injected into the container environment. Only the individual config values as used in the env substitution patterns in the compose files. This is by design to prevent arbitrary unsupported settings. You can put yml file in the custom folder to overload services with your custom config. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I did a fresh install with the default stack + collabora + traefik.
Some of my newer photos ended up being not displayable, after some digging i found in the container logs "thumbnails: image is too large" logged by the thumbnailer service. So far so good, problem found, indeed my photo dimensions were above the permitted range according to defaults https://docs.opencloud.eu/docs/dev/server/services/thumbnails/environment-variables.
THUMBNAILS_MAX_INPUT_IMAGE_FILE_SIZE=50MB
THUMBNAILS_MAX_INPUT_WIDTH=12000
THUMBNAILS_MAX_INPUT_HEIGHT=6000
THUMBNAILS_MAX_INPUT_IMAGE_FILE_SIZE: "${THUMBNAILS_MAX_INPUT_IMAGE_FILE_SIZE}"
THUMBNAILS_MAX_INPUT_WIDTH: "${THUMBNAILS_MAX_INPUT_WIDTH}"
THUMBNAILS_MAX_INPUT_HEIGHT: "${THUMBNAILS_MAX_INPUT_HEIGHT}"
Considerations:
All done on OpenCloud 5.1.0 rolling docker image
Beta Was this translation helpful? Give feedback.
All reactions