https://github.com/fm-labs/kontainer-ui
WebUI for Kontainer
https://github.com/fm-labs/kontainer-ui
container container-management docker docker-compose
Last synced: about 1 year ago
JSON representation
WebUI for Kontainer
- Host: GitHub
- URL: https://github.com/fm-labs/kontainer-ui
- Owner: fm-labs
- Created: 2023-10-17T03:09:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-30T14:08:27.000Z (about 1 year ago)
- Last Synced: 2025-06-02T00:57:42.226Z (about 1 year ago)
- Topics: container, container-management, docker, docker-compose
- Language: TypeScript
- Homepage:
- Size: 1.22 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kontainer-ui
Web UI for [kontainer-core](https://github.com/fm-labs/kontainer-core).
Built with React, Typescript, and Vite.
## Available commands
### `yarn install`
Install dependencies.
### `yarn run dev`
Start the development server.
### `yarn run lint`
Check for linting errors.
Use `yarn lint:fix` to fix linting errors.
Use `yarn lint:dump` to dump all linting errors to eslint-report.xml
### `yarn build`
Build the project for production.
### `yarn run docker:build`
Build the Docker image.
```bash
docker build . -t kontainer-ui
```
Run the Docker container locally.
### `yarn run docker:run`
```bash
docker run \
--rm \
--publish 5080:80 \
kontainer-ui
```