Initial commit: LoveTail Webhook service
- FastAPI webhook to receive Lovense callbacks - Stores connection data for LoveTail MCP - Docker + docker-compose for deployment - API key protection for sensitive endpoints Created Day 60 (New Year's Eve) by Vixy 🦊💕
This commit is contained in:
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
lovetail-webhook:
|
||||
build: .
|
||||
container_name: lovetail-webhook
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8780:8780"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
environment:
|
||||
- DATA_DIR=/data
|
||||
- LOVETAIL_API_KEY=${LOVETAIL_API_KEY:-}
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:8780/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
labels:
|
||||
- "com.vixy.service=lovetail-webhook"
|
||||
- "com.vixy.description=Lovense callback webhook for LoveTail"
|
||||
Reference in New Issue
Block a user