Docker Image
Version: 0.1.43-v0.1.43-d6b88e7
Environment: production
Git Commit: d6b88e7
Build Date: 20251027
Commits in this release:
- d6b88e7 Bump version to 0.1.43 in version.json
- d52231a Refactor
SDRProcessManagerto broadcast responses to all clients - 19df2df Introduce IQBroadcaster for efficient IQ sample distribution to multiple demodulators
- b2abdc6 Enhance satellite tables with GpsFixedIcon to indicate tracked satellites
- c1dd36a Refactor GroupsTable to extract SatelliteChipsCell for cleaner satellite rendering and improved readability
- 1d2af27 Enhance group table satellite rendering with responsive chip components and navigation links
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.43Run 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.43Upgrading 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.43
# 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.43Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.42...v0.1.43