How to stay up to date, keep your data safe, and fix the stuff that inevitably breaks.
New versions get pushed as Docker images. Updating is the same three commands every time:
cd ~/jockeybox # Grab the latest images docker compose pull # Restart with the new version docker compose up -d # Clean up the old images docker image prune -f
If you don't want surprise updates, pin to a specific version instead of :latest:
# Always get the newest thing image: ghcr.io/sunbrolynk/jockeybox-server:latest # Lock to an exact release image: ghcr.io/sunbrolynk/jockeybox-server:1.2.0 # Follow a major version (still gets patches and minor updates) image: ghcr.io/sunbrolynk/jockeybox-server:1