Run with Docker
How to use run Stoobly with Docker
Prerequisite
Docker must be installed. Refer to the official Docker install instructions here.
Running the Agent
Start the Docker container with the following command:
docker run \
-p 8080:8080 \
-p 4200:4200 \
-v ~/.stoobly:/home/stoobly/.stoobly \
stoobly/agent
The above command will:
Download the
stoobly/agent
Docker image from Docker HubStart the proxy and UI server
Expose the proxy on port 8080 and the UI on port 4200
After running the command, you should see output similar to this to indicate that the agent started up successfully:
UI server listening at http://0.0.0.0:4200
Loading script /usr/local/lib/python3.10/site-packages/stoobly_agent/record.py
Proxy server listening at http://*:8080
Last updated
Was this helpful?