🐳 Docker Search on Android
This Android application enables you do perform a Docker Search on your device, like if you did it on a computer in a terminal, with docker-engine installed.
The results should be the same than docker search
with command line interface (see reference doc) :
docker search [OPTIONS] TERM
- Search images on Docker Hub
- Display all tags for an image, including the date and size
- Display the web page for an image, in a separate Chrome Custom Tab
- Share the URL of the image
- Minimum supported version : Android 8.0 (Oreo)
Download and install the APK on GitHub.
Uses Registry Hub REST API v1 or v2.
In particular :
- Search : GET /v1/search
- List repository tags : GET /v2/repositories/(namespace)/(repository)/tags
Uses Retrofit 2 and Jackson 2
With Gradle (doc) :
gradlew assembleDebug
Or (needs signing the APK - Sign your app)
gradlew assembleRelease
With Gradle (doc) :
gradlew lint
Then open the report generated at ./app/build/reports/lint-results.html
.
More on Android Lint :