yosifkit

Results 314 comments of yosifkit

I think so, GCC 8 is what is in Debian Buster and it only goes to `GLIBCXX_3.4.25`. It is still weird that the other architectures are not affected. If GCC...

You could try using `mysql:8.4-oraclelinux8` So, it could also be related to #1058 (https://github.com/docker-library/mysql/issues/1058#issuecomment-2105000516). --- I think you can gain access with [`--skip-grant-tables`](https://dev.mysql.com/doc/refman/8.0/en/server-options.html#option_mysqld_skip-grant-tables) and then `docker exec` into the container...

I think you need to set the `allowLinking` attribute somewhere in the xml config files: https://tomcat.apache.org/tomcat-9.0-doc/config/resources.html

> best way a different container can detect the end of startup. When using the provided `docker-entrypoint.sh` and not modifying the temporary `postgresql` server it runs during initialization, if the...

> Alpine doesn't seem to use that path structure for its PostgreSQL packages though? It does seem to use the same paths as [noted by a user](https://beune.dev/posts/upgrade-alpine-postgresql/) and when I...

Drawback of this proposal is that if a user runs a new major PostgreSQL version without upgrading (like `17.x` to `18.x`), then they will just have a running empty database...

> With 18 now in pre-release (https://github.com/docker-library/postgres/pull/1344), this is probably worth updating / considering again. Let's do it. We haven't released an 18 yet and can rebase this once that...

It seems like `initdb` doesn't really support data directory in this way since it wants to do the full "init" (copying `postgresql.conf.sample` and creating `pg_hba.conf`). It doesn't even read `data_directory`...

It looks like this is a limitation of `initdb`. It is not designed to handle config coming from a different directory since it is trying to create the initial config;...

I'm fairly certain this is caused by the issue in https://github.com/docker-library/mysql/issues/1069; In other words, newer buildkit changed permissions on the `COPY`d config files, so MySQL refuses to use them. Edit:...