Skip to content

v0.7.3

Latest

Choose a tag to compare

@github-actions github-actions released this 25 Jun 11:05
· 2 commits to main since this release
6e03d1e

Docker Image

Version: 0.7.3
Environment: production
Git Commit: 6e03d1e
Build Date: 20260625

📖 View Project Documentation

Commits in this release:

  • 6e03d1e refactor(worker): remove rAF logic and improve Android WebView presentation timing
  • 5e39e6b test(e2e): improve tab selection logic in TLE Sources tests
  • ef5a82c test(e2e): ensure TLE Sources sub-tab is selected before running tests
  • 376b587 refactor(ui): enhance satellite synchronization UI and update orbital sources terminology
  • 96f268c refactor(ui): add reusable layout for Admin Satellites pages and improve UI consistency
  • 02011b9 feat: reintroduce session runtime snapshot and introspection functionality
  • 9f3bc97 chore: remove session runtime snapshot and introspection functionality
  • 400952e chore: update DSP topology performance diagram
  • 4239365 docs: update README with expanded Ground Station features and revised description
  • d78fd15 style(ui): update SDR table layout for improved structure and spacing
  • 7aa77f7 feat(ui): enhance SDR table with custom cell rendering and improved port field behavior
  • 7fd7868 docs: clarify Airspy support in README
  • bcd4da2 chore(version): bump version to 0.7.2

Pull the Docker image:

For AMD64 systems:

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

For ARM64 systems (Raspberry Pi, etc):

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

Or pull architecture-specific tags directly:

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

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

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

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

# 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.2...v0.7.3