github sgoudelis/ground-station v0.2.6

latest releases: v0.2.17, v0.2.16, v0.2.15...
one month ago

Docker Image

Version: 0.2.6
Environment: production
Git Commit: 3cabf6e
Build Date: 20260301

📖 View Project Documentation

Commits in this release:

  • 3cabf6e Bump version to 0.2.6
  • 17a08fc Add Bias-T toggle support for SDR configuration in scheduler dialogs
  • 03c5d7b Add update indicator to dashboard with periodic check logic
  • dc47e76 Add update-check support with frontend indicator and backend API integration
  • a906e39 Add visitor badge to README.md
  • ac506e2 Add support for temporary databases and improve database URL handling
  • 5a78c71 Refine ref_clock lock status indicator in frontend and streamline related logging in backend
  • f638ad8 Simplify and standardize reference lock status detection in UHD probe logic
  • e98b4c7 Log additional sensor introspection details and integrate debug logging for SDR parameters
  • e69cf74 Add support for SDR capabilities introspection and dynamic SDR settings management
  • c4441d0 Add e2e tests for satellite CRUD and implement datetime coercion in satellite updates
  • afd91e3 Add e2e tests for TLE sources, satellite groups, and preferences persistence

Pull the Docker image:

For AMD64 systems:

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

For ARM64 systems (Raspberry Pi, etc):

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

Or pull architecture-specific tags directly:

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

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

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

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

# 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.2.5...v0.2.6

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.