I have a simple Issue with Docker-compose, But Its a random issue.
I have a docker-compose.YAML for spring services, When I update the service and want to check the update, I build a new image to docker daemon with google jib, and I use docker-compose up --force-recreate to get the new updates.
The issue is, most of the time with --force-recreate I will have an error ERROR: for serviceName b'i/o timeout'
So I docker-compose down Then docker-compose up --build which will have the same effect
as docker-compose up --force-recreate according to my simple understanding of docker, but when I do this down up, I have no issue, Any idea what might be the issue for this case?