Here are the steps to get this tool running in your docker instance with Docker Compose
- Create a folder for ScorePad and move into it
- Save the below as
docker-compose.yml
services:
scorepad:
container_name: scorepad
image: jma1ice/scorepad:latest
restart: unless-stopped
volumes:
- scorepad_data:/app
ports:
- 2283:2283
volumes:
scorepad_data:
driver: local- In the terminal of your choice, navigate to your ScorePad directory and run
docker compose up -d
The dashboard will be available at localhost:2283