github sgoudelis/ground-station v0.8.9

4 hours ago

Docker Image

Version: 0.8.9
Environment: production
Git Commit: 1b8e55e
Build Date: 20260915

📖 View Project Documentation

Commits in this release:

  • 1b8e55e feat(scheduler): enhance task cell rendering with improved layout and overflow handling
  • 3c93eb7 feat(scheduler): enhance observation tooltips with detailed information and improved styling
  • 42db569 feat(scheduler): improve SDR session handling and UI enhancements
  • 2d1b666 feat(transmitters): optimize transmitter lookup with batch queries and indexed fields
  • cf40fa2 feat(scheduler): replace task list UI with accordion for better organization and usability
  • e7afb42 feat(scheduler): add loading state for satellite transmitters with UI feedback
  • dd53eee feat(SSTV): add forced SSTV mode support with configurable overrides and enhanced VIS detection handling
  • 4fa3e42 docs: add SECURITY.md and link to it in README
  • 0122e69 docs(README): add sponsorship section with GitHub Sponsors link
  • d806bef chore: add GitHub funding config and update README with sponsor badge
  • 51efb38 docs(README): add release notes for v0.8.8 with Simplified Chinese localization details
  • fa9c860 chore(version): bump to 0.8.8

Pull the Docker image:

For AMD64 systems:

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

For ARM64 systems (Raspberry Pi, etc):

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

Or pull architecture-specific tags directly:

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

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

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

Note: Replace /path/to/data with your desired data directory path. 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

First startup note: On first run, it can take up to ~30 seconds after container startup for the frontend to become available.

You can watch startup progress with:

docker logs -f --tail=100 ground-station

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

# 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.8.8...v0.8.9

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.