forked from bannert1337/ephemera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
80 lines (68 loc) · 1.9 KB
/
Copy pathdocker-compose.yml
File metadata and controls
80 lines (68 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
services:
ephemera:
# Available tags:
# - latest: Latest stable release (recommended for production)
# - dev: Latest development build (for testing new features)
# - 1.2.3: Specific version
# - dev-sha-abc1234: Specific dev build
image: ghcr.io/orwellianepilogue/ephemera:latest
container_name: ephemera
restart: unless-stopped
ports:
- "8286:8286"
environment:
# Required:
AA_BASE_URL:
# FlareSolverr is used for slow download fallback when API key is missing or quota exhausted
# Default: http://127.0.0.1:8191 (or http://flaresolverr:8191 in Docker)
FLARESOLVERR_URL: http://127.0.0.1:8191
# Optional
# Alternative Download Source (optional)
# If set, LG fast download will be attempted before falling back to slow servers
# Leave empty to disable this feature
# li, bz, etc.
LG_BASE_URL: #https://gen.com
AA_API_KEY:
PUID: 1000
PGID: 100
volumes:
- ./data:/app/data
- ./downloads:/app/downloads
- ./ingest:/app/ingest
# Set DNS server to prevent EU blocking
#dns:
# - 1.1.1.1
# - 1.0.0.1
healthcheck:
test:
[
"CMD",
"wget",
"--no-verbose",
"--tries=1",
"--spider",
"http://127.0.0.1:8286/health",
]
interval: 30s
timeout: 10s
start_period: 40s
retries: 3
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
restart: unless-stopped
environment:
- LOG_LEVEL=info
- LOG_HTML=false
- CAPTCHA_SOLVER=none
- TZ=Europe/Berlin
# Set DNS server to prevent EU blocking
#dns:
# - 1.1.1.1
# - 1.0.0.1
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:8191/health"]
interval: 30s
timeout: 10s
start_period: 30s
retries: 3