hello,
i’m using latest nextcloud-aio-docker. a very long time ago i configured upload size and timeout values.
but now, i can’t find which file i edited that time. i’m going to be insane since every google search and topic says assign env variable in docker compose. but i don’t want to edit my compose, i just need to increase php memory limit. i need to find that file but no chance. here’s my compose if you are interested:
services:
nextcloud-aio-mastercontainer:
image: nextcloud/all-in-one:latest
container_name: nextcloud-aio-mastercontainer
restart: always
init: true
ports:
- “8080:8080”
- “8443:8443”
environment:
APACHE_PORT: “777”
SKIP_DOMAIN_VALIDATION: “true”
NEXTCLOUD_DATADIR: “/mnt/redacted/nextcloud”
volumes:
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
nextcloud_aio_mastercontainer:
external: true
