Laurent Goderre
Laurent Goderre
The problem is not with the image but with how the container is created/runs. The package expects a window system (X11) which needs to be defined when the container is...
Looks like a duplicate of #1048
I don't think this is related to the version specifically but to #1047 which switched the oraclelinux base from 8 to 9
If you want to keep using oracle linux, you will need to pin to a tag prior to the update such as `mysql:8.4.0-oraclelinux8` (note that the tag will not be...
For greater speed with testcontainer, it would be much faster to run the migration in an image build and store that result in a registry
@arvenil here's an example: ~~https://github.com/LaurentGoderre/image-mount-demo/tree/main/db~~ https://github.com/LaurentGoderre/postgres-init-demo
I think how infrequent and how little change it is, I would vote to not do this. It could prevent cases where the dates change last minute and aren't update...
The fixes for these CVEs have not been backported to the versions of debian used. https://scout.docker.com/vulnerabilities/id/CVE-2024-38475?s=debian&n=apache2&ns=debian&t=deb&osn=debian&osv=12&vr=%3E%3D2.4.59-1~deb12u1&utm_source=hub https://scout.docker.com/vulnerabilities/id/CVE-2024-39573?s=debian&n=apache2&ns=debian&t=deb&osn=debian
The volume has data to get started quickly. If you bind your own folder, it would use that folder instead of the image one
If the entrypoint is all you need, you don't even need to create another image, you can just mount the entrypoint to the base image. ex: ``` docker run --rm...