Simple frontend for the compactor service written with htmx. Provides information about the client's IP address and also gives you the ability to get information about any IP address you want.
You could build docker container and run it:
$ docker build -t static:latest .
$ docker run -it --rm --init -p 80:80 static:latest
or use simple compose file, such like that one:
version: "3.5"
services:
compactor-fe:
image: streamdp/compactor-fe:v0.0.1
container_name: compactor-fe
ports:
- "80:80"
restart: always
and run this with the following command:
$ docker-compose up -d
Contributions are welcome! If you encounter any issues, have suggestions for new features, or want to improve compactor-fe, please feel free to open an issue or submit a pull request on the project's GitHub repository.
compactor-fe is released under the Apache 2.0 License. See the LICENSE file for complete license details.
DigitalOcean referral link.