Docker Image
Version: 0.1.49-v0.1.49-748250e
Environment: production
Git Commit: 748250e
Build Date: 20251104
Commits in this release:
- 748250e Bump version to 0.1.49
- e8ce62b Add recording and playback overlays, ensure consistent directory initialization
- 771e944 Refine playback UI styling for improved responsiveness and consistency
- 6c562c2 Add SigMF Playback support for SDR recordings
- 6243505 Send full VFO state during activation to ensure backend synchronization
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.49Run 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.49Upgrading 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.49
# 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.49Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.48...v0.1.49