wglambert

Results 40 comments of wglambert

Can you do a `docker-compose down -v`, then test using this `docker-compose.yml` (it has an added `restart: unless-stopped` on the mongo-express container) Then doing a `docker-compose up -d`, and after...

Could just be an intermittent issue, I'm not able to reproduce ```console $ docker pull wordpress:6.1.0-php8.0-apache 6.1.0-php8.0-apache: Pulling from library/wordpress a603fa5e3b41: Pull complete c428f1a49423: Pull complete 156740b07ef8: Pull complete fb5a4c8af82f:...

Is this a duplicate of https://github.com/docker-library/mongo/issues/339? https://github.com/docker-library/mongo/issues/339#issuecomment-485578503 The `docker-entrypoint-initdb.d` scripts run during an initialization period (and only if the database is empty), during which the container is only listening on...

You can use the standard [`--user`](https://docs.docker.com/engine/reference/run/#user) way of running as an arbitrary user https://github.com/docker-library/mongo/issues/315#issuecomment-439981173 ```console $ mkdir db && sudo chown 777 db $ docker run --rm -dit -v $PWD/db:/data/db...

Other discussions on removing inherent volumes in images https://github.com/docker-library/mongo/issues/306, https://github.com/docker-library/redis/issues/140, https://github.com/docker-library/postgres/issues/404, https://github.com/docker-library/mysql/issues/255 https://github.com/docker-library/cassandra/issues/180#issuecomment-497862906 >While I agree it's unfortunate Docker doesn't have a feature to disable inherited volumes, I really hesitate...

Same issue as https://github.com/docker-library/cassandra/issues/174, it wasn't able to be reproduced and when he used Ubuntu there wasn't an issue You could try Docker's memory limit flag `-m 3.5G` https://docs.docker.com/config/containers/resource_constraints/#limit-a-containers-access-to-memory

Other discussions on removing inherent volumes in images https://github.com/docker-library/mongo/issues/306, https://github.com/docker-library/redis/issues/140, https://github.com/docker-library/postgres/issues/404, https://github.com/docker-library/mysql/issues/255

Those CVE's are related to `lua` https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-33099 >An issue in the component luaG_runerror of Lua v5.4.4 and below leads to a heap-buffer overflow when a recursive error occurs. https://nvd.nist.gov/vuln/detail/CVE-2022-28805 >singlevar...

Ah my mistake. Yeah it seems that Redis desires Lua 5.1 compatibility so even if they decide to use Lua 5.4 it would still require 5.1 as well, which in...

I would say the best security practice for redis is to not expose it publicly, only have it be accessible from intranet containers https://github.com/docker-library/docs/tree/master/redis#security. Doing so would also heavily curb...