github sgoudelis/ground-station v0.7.4

3 hours ago

Docker Image

Version: 0.7.4
Environment: production
Git Commit: 39572f9
Build Date: 20260627

📖 View Project Documentation

Commits in this release:

  • 39572f9 feat(playback): set default FFT overlap percent for sigmf playback
  • d139c05 feat(sdr): enhance SDR options UI with icons and improved styling
  • 0e16627 feat(sdr): disable "no recording selected" option during streaming
  • 95300d3 feat(playback): refactor file fetching logic with reusable request builder
  • 087e719 feat(playback): add timeline scrubbing and improve IQ recording selection
  • a324749 feat(earthview): add reset table settings functionality and centralize defaults
  • eb4e1a1 feat(celestial): enable azimuth fields and update defaults version
  • c048f7f feat(celestial): enhance state migration with versioned defaults and improved reconciliation logic
  • e10bbb9 feat(celestial): centralize table reset logic and add versioned defaults
  • 355e6db feat(celestial): consolidate table defaults and add reset functionality
  • 6040615 feat(celestial): improve table defaults migration and error overlay handling
  • b6ba084 docs(README): clarify Airspy HF+ untested status in feature descriptions and release notes
  • 107dcd1 docs(README): add recent releases section with last 10 tags
  • 968f9f6 feat(transmitters): add duplicate transmitter functionality
  • 4d7f258 refactor(subtitles): adjust subtitle container styles for improved mobile responsiveness
  • 57bd4af refactor(subtitles): improve overlay boundary calculations for better mobile support
  • e01f65a docs(README): add GNSS-SDR and MapLibre to dependencies and update feature descriptions
  • 02960ab docs(README): add mobile screen previews and reorganize layout
  • 7589930 chore(version): bump version to 0.7.3

Pull the Docker image:

For AMD64 systems:

docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.7.4

For ARM64 systems (Raspberry Pi, etc):

docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.7.4

Or pull architecture-specific tags directly:

# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.7.4-amd64

# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.7.4-arm64

Run the container:

Option 1: With SoapySDR Remote Server Discovery (Recommended)

Uses host networking to enable mDNS discovery of SoapySDR remote servers:

# AMD64
docker run -d \
  --platform linux/amd64 \
  --network host \
  --name ground-station \
  --restart unless-stopped \
  --device=/dev/bus/usb \
  --privileged \
  -v /path/to/data:/app/backend/data \
  ghcr.io/sgoudelis/ground-station:0.7.4
# ARM64 (Raspberry Pi, etc)
docker run -d \
  --platform linux/arm64 \
  --network host \
  --name ground-station \
  --restart unless-stopped \
  -v /dev:/dev \
  --privileged \
  -v /path/to/data:/app/backend/data \
  ghcr.io/sgoudelis/ground-station:0.7.4

Option 2: Standard Bridge Mode (No SoapySDR Remote Discovery)

Uses standard bridge networking with port mapping:

# AMD64
docker run -d \
  --platform linux/amd64 \
  -p 7000:7000 \
  --name ground-station \
  --restart unless-stopped \
  --device=/dev/bus/usb \
  --privileged \
  -v /path/to/data:/app/backend/data \
  ghcr.io/sgoudelis/ground-station:0.7.4
# ARM64 (Raspberry Pi, etc)
docker run -d \
  --platform linux/arm64 \
  -p 7000:7000 \
  --name ground-station \
  --restart unless-stopped \
  -v /dev:/dev \
  --privileged \
  -v /path/to/data:/app/backend/data \
  ghcr.io/sgoudelis/ground-station:0.7.4

Note: Replace /path/to/data with your desired data directory path. Option 1 (host networking) is required for automatic mDNS discovery of SoapySDR remote servers. Option 2 works for local SDRs and all other features. For ARM64, using -v /dev:/dev ensures all USB devices are accessible.

After starting the container, access the web interface at http://<YOUR_HOST>:7000

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

# Run the container again (use the appropriate command above for your architecture)

Multi-arch support:

This image supports linux/amd64 and linux/arm64 platforms. Docker will automatically pull the correct architecture for your system.

Full Changelog: v0.7.3...v0.7.4

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.