@@ -19,7 +19,7 @@ docker run -d \
1919 --name crowdsec-spoa-bouncer \
2020 -e API_KEY=your-api-key \
2121 -p 9000:9000 \
22- crowdsec/haproxy- spoa-bouncer
22+ crowdsecurity/ spoa-bouncer
2323```
2424
2525## Configuration
@@ -35,7 +35,7 @@ docker run -d \
3535 --name crowdsec-spoa-bouncer \
3636 -v /path/to/your/config.yaml:/etc/crowdsec/bouncers/crowdsec-spoa-bouncer.yaml:ro \
3737 -p 9000:9000 \
38- crowdsec/haproxy- spoa-bouncer
38+ crowdsecurity/ spoa-bouncer
3939```
4040
4141Or specify a different config path:
@@ -45,7 +45,7 @@ docker run -d \
4545 --name crowdsec-spoa-bouncer \
4646 -v /path/to/config.yaml:/config.yaml:ro \
4747 -p 9000:9000 \
48- crowdsec/haproxy- spoa-bouncer -c /config.yaml
48+ crowdsecurity/ spoa-bouncer -c /config.yaml
4949```
5050
5151### Unix Socket (Recommended for Same-Host HAProxy)
@@ -55,7 +55,7 @@ docker run -d \
5555 --name crowdsec-spoa-bouncer \
5656 -v /path/to/config.yaml:/etc/crowdsec/bouncers/crowdsec-spoa-bouncer.yaml:ro \
5757 -v /run/crowdsec-spoa:/run/crowdsec-spoa \
58- crowdsec/haproxy- spoa-bouncer
58+ crowdsecurity/ spoa-bouncer
5959```
6060
6161Ensure the socket directory exists and has appropriate permissions for HAProxy to connect.
@@ -65,7 +65,7 @@ Ensure the socket directory exists and has appropriate permissions for HAProxy t
6565``` yaml
6666services :
6767 crowdsec-spoa-bouncer :
68- image : crowdsec/haproxy- spoa-bouncer
68+ image : crowdsecurity/ spoa-bouncer
6969 restart : unless-stopped
7070 environment :
7171 - API_KEY=${CROWDSEC_API_KEY}
@@ -105,7 +105,7 @@ docker run -d \
105105 --user 1000:1000 \
106106 --name crowdsec-spoa-bouncer \
107107 -p 9000:9000 \
108- crowdsec/haproxy- spoa-bouncer
108+ crowdsecurity/ spoa-bouncer
109109```
110110
111111Note: Ensure mounted volumes have appropriate permissions for the specified user.
@@ -130,7 +130,7 @@ docker run -d \
130130 --health-interval=30s \
131131 -p 9000:9000 \
132132 -p 60601:60601 \
133- crowdsec/haproxy- spoa-bouncer
133+ crowdsecurity/ spoa-bouncer
134134```
135135
136136Note: Since this is a scratch image, ` wget ` is not available. Use an external health check or a sidecar container for HTTP health probes.
@@ -164,7 +164,7 @@ Set `log_level: debug` in your config file for verbose logging.
164164## Building the Image
165165
166166``` bash
167- docker build -t crowdsec/haproxy- spoa-bouncer .
167+ docker build -t crowdsecurity/ spoa-bouncer .
168168```
169169
170170### Build Arguments
0 commit comments