https://github.com/boolivar/docker-hawtio
Docker image for hawt.io
https://github.com/boolivar/docker-hawtio
Last synced: 5 months ago
JSON representation
Docker image for hawt.io
- Host: GitHub
- URL: https://github.com/boolivar/docker-hawtio
- Owner: boolivar
- License: mit
- Created: 2025-01-17T22:52:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-24T22:37:27.000Z (about 1 year ago)
- Last Synced: 2025-03-24T23:19:44.254Z (about 1 year ago)
- Language: Dockerfile
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hawtio Docker Image
[](https://github.com/boolivar/docker-hawtio/actions/workflows/ci.yml)
[](https://hub.docker.com/r/boolivar/hawtio)
Docker image for https://hawt.io web console
## Run web console
```
docker run -p 8080:8080 boolivar/hawtio:latest
```
Open console at http://localhost:8080/hawtio
Container entrypoint supports Hawtio CLI [configuration options](https://hawt.io/docs/get-started.html#_running_from_cli_jbang):
```
docker run boolivar/hawtio:latest -V
```
## Image Variants
### `boolivar/hawtio:latest`
Release with the greatest version from `boolivar/hawtio:`
### `boolivar/hawtio:`
Image based on `eclipse-temurin:21` with [jbang](https://www.jbang.dev/) installed to run hawtio.
### `boolivar/hawtio:-alpine`
Image is based on `eclipse-temurin:21-alpine` with `bash` and [jbang](https://www.jbang.dev/) installed to run hawtio.
## Build image
`HAWTIO_VERSION` build-arg is required to build image using Dockerfile:
```bash
docker build -t hawtio:4.3.0 --build-arg HAWTIO_VERSION=4.3.0 .
```
See [Dockerfile](Dockerfile) for supported build args.
Java is required to build image using gradle:
```bash
./gradlew build
```