github sgoudelis/ground-station v0.1.44

latest releases: v0.2.15, v0.2.14, v0.2.13...
4 months ago

Docker Image

Version: 0.1.44-v0.1.44-eb041b8
Environment: production
Git Commit: eb041b8
Build Date: 20251028

Commits in this release:

  • eb041b8 Bump version to 0.1.44 in version.json
  • 3cd5379 Refactor VFO demodulator handling and introduce AM/SSB demodulators
  • 37d2753 - Add fallback empty states to satellite synchronization interfaces (no_added_items, no_modified_items, no_removed_items) across locales - Refactor WaterfallStream component to a custom hook (useWaterfallStream) - Sync VFO tab and canvas selection in Waterfall settings - Broadcast VFO data to backend on streaming start

Pull the Docker image:

docker pull ghcr.io/sgoudelis/ground-station:0.1.44

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

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

# 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.44

Multi-arch support:

This image supports linux/amd64 platform.

Full Changelog: v0.1.43...v0.1.44

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.