Running with docker compose
Docker is the recommended way to run Trapster as it provides an isolated environment and simplifies deployment.
Prerequisites
- Docker installed on your system (Get Docker)
- Docker Compose (usually included with Docker Desktop)
Quick Start
- Clone the repository:
bash
git clone https://github.com/0xBallpoint/trapster-community.git
cd trapster-community- Build and start the container:
bash
docker compose up --buildThis will start Trapster with the default configuration.
Custom Configuration
Edit
trapster/data/trapster.confto match your needs (see Configuration for details)Restart the container:
bash
docker compose restartBuilding from Source
If you want to build the Docker image yourself:
bash
git clone https://github.com/0xBallpoint/trapster-community.git
cd trapster-community
docker build -t trapster/community .