github sgoudelis/ground-station v0.1.49

latest releases: v0.4.1, v0.4.0, v0.3.16...
5 months ago

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.49

Run 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.49

Upgrading 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.49

Multi-arch support:

This image supports linux/amd64 platform.

Full Changelog: v0.1.48...v0.1.49

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.