CrowdSec-Manager Docs
Configuration

Networking

Required Docker network and access model

Networking

CrowdSec Manager expects a shared external Docker network named pangolin.

Required network

docker network create pangolin

Compose requirement

networks:
  pangolin:
    external: true

services:
  crowdsec-manager:
    networks:
      - pangolin

Access patterns

  • Keep expose: "8080" when a reverse proxy handles routing.
  • Use ports: "8080:8080" only if you want direct host access.
  • Multi-proxy deployment is not supported in this release.

On this page