I am using docker compose to build a network of images that communicate and work with eachother. I've noticed that, if for some reason there's a failure to build an image out of one of the services, and docker-compose displays an error message, the entire CLI just seems to hang and becomes uncancellable. The Building timer continues to roll, but the CLI seems to completely ignore SIGINT's.
The only way for me to resolve this issue is by opening up my MacOS Activity Monitor and force killing the docker-compose task
Run on MacOS 13.4.1
I have Virtualization Framework, VirtioFS, Rosetta, and containerd enabled
Here's my docker-compose.yml. functions here is a Node Alpine image that has some Typescript compilation code and NPM install. Let one of these fail, say a failure in tsc -> that leads to the entire docker compose CLI freezing up.
Description
I am using
docker compose
to build a network of images that communicate and work with eachother. I've noticed that, if for some reason there's a failure to build an image out of one of the services, anddocker-compose
displays an error message, the entire CLI just seems to hang and becomes uncancellable. TheBuilding
timer continues to roll, but the CLI seems to completely ignore SIGINT's.The only way for me to resolve this issue is by opening up my MacOS Activity Monitor and force killing the
docker-compose
taskSteps To Reproduce
Run on MacOS 13.4.1 I have Virtualization Framework, VirtioFS, Rosetta, and containerd enabled
Here's my
docker-compose.yml
.functions
here is a Node Alpine image that has some Typescript compilation code and NPM install. Let one of these fail, say a failure intsc
-> that leads to the entire docker compose CLI freezing up.Compose Version
Docker Environment
Anything else?
No response