Currently look into this discussion for knowledge about the project.
# Build the Docker image
make docker-build
# Or build with docker-compose
make docker-compose-build# Run the container directly
make docker-run
# Or run with docker-compose (recommended)
make docker-compose-upThe application will be available at http://localhost:8080.
make docker-build- Build the Docker imagemake docker-run- Run the container directlymake docker-compose-up- Start services with docker-composemake docker-compose-down- Stop services with docker-composemake docker-clean- Clean up Docker containers and images
The application uses the configuration file at configs/default.toml. You can modify this file or mount your own configuration when running the container.
See more in CONTRIBUTING.md.