update readme

This commit is contained in:
ThePhaseless
2025-05-18 23:22:19 +02:00
parent 9fc9af3ba9
commit 7e9c2ba97d
2 changed files with 9 additions and 8 deletions
+2 -3
View File
@@ -35,7 +35,6 @@ An alternative to [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) a
| Environment Variable | Default | Description |
| -------------------- | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `USE_XVFB` | `SeleniumBase default` | Use virtual desktop with Xvfb. (Linux only) (Can cause performance hog [#14](https://github.com/ThePhaseless/Byparr/issues/14)) |
| `USE_HEADLESS` | `SeleniumBase default` | Use headless chromium. |
| `PROXY` | None | Proxy to use in format: `protocol://username:password@host:port`. [SOCKS5 with authentication is not supported by Chrome](https://stackoverflow.com/questions/75602916/connection-to-private-proxy-socks5-with-chrome-webrequest-onauthrequired-and), see `compose.yaml` file for a workaround |
@@ -57,7 +56,7 @@ See `compose.yaml`
### Docker
```bash
docker run -p 8191:8191 ghcr.io/thephaseless/byparr:latest
docker run --shm-size=2gb -p 8191:8191 ghcr.io/thephaseless/byparr:latest
```
### Local
@@ -68,7 +67,7 @@ uv sync && uv run main.py
## Need help with / TODO
- [x] Slimming container (only ~650 MB now!)
- [x] Slimming container (only ~1.11 GB now!)
- [x] Add more anti-bot challenges
- [x] Add doc strings
- [x] Implement versioning
+7 -5
View File
@@ -1,17 +1,19 @@
services:
byparr:
image: ghcr.io/thephaseless/byparr
image: ghcr.io/thephaseless/byparr:latest
restart: unless-stopped
shm_size: 2gb
build:
context: .
dockerfile: Dockerfile
# # Uncomment below to use pproxy
# environment:
# - PROXY=http://pproxy:8080 # Uncomment this line to use pproxy
# - PROXY=http://pproxy:8080
volumes:
- ./screenshots:/app/screenshots # For screenshots when exception occurs
ports:
- "8191:8191"
- ./screenshots:/app/screenshots # (optional) For screenshots when exception occurs
# # Uncomment below to use byparr outside of internal network
# ports:
# - "8191:8191"
# # Uncomment the following lines to enable pproxy for socks5 proxy
# pproxy:
# tty: true # Required for pproxy to work