Error: image prune already in progressError: image prune पहले से चल रहा है
Docker image prune ऑपरेशन पहले से चल रहा है।
Error: target stage not found in Dockerfileनिर्दिष्ट बिल्ड target Dockerfile के किसी स्टेज नाम से मेल नहीं खाता।
आपने docker build के साथ --target उपयोग किया, लेकिन निर्दिष्ट स्टेज नाम Dockerfile में मौजूद नहीं है। नाम गलत लिखा गया हो या Dockerfile बदल गई हो।
स्टेज नामों के लिए Dockerfile जांचें (FROM ... AS stage-name)। सत्यापित करें कि --target का मान किसी स्टेज नाम से बिल्कुल मेल खाता हो (case-sensitive)। स्टेज सूचीबद्ध करें: grep 'FROM.*AS' Dockerfile।
Error: image prune already in progressDocker image prune ऑपरेशन पहले से चल रहा है।
Exit Code 126container की कमांड मिली लेकिन उसे execute नहीं किया जा सका।
Error: ENTRYPOINT not foundइमेज में निर्दिष्ट entrypoint बाइनरी या स्क्रिप्ट मौजूद नहीं है।
Error: dial tcp: lookup registry-1.docker.io: no such hostDocker images pull या push करने के लिए container registry तक नहीं पहुँच सकता।
Error: no such device--device से निर्दिष्ट डिवाइस होस्ट पर मौजूद नहीं है।
Exit Code 130container को Ctrl+C (SIGINT, signal 2) द्वारा समाप्त किया गया।