Docker Hub integration
Docker Hub is a service provided by Docker for finding and sharing container…
- Provider
- docker_hub
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 24 available
Quick start
Call Docker Hub from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Docker Hub's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"DOCKER_HUB_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Docker Hub API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
24 actions exposed via the
Docker Hub integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DOCKER_HUB_ADD_ORG_MEMBER -
DOCKER_HUB_CREATE_ORGANIZATION -
DOCKER_HUB_CREATE_REPOSITORY -
DOCKER_HUB_CREATE_WEBHOOK -
DOCKER_HUB_DELETE_IMAGE -
DOCKER_HUB_DELETE_ORGANIZATION -
DOCKER_HUB_DELETE_REPOSITORY -
DOCKER_HUB_DELETE_TAG -
DOCKER_HUB_DELETE_TEAM -
DOCKER_HUB_DELETE_WEBHOOK -
DOCKER_HUB_GET_IMAGE -
DOCKER_HUB_GET_REPOSITORY
Show all 24 actions
-
DOCKER_HUB_GET_TAG -
DOCKER_HUB_GET_TEAM -
DOCKER_HUB_GET_WEBHOOK -
DOCKER_HUB_LIST_ORG_ACCESS_TOKENS -
DOCKER_HUB_LIST_ORGANIZATIONS -
DOCKER_HUB_LIST_ORG_MEMBERS -
DOCKER_HUB_LIST_REPOSITORIES -
DOCKER_HUB_LIST_TEAM_MEMBERS -
DOCKER_HUB_LIST_TEAMS -
DOCKER_HUB_LIST_WEBHOOKS -
DOCKER_HUB_REMOVE_ORG_MEMBER -
DOCKER_HUB_REMOVE_TEAM_MEMBER
Build with Docker Hub
Open OverSkill, describe what you want to build, and reference Docker Hub in your prompt — the AI will wire up the integration automatically.