feat: add Cap to templates

This commit is contained in:
tiago 2026-04-22 10:03:06 +01:00
parent 4e561264b4
commit 0c1c5c5831
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

BIN
public/svgs/cap-captcha.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -0,0 +1,27 @@
# documentation: https://capjs.js.org
# slogan: The self-hosted CAPTCHA for the modern web.
# tags: captcha,security,privacy,proof-of-work
# logo: svgs/cap-captcha.png
# port: 3000
services:
cap:
image: tiago2/cap:latest
environment:
- SERVICE_FQDN_CAP_3000
- ADMIN_KEY=$SERVICE_PASSWORD_ADMIN
- REDIS_URL=redis://valkey:6379
depends_on:
valkey:
condition: service_healthy
valkey:
image: valkey/valkey:9-alpine
volumes:
- valkey-data:/data
command: valkey-server --save 60 1 --loglevel warning --maxmemory-policy noeviction
healthcheck:
test: ["CMD", "valkey-cli", "ping"]
interval: 5s
timeout: 3s
retries: 5