Hacktoberfest 2026: le issue che i maintainer hanno segnato per ottobre, aperte e adatte ai principianti. Sfoglia le issue Hacktoberfest

When new users run docker run … in the tutorial and Docker Desktop isn’t running, they just get cryptic errors.

Aperta
#464 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Valutazione

Difficoltà
3/5
Tempo stimato
1-2 giorni
Idoneità per principianti
55/100
Tipo di issue
Funzionalità
Chiarezza
Abbastanza chiara
Stato di attività
Ferma
Stack tecnologico
bash, docker, powershell

Direzione di ricerca

Review the Docker tutorial step that runs docker run and the scripts/ folder first. Add Bash and PowerShell checks with helpful startup guidance, then mention both scripts in the tutorial and verify the messages when Docker is unavailable and available.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Descrizione

Add a small script (in Bash for Linux/macOS and PowerShell for Windows) that:

Checks if Docker is running

Prints a friendly message if it’s not

Suggests how to start it

Example (Bash):

bash
Copy
Edit
#!/bin/bash
if ! docker info > /dev/null 2>&1; then
echo "❌ Docker is not running."
echo "Please start Docker Desktop and try again."
exit 1
fi
echo "✅ Docker is running fine!"
This could live in a scripts/ folder and be mentioned in the tutorial.

Lingua principale
JavaScript
Stelle
3.1k
Fork
6.4k
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Altre issue di docker/getting-started

Tutte le issue di docker/getting-started

Issue simili

Altre issue su JavaScript

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.