Setup with Docker (Recommended)
Using Docker is the recommended way to run Scout as it handles all dependencies for you.
Prerequisites
- Install Docker on your server.
Quick Start
- Pull the image:
docker pull jonotoninnovation/scout - Run Scout:
docker run -it --rm \ -p 8080:8080 \ -v $(pwd)/.config:/scout/.config \ -v $(pwd)/.logs:/scout/.logs \ -v $(pwd)/data:/scout/data \ jonotoninnovation/scout
Custom Build
If you prefer to build the image yourself:
- Clone the repository:
git clone https://github.com/jonoton/scout.git cd scout - Build the image:
docker build -t scout .
Next Steps
- Configure Scout: Edit the files in your mapping
.configdirectory. - Verify Setup: Open your browser to
http://localhost:8080.