You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ docker compose up -d
76
76
# Open http://localhost:5000
77
77
78
78
# OR run CLI directly
79
-
docker compose run --profile cli --rm cli
79
+
docker compose run --rm cli
80
80
```
81
81
82
82
> **Security Note:** This app exposes media paths and triggers write operations. `DISABLE_AUTH=true` is the default in the example compose — suitable for local access only. For remote/production deployments, set `DISABLE_AUTH=false` and place a reverse proxy with authentication (OAuth2-Proxy, Authelia, Nginx basic auth) in front of the app.
@@ -92,10 +92,10 @@ docker compose up -d
92
92
**Process via CLI (headless/batch):**
93
93
```bash
94
94
# Process entire media library
95
-
docker compose run --profile cli --rm cli
95
+
docker compose run --rm cli
96
96
97
97
# Process specific show/season
98
-
docker compose run --profile cli --rm -e MEDIA_PATH=/media/tv/ShowName/Season\ 01 cli
98
+
docker compose run --rm -e MEDIA_PATH=/media/tv/ShowName/Season\ 01 cli
99
99
```
100
100
101
101
### Run Tests Locally
@@ -267,7 +267,7 @@ After generation, refresh your media library to detect new subtitles.
0 commit comments