Docker Image
Version: 0.1.46-v0.1.46-0cf0970
Environment: production
Git Commit: 0cf0970
Build Date: 20251101
Commits in this release:
- 0cf0970 Bump version to 0.1.46
- 85cb6e1 Add acknowledgment for Claude AI assistance in signal demodulator implementations in README
- 243f9dd Improve drag handling and touch interactions in VFO container
- b07cceb Add audio buffer flushing logic and middleware integration
- 0f41abb Add signal strength presets, localization keys, and auto-scale logic
- 9ba283a Refine VFO toolbar styling with hover and selection background updates, removing redundant border logic.
- 87c2a8b Add "no passes" localization key and pass projection duration handling
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.46Run 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.46Upgrading 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.46
# 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.46Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.45...v0.1.46