Docker Image
Version: 0.7.2
Environment: production
Git Commit: ca3793b
Build Date: 20260622
Commits in this release:
- ca3793b feat(i18n): add "Retarget slot or create a new target" translation strings
- 645b8c1 refactor(ui): optimize SDR dropdown rendering with memoized menu items
- 557494f refactor(ui): group SDRs by type in settings dropdown
- ac8f629 feat(hardware): implement native Airspy and Airspy HF+ support for backend enumerations and streaming
- 6ed55f7 style(ui): refine Paper padding and DataGrid margin in user, rig, and rotator tables
- c107166 refactor(hardware): update hardware tab paths and navigation from rigs to SDRs
- f0720b3 test(hardware): refactor selection edit button handler for e2e tests
- 11ee1c4 chore(deps): update
peerproperty usage in package-lock.json - 9d37a9e chore(deps): update package overrides and lockfile
- 1067a49 chore: remove tmp/wiki_cache from git tracking
- c9fdb07 chore: remove IDE out/ directory from git tracking
- 475b6ce feat(hardware): add inline edit button for Rig, Rotator, and SDR tables
- dbe9ad9 docs(readme): update SDR management section with image and description
- b8a7c98 feat(hardware): add dynamic labeling for SDR RX antenna ports
- 8299cc1 docs(readme): update features list with Solar System view and mission targeting enhancements
- a954431 chore(version): bump version to 0.7.1
Pull the Docker image:
For AMD64 systems:
docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.7.2For ARM64 systems (Raspberry Pi, etc):
docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.7.2Or pull architecture-specific tags directly:
# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.7.2-amd64
# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.7.2-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.2# 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.2Option 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.2# 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.2Note: Replace
/path/to/datawith 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:/devensures 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.2
# 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.1...v0.7.2