github sgoudelis/ground-station v0.3.11

2 hours ago

Docker Image

Version: 0.3.11
Environment: production
Git Commit: c5682ea
Build Date: 20260411

📖 View Project Documentation

Commits in this release:

  • c5682ea Adjust Grid size in MaintenanceForm from 6 to 12 for improved layout consistency
  • a997beb Remove test_transmitterimport.py and associated tests for transmitter import functionality.
  • 6e196e8 Normalize optional JSON handling in _normalize_optional_json, refine transmitter import functionality, and add test for itu_notification field.
  • a5e93c1 Normalize malformed JSON in itu_notification column, remove redundant backslash escaping, and enhance data integrity during database operations.
  • 2e0d118 Add tests for transmitter import functionality, normalize optional JSON handling, and adjust layout configurations for improved consistency.
  • a119fa3 Remove PassBandsCell implementation, transmitters column, and related logic from passes-table
  • eaea146 Add "Add Monitored Satellite" button to Observation Status Banner, refactor styles for responsiveness, and remove unused row class logic in DataGrid.
  • 86efde6 Refactor database session execution: replace session.execute with exec_driver_sql for consistency, update DataGrid styles with gradient backgrounds, and adjust main layout row heights.
  • 0d98321 Remove custom NoRowsOverlay components, update DataGrid styles and behavior, and adjust layout configurations for better consistency.
  • d03ac45 Refactor task status icons: replace PlaylistPlayIcon with PendingActionsIcon, add renderStatusIcon helper, and integrate CircularProgress for running tasks.

Pull the Docker image:

For AMD64 systems:

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

For ARM64 systems (Raspberry Pi, etc):

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

Or pull architecture-specific tags directly:

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

# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.3.11-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.3.11
# 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.3.11

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

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

# 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.3.10...v0.3.11

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.