Docker Image
Version: 0.1.50-v0.1.50-3763dfb
Environment: production
Git Commit: 3763dfb
Build Date: 20251104
Commits in this release:
- 3763dfb Bump version to 0.1.50
- 42f8537 Set center frequency from recording metadata in SigMF playback
- 58b655d Persist
pageSizestate in file browser configuration - d27a136 Add i18n support for file browser and waterfall components
- d74e16e Replace outdated data size chip in file playback UI with a concise alternative in file browser
- 42d47ae Remove unnecessary data size chip in file browser UI
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.50Run 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.50Upgrading 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.50
# 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.50Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.49...v0.1.50