An alternate consul UI build for power users.
- Dark Mode
- Advanced feature such as node deregistration, json view etc.
docker pull shweshi/consul-power-ui
docker run -e CONSUL_URL=<CONSUL_BASE_URL> -p 3000:3000 -p 3001:3001 shweshi/consul-power-ui
docker-compose build --build-arg CONSUL_URL=<CONSUL_BASE_URL>
docker-compose up
- Node.js
- React.js
- Install necessary dependency for the dashboard.
cd ui
npm install
- Install necessary dependency for the proxy server.
cd proxy
npm install
In the project directory, run:
cd ui
npm start
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
The UI needs a proxy server avoid CORS issue with Consul API. So we need to start proxy server. Run the proxy server:
cd proxy
CONSUL_URL=<CONSUL_BASE_URL> npm run start
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING and CODE OF CONDUCT for details.
The MIT License (MIT). Please see License File for more information.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.