8000 GitHub - prateekdegaons1991/docker-community-extensions: A Curated List of Docker Extensions
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

prateekdegaons1991/docker-community-extensions

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

stars forks Discord issues Visitor count Twitter

๐Ÿ‘‰ A Curated List of Docker Extensions

Docker Extensions lets you use third-party tools within Docker Desktop to extend its functionality.

๐Ÿ™‹ Why Developers Need Docker Extensions

  • Extensions allows developers to seamlessly connect their favorite development tools to your application development and deployment workflows
  • Extensions augments Docker Desktop with debugging, testing, security, and networking functionalities, and build custom add-ons using the Extensions SDK
  • Extensions open a realm of possibilities for developers by adding a variety of tools to your development workflows
  • Developers can now leverage their favorite tools directly from within Docker Desktop with one-click installation of extensions
  • Developers can now discover new ways to implement and optimize workflows in the Marketplace with Extensions from both official Extension partners and community members

Refer to this official link to learn more about Docker Extensions.

Here is a list of Docker extensions curated by the Collabnix community members.

Table of Contents

Categories

๐Ÿง‘โ€๐Ÿ’ป Development

spurin/webden-extension - Open source mobile and tablet friendly alternative to JSFiddle and JSBin Github Stars badge

๐Ÿงฐ Utilities

docker/disk-usage-extension - View disk space used by Docker and what it's used for. Reclaim disk space in one click Docker Pulls
rumpl/docker-extension-golang-playground - Golang playground in Docker Desktop Github Stars
noelm/swagger-editor-extension - Swagger Editor Docker Extension for Docker Desktop Github Stars Docker Pulls
peacecwz/github-registry-docker-desktop-extension - Docker Extension for Github Registry Github Stars
caretdev/docker-intersystems-extension - View Docker Images from Intersystems Docker Extension Github Stars
cedricziel/dd-extension-lgtm - OpenTelemetry enabled Grafana LGTM stack Github Stars badge
docker/volumes-backup-extension - Back up, clone, restore, and share Docker volumes effortlessly. Github Stars
efejjota/counter-extension - Counter extension Showcasing data persistency, backend commands, vanilla JS UI and Docker multistage builds
felipecruz91/bind-mount-extension - Bind mount Extension which bind a dir to the extension container and list the contents of the bind mounted file Github Stars
tomwillfixit/docker-extension - Turn any script into a Docker Extension in about 3 minutes
jatin711-debug/request-docker-extension - Docker Desktop Request Mapper
awaldow/docker-desktop-healthchecks-ui- Docker Desktop Extension to show container healthchecks output. badge
harness/drone-desktop-docker-extension - A Docker Desktop extension to run and manage drone pipelines. badge
lucbpz/graph-view-docker-extension - Docker extensions that displays all your containers, volumes, images etc. in a network graph. badge
thiyagu06/asyncapi-studio-docker-extension - AsyncAPI studio Docker Extension for Docker Desktop badge

๐Ÿซ™ Container Management and Orchestration

Lens Extension by Mirantis for Kubernetes- developers can now conveniently access Kubernetes clusters in seconds within their familiar Docker Desktop environment
Ambassador Labs Telepresence - Develop and test your Docker containers with Kubernetes
AVENTER-UG/docker-mesos-extension - Apache Mesos Extension for Docker Desktop Github Stars
vmware/vmware-tanzu-community-edition-extension-for-docker-desktop - VMware Tanzu Community Edition Extension for Docker Desktop
portainer/portainer-docker-extension:2.13.1 - Docker container management made simple, with the worldโ€™s most popular GUI-based container management platform
OpenShift Docker Extension - OpenShift Extension for Docker desktop Github Stars
splatform/epinio-docker-desktop - The Application Development Engine for Kubernetes
meshery/docker-extension-meshery - Extends Docker Desktopโ€™s position as the cloud native developerโ€™s go-to Kubernetes environment with easy access to the next layer of cloud native infrastructure: service meshes
loft-sh/vcluster-dd-extension - Manages vclusters quickly and easily through the Docker Desktop interface. badge
spurin/k9s-dd-extension - k9s UI preconfigured to run against Docker Desktop Kubernetes Github Stars badge
AlfrescoLabs/alfresco-docker-extension - Single "Run" button to deploy Alfresco platform with Docker Github Stars badge
Gefyra Docker Extension - Blazingly-fast, rock-solid, local application development with Kubernetes! badge

๐ŸŒ Networking

tailscale/docker-extension - Docker Extension adding Tailscale networking Docker Pulls

๐Ÿ—„๏ธ Database

PGAdmin4 extension for Docker Desktop - PostgreSQL Admin Extension
OracleXE 21c Docker Extension - Docker Extension for using OracleXE 21c
SQLCL Docker Extension - Docker Extension for using an embedded version of Oracle SQLcl client tool badge
Docker Extension for Percona Monitoring and Management - Docker Extension for Percona Monitoring and Management Github Stars badge
RedisInsight Docker Extension for Docker Desktop - RedisInsight Docker Extension badge

๐Ÿ’พ Storage

Storj Docker Extension - A Resilient Cloud Object Storage with blazing Performance and Zero-trust Security. badge

๐Ÿ”’ Security

snyk/snyk-docker-desktop-extension - Docker Extension for running Snyk scan on images
slimdotai/dd-ext - Slim.AI Docker Extensions
jfrog/jfrog-docker-desktop-extension - ๐Ÿธ Scans any of your local Docker images for security vulnerabilities ๐Ÿ‹
aquasecurity/trivy-docker-extension - Docker Extensions for Trivy
l6khq/lacework-docker-extension - Docker Image Scanner Github Stars badge

๐Ÿชต Logging

docker/logs-explorer-extension - View all your container logs in one place so you can debug and troubleshoot faster Docker Pulls

๐ŸŽฎ Gaming

Flappy Dock - A forked copy of nebez/floppybird badge

๐Ÿงช Testing

uffizzi/docker-desktop-extension - Lets you create and manage full-stack previews in the cloud using a Docker Compose file
ddosify/ddosify - High-performance load testing tool, written in Golang. badge

๐Ÿ—๏ธ Infrastructure

kubesail/docker-extension - Self-hosting/running internet software on computers you own. badge
spurin/diveintoansible-extension - Let's you create Ansible Lab Environment with an Ansible control node Github Stars

โš™๏ธ API

loopDelicious/docker-extension - Postman collection run Github Stars
microcks/microcks-docker-desktop-extension - Kubernetes native tool for mocking and testing API and microservices badge
samoht/docker-extension-ocaml - Docker Extensions in OCaml. OCaml is a general-purpose, multi-paradigm programming language which extends the Caml dialect of ML with object-oriented features. badge

How to install Docker Extensions

Using GitHub

Step 1. Clone the repository

 git clone https://github.com/<repo-name>/<name-of-your-extension>

Step 2. Build the Docker Extension

Navigate into the cloned repository and run:

 make build-extension

The above command generates a Docker image named after the Docker Hub repository.

Step 3. Install Docker Extensions

To install the extension in Docker Desktop, run:

 docker extension install <repo-name>/<name-of-your-extension>

Step 4. List the Extension

You can also check that the extension has been installed successfully using the following CLI command:

 docker extension ls

Using Docker Hub

Step 1. Pull the image

 docker pull <Docker-Hub-username>/<image-name>

Step 2. Install Docker Extensions

To install the extension in Docker Desktop, run:

 docker extension install <Docker-Hub-username>/<image-name>

๐Ÿ“น Videos

Docker Extension for GOSH Docker Extension for Slim.ai
Gosh Extensions Slim.io Extension
Docker Extension for Snyk Docker Extension for VMware Tanzu
Snyk Extension Docker Extension for VMware
Docker Extension for Anchore Docker Extension for Okteto
Anchore Extension Docker Extension for Okteto
Docker Extension for Uffizzi Docker Extension for Meshery
Uffizzi Extension Docker Extension for Meshery
Docker Extension for Trivy Docker Extension for Telepresence
Trivy Extension Docker Extension for Telepresence
Docker Extension for Red Hat OpenShift Docker Extension for JFrog
Red Hat OpenShift  Extension Docker Extension for JFrog

๐Ÿ’ฌ Support and Community

If you do get enough interest to build a Docker Extension, the team at Docker is available to support you. You can find us in the Docker Community Slack in #extensions, post issues on our SDK repo, or reach us via email extensions(AT)docker.com.

References:

About

A Curated List of Docker Extensions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 100.0%
0