Laurent Goderre
Laurent Goderre
Maybe we need to append the docs about building native deps to document this
PR to update the docs: #2099
From what I can find, it could be that something is sending a signal to apache to restart and then the shutdown is experiencing some issue. https://stackoverflow.com/a/76049084 https://stackoverflow.com/a/35212026
Some of this is discussed in #920
Usually certificates in Kubernetes are stored as secret and can easily be mounted to the desired location which removes the need for this.
It seems like error 137 is commonly associated with running out of memory so maybe you need bigger instances or you need to configure memcache to use less memory. https://hub.docker.com/_/memcached
See https://github.com/docker-library/postgres/issues/337
Buildkit (with docker-container driver) only wants to download images and refuse to use local images
Another thing you could do is run a registry container locally to allow storing images for the build kit container and use `host.docler.internal:5000` so both communicate seamlessly
To make it less confusing, you could use: ```yaml redmine_db: ports: - '${MYSQL_HOST_PORT}' environment: MYSQL_TCP_PORT: ${MYSQL_HOST_PORT} ``` This would keep the port consistent inside and outside of the container space.
Your problem is because you are trying to use both env var and a config file and they are conflicting. This block here doesn't have the port https://github.com/nillander/Redmine/blob/main/Docker/pma/config.inc.php#L37 Adding this...