⚠️ The project is under active development: Be careful how you use it at this time.
A read-only SQL-like interface for docker registries. Currently this project is under development and is ready for experimentation usage only.
SQL-like query interfaces is still one of the easiest to understand interface to query databases. We are still missing something like that for docker registries. In addition, each docker implementation is a bit different in terms of its authentication, scoping, and features. dockerql provides a unified yet extendable way to access multiple types of registries.
Currently supported:
- Dockerhub
- Google Container Registry (GCR)
Example SQL supported queries:
SELECT * FROM registries
SELECT * FROM namespaces WHERE registry = {registry}
SELECT * FROM repos WHERE registry = {registry}
SELECT * FROM images WHERE registry = {registry} AND repo = {repo}
dockerql supports access to public repos for both dockerhub and gcr. We do that by providing namespace value in the WHERE clause.
Here are simple examples:
- Find the repos under alpine in dockerhub
SELECT * FROM repos WHERE registry = "my-dockerhub" AND namespace = "alpine"
- Find the repos under distroless in gcr
SELECT * FROM repos WHERE registry = "my-gcr" AND namespace = "distroless"
dockerql is a read-only service that is open for any user with access to the service. There is no native support for authentication to the service. The assumption is that the dockerql is started in a "safe" place, security is handled by your choice of tools before reaching the docekrql service.
Few steps to get dockerql up and running:
- Configure access to your registries.
- Select a method to run dockerql as a local server from npmjs, as a standalone docker container, or as kubernetes pod. Still under development.
- Try the query api.
Credentials are configured in JSON format and passed to dockerql via an environment variable or via a config file. If both are setup then the environment variable wins.
- Env variable called: "DOCKER_REGISTRIES" contains json document with the configuration.
- if not set then using env variable called: "DOCKER_REGISTRIES_FILE" that points to the location of the configuration file.
- If not set then try a default location for the configuration file at "./.registries.json".
- If file not found then used a built in default that set up access to dockerhub with no credentials.
{
"default-registry": {{default}},
"registries": []
}
- {{default}} - a default registry to be used if WHERE clause does not include a registry name.
- The registries area includes the access definition for each registry and it is dependent on the registry type.
The following example access docker hub.
{
"default-registry": {registryName},
"registries": [
{
"name": {registryName},
"type": "dockerhub",
"namespace": {namespace},
"username": {username},
"password": {password}
}
]
}
- {registryName} is an arbitrary name you choose to represent the registry. The name must be unique in the config file.
- {namespace} optional parameter. Mapped to dockerhub "organization".
{
"default-registry": {registryName},
"registries": [
{
"name": {registryName},
"type": "gcr",
"namespace": {namespace},
"username": "_json_key",
"password": {jsonkey}
}
]
}
- {registryName} is an arbitrary name you choose to represent the registry. The name must be unique in the config file.
- {namespace} optional parameter. Mapped to gcr project-id.
- {jsonkey} is a gcp service account with permissions Project Browser, Storage Object Viewer on the GCS bucket for the container registry (bucket name: artifacts..appspot.com).
Few things we can say about the project:
- Available as open source under the MIT license.
- Built with Node.JS, TypeScript, OpenAPI, and multiple OSS packages that makes development life better.
- Packaged in multiple form factors, including a docker image.
"build:docs": "./node_modules/redoc-cli/index.js bundle ./openapi.json -o ./openapi.html;./node_modules/redoc-cli/index.js bundle ./schema.json -o ./schema.html",
-
Running inside Kubernetes (TODO)
-
Define a secret with the registry credentials
kubectl create secret dockerdl-registry "$(cat ~/.registry.json)"
- Define a kube pod for dockerql