Docker Image
Version: 0.1.51-v0.1.51-251fca2
Environment: production
Git Commit: 251fca2
Build Date: 20251105
Commits in this release:
- 251fca2 "Bump version to 0.1.51 in version.json"
- 267fd64 "Fix VFO frequency change logic to correct scroll wheel direction behavior"
- d1f8b0b "Remove deprecated example E2E tests and enhance satellite selection logic
- 98ef079 "Add IQ recording and playback functionality with SigMF format integration
- 92b365c "Adjust chip styles in file browser for improved visual consistency and compactness"
- c29a134 "Increase max height of playback settings accordion to improve UI flexibility"
- f7181b5 "Increase max height of playback settings accordion to improve UI flexibility"
- 45e0a06 "Display recording and snapshot file counts in file browser"
- 6b0092d "Remove debug log from file browser state socket handler"
- 5e04ad4 "Refactor request and submission handlers into modular structure
- 0af9fb4 "Add hardware limit visualization for rotator controls and remove minimum elevation preference
- 9ec3981 "Refactor folder and import paths for rig and rotator controls
- 82ac973 "Move pagination and sorting to frontend for file browser
- 38c9251 "Remove redundant logic for VFO active state assignment in backend"
- e8f8f11 "Enable toast notifications to be draggable with a 30% boundary"
- 6a14f43 "Refactor file browser state management for consistency
- c5d106b "Use timezone-aware datetime conversion in file browser
- c157c7b "Emit real-time file browser updates for recording and snapshot actions
- bd23938 Refactor file browser to implement pub/sub model for state updates
- 61b2c9e Enhance metadata capture display in file browser
- d05eaa4 Add start and end time metadata display in file browser
- 66c8c4c Improve snapshot and recording functionality across waterfall components
- dfe10e5 Add metadata support for target satellite in recordings
- 0468a1b Refactor maintenance form for improved clarity and responsiveness
- 2b2b64c Prevent
pageSizeupdates from API responses in file browser to ensure it's only set by user actions - 3edc100 Add ability to clear individual Redux persistent settings and improve maintenance UI
- b1c6ec3 Improve bookmark canvas detection and exclude it from frequency scale logic
- acaf29d Refactor recording and playback overlays and improve rendering logic
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.51Run the container:
docker run -d \
-p 7000:7000 \
--name ground-station \
--restart unless-stopped \
--device=/dev/bus/usb \
--privileged \
-v $(pwd)/data:/app/backend/data \
-e GS_ENVIRONMENT=production \
ghcr.io/sgoudelis/ground-station:0.1.51Upgrading 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.51
# Start the container with the new version
docker run -d \
-p 7000:7000 \
--name ground-station \
--restart unless-stopped \
--device=/dev/bus/usb \
--privileged \
-v $(pwd)/data:/app/backend/data \
-e GS_ENVIRONMENT=production \
ghcr.io/sgoudelis/ground-station:0.1.51Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.50...v0.1.51