Docker Image
Version: 0.1.44-v0.1.44-eb041b8
Environment: production
Git Commit: eb041b8
Build Date: 20251028
Commits in this release:
- eb041b8 Bump version to 0.1.44 in version.json
- 3cd5379 Refactor VFO demodulator handling and introduce AM/SSB demodulators
- 37d2753 - Add fallback empty states to satellite synchronization interfaces (
no_added_items,no_modified_items,no_removed_items) across locales - RefactorWaterfallStreamcomponent to a custom hook (useWaterfallStream) - Sync VFO tab and canvas selection inWaterfallsettings - Broadcast VFO data to backend on streaming start
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.44Run 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.44Upgrading 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.44
# 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.44Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.43...v0.1.44