This commit is contained in:
2025-11-04 10:17:37 -08:00
parent e922a939f5
commit 1a19f799bd
4 changed files with 14 additions and 18 deletions

View File

@@ -23,11 +23,11 @@ docker-compose up -d
echo ""
echo "✅ Registry is running!"
echo "📊 Web UI: http://localhost:8080"
echo "🔌 Registry API: http://localhost:5000"
echo "📊 Web UI: http://your-domain"
echo "🔌 Registry API: http://your-domain:5000"
echo ""
echo "💡 To push an image:"
echo " docker tag myimage localhost:5000/myimage"
echo " docker push localhost:5000/myimage"
echo " docker tag myimage your-domain:5000/myimage"
echo " docker push your-domain:5000/myimage"
echo ""
echo "📝 Edit .env file to customize configuration"