https://github.com/obeone/winbox-docker
Mikrotik winbox in docker
https://github.com/obeone/winbox-docker
docker kasm mikrotik vnc winbox
Last synced: 5 months ago
JSON representation
Mikrotik winbox in docker
- Host: GitHub
- URL: https://github.com/obeone/winbox-docker
- Owner: obeone
- License: gpl-3.0
- Created: 2022-05-04T22:19:20.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-13T06:40:50.000Z (over 2 years ago)
- Last Synced: 2024-06-13T07:11:22.757Z (almost 2 years ago)
- Topics: docker, kasm, mikrotik, vnc, winbox
- Language: Shell
- Homepage:
- Size: 1.19 MB
- Stars: 32
- Watchers: 1
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Winbox in docker
[](https://github.com/obeone/winbox-docker/actions/workflows/build-push-image.yaml)

[](https://artifacthub.io/packages/search?repo=obeone)
Use Mikrotik's Winbox with your browser !
Using [KasmVNC](https://github.com/kasmtech/KasmVNC), this docker starts Winbox with Wine and make it avaiable in any browser.
## Screenshots


## Usage
### Docker
```sh
docker run -d --shm-size=512m -p 6901:6901 -e VNC_PW=password -v winbox_wine:/home/kasm-user/.wine ghcr.io/obeone/winbox:latest
```
You can access it at the address https://localhost:6901 with user `kasm_user` and password `password`.
It's not mandatory to mount (or bind) the volume, but it save initial configuration of Wine (which can take a while) and your winbox sessions.
#### TLS
If you want to use your own certificate rather than the autogenerated one, you can mount a PEM to the path `/config/private-cert.pem` :
```sh
docker run -d --shm-size=512m -p 6901:6901 -e VNC_PW=password -v winbox_wine:/home/kasm-default-profile/.wine -v LOCAL_PEM_PATH:/config/private-cert.pem:ro ghcr.io/obeone/winbox:latest
```
### Kubernetes (Helm)
A helm chart exists, just follow
[documentation](https://github.com/obeone/charts)