Docker Image
Version: 0.5.2
Environment: production
Git Commit: 0ebee82
Build Date: 20260612
Commits in this release:
- 0ebee82 docs: update README with enhanced feature descriptions and removed planned features section
- 59001ca docs: add NASA/JPL Horizons API to dependencies list in README and About section
- 888bca6 chore: remove unused environment variables from Docker commands and workflows
- 92bef7c refactor: simplify map zoom handling and remove legacy zoom logic
- 9c0db95 feat: preserve custom zoom state during map state updates
- ca1d3d9 feat: add configurable display options for
PlanetariumCanvas - 323dde3 feat: add target satellite tracking layout and globe projection support
- ae6a152 refactor: remove obsolete target map components and dialogs
- d7d3ff2 feat: enhance celestial pass handling and add next pass resolution in UI
- f0fc551 feat: add observer-sky sampling and improve celestial pass handling
- beba2b2 refactor: unify solar system and planetarium loading logic in
main-layout.jsx - 303663e feat: add save state feedback and error handling to map settings dialog
- 4603479 feat: add interactive signals and fullscreen support to planetarium and target map components
- b57e777 feat: add support for overriding target map settings via dialog interactions
- 7a58109 feat: add
PlanetariumCanvascomponent for interactive celestial visualization - 7e3b4ab feat: add bright-star JSON asset generation script
- 1150544 chore: bump version.json to 0.5.1
Pull the Docker image:
For AMD64 systems:
docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.5.2For ARM64 systems (Raspberry Pi, etc):
docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.5.2Or pull architecture-specific tags directly:
# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.5.2-amd64
# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.5.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.5.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.5.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.5.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.5.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.5.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.5.1...v0.5.2