Quick Start
Getting started with Binacle.Net is easy!
The following setup runs Binacle.Net with Swagger UI and the UI Module.
๐ฅ๏ธ Run Locally with Docker
The fastest way to try Binacle.Net is by running it in a Docker container.
1๏ธโฃ Install Docker
Ensure Docker is installed on your system. If not, follow the instructions on the Docker website.
2๏ธโฃ Run Binacle.Net
Open your terminal and run:
docker run -d --name binacle-net -p 8080:8080 -e SWAGGER_UI=True -e UI_MODULE=True binacle/binacle-net:1.3.0
This command will:
- โ๏ธ Pull the v1.3.0 Binacle.Net image.
- โ๏ธ Start the container with the Swagger UI and UI Module enabled.
- โ๏ธ Expose the API on port 8080.
3๏ธโฃ Access Binacle.Net
- Swagger UI: http://localhost:8080/swagger/
- UI Module: http://localhost:8080/
๐ฆ Run with Docker Compose
For more advanced setups, you can use Docker Compose. Choose one of the provided Samples for a quick start:
- ๐น Minimal Setup: Set up Binacle.Net with minimal configuration.
- ๐น Full Deployment: Run Binacle.Net with all features enabled, including Azurite for local storage, Open Telemetry and Aspire Dashboard.
- ๐น UI Module Only: Run Binacle.Net with just the UI Module for quick visual demos.