Skip to content

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

  1. Clone the repository:
bash
git clone https://github.com/0xBallpoint/trapster-community.git
cd trapster-community
  1. Build and start the container:
bash
docker compose up --build

This will start Trapster with the default configuration.

Custom Configuration

  1. Edit trapster/data/trapster.conf to match your needs (see Configuration for details)

  2. Restart the container:

bash
docker compose restart

Building 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 .