You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently, the image docker:24.0.7 advanced from sha256:ca9a56ffc0339a72cbf2beb7650f4423258f405520dcc7ac9af4858cfdc09fce to sha256:63897b20cb7da770f94301070dafc902f43cacee189c71c15f6a21e7caeecda1.
The following docker-compose.yaml file worked in the former release and fails in the latter release
[+] Running 1/0
✔ Container app-postgres-1 Created 0.1s
Attaching to postgres-1
postgres-1 | The files belonging to this database system will be owned by user "postgres".
postgres-1 | This user must also own the server process.
...
After tracking down the progress on StartInterval in moby/moby#45897, it's clear that Docker 25.0 will indeed be the first version to properly support the new option.
For me, what was happening is that start_interval wasn't supported by docker compose prior to v2.24, but the old version would silently ignore it. With compose version 2.24, the new option is supported, but with throw an error if using a Docker Engine that doesn't support it.
I think this isn't technically a bug. It was really unexpected that upgrading docker compose broke my builds, but technically, I was trying to do something that wasn't supported anyway.
Recently, the image
docker:24.0.7
advanced fromsha256:ca9a56ffc0339a72cbf2beb7650f4423258f405520dcc7ac9af4858cfdc09fce
tosha256:63897b20cb7da770f94301070dafc902f43cacee189c71c15f6a21e7caeecda1
.The following
docker-compose.yaml
file worked in the former release and fails in the latter releaseThe error message from
docker compose up
isFull command
Returns
New release
Returns
buildx
andcompose
were both upgraded recentlydocker:24.0.7
, so the regression might actually be in one of those projects.Since I'm bind-mounting my docker socket from the host,
docker --version
on the host returnsThe text was updated successfully, but these errors were encountered: