github sgoudelis/ground-station v0.2.15

5 hours ago

Docker Image

Version: 0.2.15
Environment: production
Git Commit: a5bf273
Build Date: 20260322

📖 View Project Documentation

Commits in this release:

  • a5bf273 Bump version to 0.2.15.
  • d4ef73c Add AirspyHF+ and PlutoSDR to SoapySDR device list in README
  • f6d4093 Update theme README to remove Cyberpunk entry and adjust numbering
  • 94f5191 Add dependencies and build steps for SoapyPlutoSDR in Dockerfile
  • 7cf20c9 Update e2e settings test to dynamically select non-auto theme and verify selection
  • 3d4847e Remove unused themes high-contrast, sunset-orange, and terminal and rename dark-neutral to slate-blue. Update theme configurations, translations, and documentation accordingly.
  • b43142a Enable Airspy HF+ Discovery
  • 60d54a4 Increase max payload size limits and add SQL statement splitter
  • 932de49 Introduce centralized framing protocol constants and deframer factories
  • f8b9bae Remove downlink tuning and operator offset support

Pull the Docker image:

For AMD64 systems:

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

For ARM64 systems (Raspberry Pi, etc):

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

Or pull architecture-specific tags directly:

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

# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.2.15-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 \
  -e GS_ENVIRONMENT=production \
  -e GR_BUFFER_TYPE=vmcirc_mmap_tmpfile \
  ghcr.io/sgoudelis/ground-station:0.2.15
# 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 \
  -e GS_ENVIRONMENT=production \
  -e GR_BUFFER_TYPE=vmcirc_mmap_tmpfile \
  ghcr.io/sgoudelis/ground-station:0.2.15

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 \
  -e GS_ENVIRONMENT=production \
  -e GR_BUFFER_TYPE=vmcirc_mmap_tmpfile \
  ghcr.io/sgoudelis/ground-station:0.2.15
# 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 \
  -e GS_ENVIRONMENT=production \
  -e GR_BUFFER_TYPE=vmcirc_mmap_tmpfile \
  ghcr.io/sgoudelis/ground-station:0.2.15

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

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

What's Changed

  • Add Airspy HF+ Discovery support by @Jbsco in #24

New Contributors

  • @Jbsco made their first contribution in #24

Full Changelog: v0.2.14...v0.2.15

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.