Docker Image
Version: 0.1.76
Environment: production
Git Commit: 55e8312
Build Date: 20251121
Commits in this release:
- 55e8312 "Bump server version to 0.1.76 in version.json"
- 6550952 "Add telemetry viewer integration to DecodedPacketsDrawer; implement metadata fetching, error handling, and telemetry dialog with action column support."
- 9944804 "Replace MUI Typography with plain HTML spans in DecodedPacketsDrawer for simplicity; update theme usage for background colors and focus styles for consistency with design standards."
- 87002ae "Extract WaterfallRightSidebar and DecodedPacketsDrawer as standalone components; add dynamic resizing, fullscreen support, and packet drawer state management improvements."
- ebf57af "Refactor decoder and demodulator management by integrating centralized registries; replace hardcoded logic with dynamic capabilities lookup, improve internal demodulator handling, and streamline VFO state transitions."
- 99853de "Fix SatYAML import path in configuration and Dockerfile to ensure compatibility with updated gr-satellites module structure."
- 51dd506 "Verify gr-satellites module installation in Docker build; improve error handling for satyaml module readiness."
- 3f5157a "Integrate satellite configuration service for dynamic decoder parameter overrides; enhance BPSK decoder with satellite metadata handling, telemetry improvements, and runtime configuration updates; streamline UI to display satellite details with NORAD ID and protocol information."
- 62fa499 "Update BPSK, GMSK, and GFSK decoders to support dynamic frequency tracking via VFO state; replace static transmitter frequency usage with runtime Doppler shift compensation logic."
- f96e1af "Extend transmitter modes with expanded protocol options; integrate GEOSCAN framing support in GMSK decoder with metadata-based detection and custom deframer handling."
- 0bbf5d1 "Add DOKA signal support to BPSK decoder with dynamic deframer selection and metadata-based detection; enhance satellite info UI with redesigned elevation, altitude, and velocity data presentation."
Pull the Docker image:
For AMD64 systems:
docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.1.76For ARM64 systems (Raspberry Pi, etc):
docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.1.76Or pull architecture-specific tags directly:
# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.1.76-amd64
# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.1.76-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.76For 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.76Note: 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.76
# 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.75...v0.1.76