Setup firewall-bouncer-docker

Hi!
exec podman  \
  run \
  --name=crowdsec-firewall-bouncer \
  --log-driver=journald \
  --cidfile=/run/crowdsec-firewall-bouncer/ctr-id \
  --cgroups=enabled \
  --sdnotify=conmon \
  -d \
  --replace \
  -e API_KEY=o5Nk+Zoq0RacZraYClZdaEJlItKrBbXhyOl/yygavl4 \
  -e API_URL=http://127.0.0.1:49180 \
  -v /nix/store/1n9l3nm4m5d81wc3nqwnrzj10ghpa21h-crowdsec-firewall-bouncer.yaml:/config/crowdsec-firewall-bouncer.yaml:ro \
  -v /etc/localtime:/etc/localtime:ro \
  --rm \
  --cap-add=NET_ADMIN \
  --cap-add=NET_RAW \
  --pull missing \
  '--network=host' \
  ghcr.io/shgew/cs-firewall-bouncer-docker:latest

I'm on NixOS and I'm trying to setup
cs-firewall-bouncer-docker
. Is that running command correct?
Was this page helpful?