Exit Code 0Docker Exit Code 0
container प्रक्रिया बिना किसी त्रुटि के सफलतापूर्वक समाप्त हुई।
Exit Code 126container की कमांड मिली लेकिन उसे execute नहीं किया जा सका।
CMD या ENTRYPOINT में निर्दिष्ट binary मौजूद है लेकिन executable नहीं है। यह सामान्यतः गलत file permissions, script में shebang line का अभाव, या किसी भिन्न architecture के लिए compile की गई binary के कारण होता है।
फ़ाइल को executable बनाएँ: RUN chmod +x /app/entrypoint.sh। scripts में shebang line जोड़ें (#!/bin/sh)। सत्यापित करें कि binary container की architecture (amd64 vs arm64) से मेल खाती है।
Exit Code 0container प्रक्रिया बिना किसी त्रुटि के सफलतापूर्वक समाप्त हुई।
Error: service dependency failed to startजिस service पर कोई अन्य service निर्भर है, वह प्रारंभ होने में विफल रही।
Error: Pool overlaps with other networkनए Docker नेटवर्क की IP एड्रेस रेंज किसी मौजूदा नेटवर्क से टकराती है।
Error: read-only file systemकंटेनर के फ़ाइल सिस्टम में लिखने का प्रयास विफल रहा क्योंकि वह read-only माउंट किया गया है।
Error: no space left on deviceDocker host पर डिस्क स्थान समाप्त हो गया है।
Error: port is already allocatedजिस host port को आप bind करने का प्रयास कर रहे हैं वह किसी अन्य प्रक्रिया या container द्वारा पहले से उपयोग में है।