Files
amnezia/docker-compose.yml
T
test2andCursor 7ef408afe7 Add reverse proxy masking and Cloudflare panel SSL via DNS-01.
Introduce Caddy-based reverse proxy with decoy site and DPI masking, plus automatic Let's Encrypt certificate issuance for the panel through Cloudflare API without binding port 443.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-08 00:41:50 +03:00

25 lines
479 B
YAML

version: '3.8'
services:
amnezia_panel:
image: prvtpro/amnezia-panel:1.4.4
container_name: amnezia_panel
ports:
- "${APP_PORT:-5000}:5000"
volumes:
- amnezia_data:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "python3 -c \"import socket; s=socket.socket(); s.connect(('localhost', 5000)); s.close()\""]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
amnezia_data: