Skip to content

ghusta/android-docker-search

Repository files navigation

android-docker-search

🐳 Docker Search on Android

Android CI GitHub release

Overview

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

Features

  • 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)

Screenshots

screenshot 1

Install the app

Download and install the APK on GitHub.

Docker API

Uses Registry Hub REST API v1 or v2.
In particular :

See reference documentation.

REST Client

Uses Retrofit 2 and Jackson 2

Build the app

With Gradle (doc) :

gradlew assembleDebug

Or (needs signing the APK - Sign your app)

gradlew assembleRelease

Check the code quality with Lint

With Gradle (doc) :

gradlew lint

Then open the report generated at ./app/build/reports/lint-results.html.

More on Android Lint :