Quick Start with Docker Extension
Docker Extension for Meshery
The Docker Extension for Meshery extends Docker Desktopβs position as the developerβs go-to Kubernetes environment with easy access to full the capabilities of Mesheryβs collaborative cloud native management features.
Using Docker Desktop
-
Navigate to the Extensions Marketplace of Docker Desktop.
-
From the Dashboard, select Add Extensions in the menu bar or open the Extensions Marketplace from the menu options.
- Navigate to Meshery in the Marketplace and press install.
OR
You can visit the Docker Hub marketplace to directly install Meshery extension in your Docker Desktop.
Using Docker CLI
Meshery runs as a set of one or more containers inside your Docker Desktop virtual machine.
docker extension install meshery/docker-extension-meshery Successfully installed Meshery mesheryctl system dashboard
Remove Meshery as a Docker Extension
If you want to remove Meshery as a Docker extension from your system, follow these steps:
-
Stop Meshery Container:
- First, stop the running Meshery container (if itβs currently running) using the following Docker command:
docker stop meshery-container -
Remove Meshery Container:
- After stopping the container, you can remove it using the following command:
docker rm meshery-container -
Remove Meshery Images:
- Meshery might have pulled Docker images for its components. You can remove these images using the
docker rmi
command. Replace the image names with the actual ones you want to remove:
docker rmi meshery/meshery:latestdocker rmi meshery/adapters:latestβ¦and so on for other Meshery-related images
- Meshery might have pulled Docker images for its components. You can remove these images using the
-
Remove Meshery Volumes (if necessary):
- Meshery may have created Docker volumes to persist data. You can list and remove these volumes using the
docker volume ls
anddocker volume rm
commands. For example:
docker volume lsdocker volume rm meshery-data-volumeβ¦remove other Meshery-related volumes if present
- Meshery may have created Docker volumes to persist data. You can list and remove these volumes using the
-
Remove Docker Network (if necessary):
- If Meshery created a custom Docker network, you can remove it using the
docker network rm
command. For example:
docker network rm meshery-network - If Meshery created a custom Docker network, you can remove it using the
-
Clean Up Configuration (optional):
- If Meshery created configuration files or directories on your host machine, you can remove them manually if you no longer need them.
Recent Discussions with "meshery" Tag
- Mar 28 | Meshery Build and Release | March 28th 2024
- Mar 27 | Meshery Development Meeting | 27th March 2024
- Mar 13 | Badge leveling system proposal
- Mar 20 | While running the command Make-server. localhost shows 404 not found. Are there any possible solution to fix also please suggest the setting up the project using docker route
- Feb 23 | Local Environment Setup TroubleShooting error
- Mar 20 | Meshery Development Meeting | March 20th 2024
- Mar 11 | [Help Wanted] A list of open DevOps-centric needs on Meshery projects
- Mar 17 | Error while deploying pod on meshmap
- Mar 15 | Meshery Build & Release Meeting | March 14th, 2024
- Mar 13 | Can i know ,is it possible to have admission controllers and CRD's in meshery catlog? or will support in future?
Suggested Reading
- Docker - Install Meshery on Docker