Docker Image
Version: 0.1.61
Environment: production
Git Commit: b83f73a
Build Date: 20251116
Commits in this release:
- b83f73a Bump backend version to 0.1.61
- 8fa2c4b "Update release workflow to include architecture-specific Docker instructions and clarify multi-arch support details"
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.61Run the container:
For AMD64 systems:
docker run -d \
-p 7000:7000 \
--name ground-station \
--restart unless-stopped \
--device=/dev/bus/usb \
--privileged \
-v /path/to/data:/app/backend/data \
-e GS_ENVIRONMENT=production \
ghcr.io/sgoudelis/ground-station:0.1.61For ARM64 systems (Raspberry Pi, etc):
docker run -d \
-p 7000:7000 \
--name ground-station \
--restart unless-stopped \
-v /dev:/dev \
--privileged \
-v /path/to/data:/app/backend/data \
-e GS_ENVIRONMENT=production \
ghcr.io/sgoudelis/ground-station:0.1.61Note: Replace
/path/to/datawith your desired data directory path. For ARM64, using-v /dev:/devensures all USB devices are accessible.
Upgrading an existing container:
# Stop and remove the existing container
docker stop ground-station
docker rm ground-station
# Pull the new version
docker pull ghcr.io/sgoudelis/ground-station:0.1.61
# Run the container again (use the appropriate command above for your architecture)Multi-arch support:
This image supports linux/amd64 and linux/arm64 platforms. Docker will automatically pull the correct architecture for your system.
Full Changelog: v0.1.60...v0.1.61