yosifkit
yosifkit
Currently, most packages are as up-to-date as they can be. Any that are not will be updated next time we do a `debian` base image update. The update is likely...
@ltangvald I think the content looks ok to me (though it will need to be in `content.md` rather than `README.md` for a PR). :+1:
Seems to be related to these issues: https://github.com/docker-library/mariadb/issues/183 and https://github.com/docker-library/mysql/issues/571 While this is one possible way to handle "bad" characters and is targeted at fixing the "Option File" created by...
I just use a series of alias's and periodically cleanup stopped containers, unused volumes, and dangling images. ```bash alias dclean='docker ps -aq | xargs --no-run-if-empty docker rm' alias dcleanvol="docker volume...
I feel like removing the volume would break many users that rely on the volume when using docker-compose. Compose tries hard to keep the volume between restarts of the container...
The entrypoint script just passes the `.sql` file contents to the mysql client, so seems it could be related to this old bug: https://bugs.mysql.com/bug.php?id=11523. https://github.com/docker-library/mysql/blob/d9fecf6b0bd4f4072a6e1e590ec811167aab2fab/template/docker-entrypoint.sh#L72 https://github.com/docker-library/mysql/blob/d9fecf6b0bd4f4072a6e1e590ec811167aab2fab/template/docker-entrypoint.sh#L217 `\d` works though. ```console...
@baj1210, that quote does not seem correct. Docker does not intercept memory allocations. That is provided by whatever libc is in the image (and any container limits are enforced by...
> https://github.com/docker-library/ruby/pull/198#issuecomment-431638495 We're still hesitant to add this to the image without a recommendation by Ruby upstream. In the meantime, you can trivially add support in your own Dockerfile without...
Not sure if there are still issues with running Ruby/jemallloc on Alpine (the `LD_PRELOAD` hackery could be used to test it), but the new problem with Alpine is that they...
`--privileged` worked? then I'd guess that it is likely a seccomp denial similar to https://github.com/nodejs/docker-node/issues/1931, and https://github.com/nodejs/docker-node/issues/1932, and so https://github.com/docker-library/python/issues/837#issuecomment-1599640563 has some ideas for a temporary workaround (try `--security-opt seccomp=unconfined`),...