Initial docker compose commit

This commit is contained in:
2026-02-15 14:16:44 -08:00
commit e3508e13c3
8 changed files with 171 additions and 0 deletions

18
flaresolverr/compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
flaresolverr:
# DockerHub mirror flaresolverr/flaresolverr:latest
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment:
- LOG_LEVEL=${LOG_LEVEL:-info}
- LOG_FILE=${LOG_FILE:-none}
- LOG_HTML=${LOG_HTML:-false}
- CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none}
- TZ=America/Los_Angeles
ports:
- "${PORT:-8191}:8191"
volumes:
- /mnt/storage/apps/flaresolver:/config
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"