Skip to content

v0.7.14

Latest

Choose a tag to compare

@github-actions github-actions released this 07 Jul 18:45
5434d57

Docker Image

Version: 0.7.14
Environment: production
Git Commit: 5434d57
Build Date: 20260707

📖 View Project Documentation

Commits in this release:

  • 5434d57 feat(celestial, ui): optimize offscreen label rendering and improve adaptive layouts
  • 3d62b3e feat(celestial): enhance viewport handling with persisted selection support
  • 9d6ab1b feat(dialogs): enhance styling for better theme support and consistency
  • 8961f4a fix(earthview): set default loadingSatellites to false to prevent stale status icons after app refresh
  • 4114e27 feat(waterfall-viewer): add center-frequency marker line rendering
  • 51d7464 feat(navigation): add Redux-based status overlay to Earth View icon
  • 26ca63a feat(navigation): add Redux-based status overlay to Earth View icon
  • 44de65d docs(readme): update recent releases with v0.7.13 details
  • c071fec bump(version): update server version to 0.7.13

Pull the Docker image:

For AMD64 systems:

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

For ARM64 systems (Raspberry Pi, etc):

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

Or pull architecture-specific tags directly:

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

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

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

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

# 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.13...v0.7.14