Update port examples & add warning. resolves #1746

This commit is contained in:
ilike2burnthing
2026-07-16 01:04:54 +01:00
committed by GitHub
parent 237faf1730
commit 0f05ed8fc9
+4 -2
View File
@@ -58,7 +58,7 @@ If you prefer the `docker cli` execute the following command:
```bash
docker run -d \
--name=flaresolverr \
-p 8191:8191 \
-p 127.0.0.1:8191:8191 \
-e LOG_LEVEL=info \
--restart unless-stopped \
ghcr.io/flaresolverr/flaresolverr:latest
@@ -67,13 +67,15 @@ docker run -d \
**Command Prompt or Powershell**
```cmd
docker run -d --name=flaresolverr -p 8191:8191 -e LOG_LEVEL=info --restart unless-stopped ghcr.io/flaresolverr/flaresolverr:latest
docker run -d --name=flaresolverr -p 127.0.0.1:8191:8191 -e LOG_LEVEL=info --restart unless-stopped ghcr.io/flaresolverr/flaresolverr:latest
```
If your host OS is Debian, make sure `libseccomp2` version is 2.5.x. You can check the version with `sudo apt-cache policy libseccomp2`
and update the package with `sudo apt install libseccomp2=2.5.1-1~bpo10+1` or `sudo apt install libseccomp2=2.5.1-1+deb11u1`.
Remember to restart the Docker daemon and the container after the update.
DO NOT expose FlareSolverr to the internet, as it can be abused.
### Precompiled binaries
> **Warning**