Contributing to Meshery Docker Extension
Prerequisites
To start contributing to Meshery Docker Extension, make sure you have Docker installed on your system.
Docker Extension for Meshery
The Docker Extension for 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. The extension provides a seamless experience for developers to manage and monitor their Kubernetes applications and services.
Using Docker Desktop
1) Navigate to the Extensions Marketplace of Docker Desktop.
2) From the Dashboard, select Add Extensions in the menu bar or open the Extensions Marketplace from the menu options.
3) 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 containers inside your Docker Desktop virtual machine.
docker extension install meshery/docker-extension-meshery
Set up the server
In the root directory of meshery, run the following command:
To install/update the UI dependencies:
make ui-setup
Start the server locally
make server
This will ensure that the server is up and running at port 9081
Set up docker extension Locally
Open another terminal while the server is running, Go inside the docker-extension directory
cd install/docker-extension
Build and export UI
make ui-build
UI Development Server
If you want to work on the Docker UI, it will be a good idea to use the included UI development server. You can run the UI development server by running the following command:
make ui
Now the meshery docker-extension is up and running.
Linking the docker extension locally
To see the changes reflected in the docker extension locally and open the devTools window, we can run the command:
make link
Now that our local development environment is connected with the meshery docker extension, we can start contributing to it.
Suggested Reading
- Build & Release (CI) - Details of Meshery's build and release strategy.
- Contributing to Meshery Adapters - How to contribute to Meshery Adapters
- Contributing to Meshery CLI - How to contribute to Meshery Command Line Interface.
- Contributing to Meshery's End-to-End Tests using Cypress - How to contribute to End-to-End Tests using Cypress.
- Contributing to Meshery Docs - How to contribute to Meshery Docs.
- How to write MeshKit compatible errors - How to declare errors in Meshery components.
- Contributing to Meshery using git - How to contribute to Meshery using git
- Meshery CLI Contributing Guidelines - Design principles and code conventions.
- Contributing to Model Relationships - How to contribute to Meshery Models Relationships, Policies...
- Contributing to Models - How to contribute to Meshery Models, Components, Relationships, Policies...
- Contributing to Meshery Server Events - Guide is to help backend contributors send server events using Golang.
- Contributing to Meshery UI - Notification Center - How to contribute to the Notification Center in Meshery's web-based UI.
- Contributing to Meshery UI - How to contribute to Meshery UI (web-based user interface).
- Contributing to Meshery Server - How to contribute to Meshery Server
- Setting up Meshery Development Environment on Windows - How to set up Meshery Development Environment on Windows