CrowdSec-Manager Docs

Quick Start

Fast path to launch CrowdSec Manager

Quick Start

Use this page when you want the shortest path. For full details, use Installation.

1. Create directories

mkdir -p ./backups ./data

2. Use this compose file

services:
  crowdsec-manager:
    image: hhftechnology/crowdsec-manager:1.1.0
    container_name: crowdsec-manager
    restart: unless-stopped
    expose:
      - "8080"
    environment:
      - PORT=8080
      - ENVIRONMENT=production
      - TRAEFIK_DYNAMIC_CONFIG=/etc/traefik/dynamic_config.yml
      - TRAEFIK_CONTAINER_NAME=traefik
      - TRAEFIK_STATIC_CONFIG=/etc/traefik/traefik_config.yml
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - /root/config:/app/config
      - /root/docker-compose.yml:/app/docker-compose.yml
      - ./backups:/app/backups
      - ./data:/app/data
    networks:
      - pangolin

networks:
  pangolin:
    external: true

3. Create network and run

docker network create pangolin
docker compose up -d

4. Check health

curl http://localhost:8080/health

On this page