Docker Image
Version: 0.1.47-v0.1.47-7372642
Environment: production
Git Commit: 7372642
Build Date: 20251101
Commits in this release:
- 7372642 Bump version to 0.1.47
- 277555e Add auto-scale preset logic and Redux state integration
- 186fd08 Refine
missingRequiredParameterslogic in waterfall-stream checks to handle null and undefined gain values. - a9fc1d0 Add planned features section and improve existing descriptions in About page
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.47Run 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.47Upgrading 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.47
# 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.47Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.46...v0.1.47