Docker Image
Version: 0.3.4
Environment: production
Git Commit: 90ad267
Build Date: 20260406
Commits in this release:
- 90ad267 Add tracking status styling and filtering to Satellite Passes table
- d2c5631 Improve styling and ellipsis behavior in Satellites Table, add
group_titletranslations to all locales. - 50a9c30 Remove filtered count label logic from Satellites Table:
- aa1a2de Update DataGrid styles and primary theme color:
- 8417d88 Format angles with degree symbol across rotator table and update related translations:
- d77d764 Improve hover logic for timeline events by adding cursor elevation matching.
- cdec56f Refactor pass timeline rendering logic:
- 2bda219 Update
overviewSatTrackpersist config to includemapZoomLeveland remove localStorage-based map zoom handling - 92e7016 Fix regex in Backend Time visibility check in settings spec
- 0ece41a Add Time Drift diagnostics card to maintenance settings:
- 65ca7f6 Populate database with multiple default TLE sources in first-time setup:
- 164d8c2 Update row class naming for upcoming passes in Next Passes component
- edb187c Refactor pass row styling and status handling logic:
- 25a7953 Refactor pass status rendering logic:
- ce5af63 Add zoom scaling support to waterfall renderer and bandscope rendering logic
- 72faaba Update
targetSatTrackpersist config to includepassesTableSortModelin whitelist - 87302d9 Refactor grid layout and state dependencies across components:
- b461db4 Update ground station overview image for the amateur group
- 453b21c Enhance satellite filtering and trend visualization:
- 9cfd4ec Update ground station overview and tracking console images in the frontend
Pull the Docker image:
For AMD64 systems:
docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.3.4For ARM64 systems (Raspberry Pi, etc):
docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.3.4Or pull architecture-specific tags directly:
# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.3.4-amd64
# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.3.4-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 \
-e GS_ENVIRONMENT=production \
-e GR_BUFFER_TYPE=vmcirc_mmap_tmpfile \
ghcr.io/sgoudelis/ground-station:0.3.4# 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.3.4Option 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.3.4# 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.3.4Note: 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.3.4
# 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.3.3...v0.3.4