Wiki > Byparr
A random port number between 10000 and 32767 is needed and will be used to access Byparr. The port number 11281 has automatically been generated and will be used throughout this article, but can be changed if needed.
Connect to your slot using SSH
-
Create
~/byparr.ymltouch ~/byparr.yml -
Open the file with
nano ~/byparr.ymland add the text in this text box to the fileservices: byparr: image: ghcr.io/thephaseless/byparr:main container_name: byparr environment: - LOG_LEVEL=INFO - PORT=11281 - HOST=127.0.0.1 network_mode: host pull_policy: always restart: unless-stoppedSave the file by pressing
Ctrl+Sthen exit nano withCtrl+X -
Run the Byparr application
podman-compose -f ~/byparr.yml up -d
After returning to your shell prompt, Byparr will be accessible at http://localhost:11281 in any program running on your server capable of using the FlareSolverr API. You can test Byparr by running curl http://localhost:11281/docs Byparr will respond with some HTML.
To update Byparr, run this command to restart into the latest version: podman-compose -f ~/byparr.yml down; podman-compose -f ~/byparr.yml up -d