Docker Image
Version: 0.1.74
Environment: production
Git Commit: 22c575a
Build Date: 20251118
Commits in this release:
- 22c575a Bump version to 0.1.74
- 297dafd Add
constructlibrary to backend dependencies inpyproject.tomlandrequirements.txt. - 912785b "Add auto-arrange functionality to performance metrics dialog: integrate button with callback handling and expose handler from
PerformanceFlow." - 9b1ac40 "Refactor
flow-nodestyling: center content, adjust bar rounding, and remove unnecessary flex properties for improved visual consistency." - 0807c06 "Refactor
flow-nodestyles: adjust padding, add overflow handling, and enhance background styling for improved layout consistency and visual clarity." - a235f8b "Refactor
flow-nodestyling: adjust spacing, widths, and margins for improved layout consistency; enhance grid template for better responsiveness."
Pull the Docker image:
For AMD64 systems:
docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.1.74For ARM64 systems (Raspberry Pi, etc):
docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.1.74Or pull architecture-specific tags directly:
# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.1.74-amd64
# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.1.74-arm64Run the container:
For AMD64 systems:
docker run -d \
--platform linux/amd64 \
-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.74For ARM64 systems (Raspberry Pi, etc):
docker run -d \
--platform linux/arm64 \
-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.74Note: Replace
/path/to/datawith your desired data directory path. The--platformflag ensures the correct architecture is used. 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.74
# 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.73...v0.1.74