Docker Image
Version: 0.7.17
Environment: production
Git Commit: 0a09c42
Build Date: 20260716
Commits in this release:
- 0a09c42 feat(passes): filter out "elevation_medium" tag and adjust PassTypesCell column width
- 5faf66a style(labels): shorten "North crossing" to "N-cross" in Earthview and Target translations
- 6e361bb feat(passes): add east-west direction classification and translations
- b197619 feat(earthview): limit top-bar pills to groups with ≤500 satellites
- d76636c feat(rotator): refine overlap tracking logic for 0_450 mode and add high-lane lock
- 0b00fd1 docs(nginx): add details on proxy buffering configuration for large assets
- 170dceb feat(waterfall): add support for custom colormap selection and progress tracking improvements
- 09451ef style(labels): standardize elevation labels to uppercase ("Low EL", "Medium EL", "High EL") in passes components and translations
- 3850fc3 style(passes-table): shorten elevation labels and replace TimeFormatter with PassWindowTimeFormatter
- d45f9f2 style(earthview): increase opacity and font weight for selector bar text
- 2c7d587 style(passes): adjust chip styling for smaller font and padding
- e672f7d docs(readme, version): update recent releases with v0.7.16 details and bump version number
Pull the Docker image:
For AMD64 systems:
docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.7.17For ARM64 systems (Raspberry Pi, etc):
docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.7.17Or pull architecture-specific tags directly:
# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.7.17-amd64
# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.7.17-arm64Run 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.17# 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.17Option 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.17# 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.17Note: Replace
/path/to/datawith your desired data directory path. For ARM64, using-v /dev:/devensures 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.17
# 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.16...v0.7.17