yosifkit
yosifkit
```dockerfile CMD ["/bin/bash", "-c", "tail -f /var/logs/some/error.log & php-fpm"] ``` I would strongly suggest caution before using this. This leaves `bash` as a resident process and so any signal (like...
> 2023-11-02T08:10:26.681026Z 0 [ERROR] [MY-010250] [Server] Failed to create a socket for IPv4 '0.0.0.0': errno: 13. > 2023-11-02T08:10:26.681283Z 0 [ERROR] [MY-010255] [Server] Can't create IP socket: Permission denied Not sure...
Can you share some representative part of the `sql` files? Just some guesses at debugging: If the separate scripts don't each start with a `USE`, then they will be using...
I don't think it is actually stuck; it is just no longer logging to stdout becuase it was told to log to a file: `log_error = /var/log/mysql/mysql_error.log`. If you check...
1. it doesn't make sense to try to add an admin user/pass to a shard server, since they don't store the `admin` database (that's on the config server). It also...
Finally have a PR to address the `configsvr` half of this issue: https://github.com/docker-library/mongo/pull/600.
If the user is providing or relying on the scripts in `/docker-entrypoint.d/` but not also providing the place they are expected to write as writeable, then the image shouldn't just...
In that case, wouldn't the simplest solution be to just skip the entrypoint altogether since it isn't providing anything except running the default command? This one fails since it can't...
Perhaps also https://github.com/docker-library/postgres/issues/451#issuecomment-447472044 and other comments there.
I guess that this is likely due to seccomp -- so, need to update Docker, `runc`, and `libseccomp` on your host. You can verify that it is `libseccomp` by temporarily...