Docker Image
Version: 0.3.6
Environment: production
Git Commit: 3eecd02
Build Date: 20260407
Commits in this release:
- 3eecd02 Refine DataGrid theming: enhance column header background with gradient styling, adjust layout dimensions, and improve overflow handling across scheduler components.
- 92bd80f Enhance DataGrid header theming: apply
alphafor dynamic colors and add custom column header styles across components. - 8d23bac Refine DataGrid focus styles and enhance column header theming with
alphafor improved appearance and accessibility. - cf2733a Update map tooltip offsets and adjust satellite icon anchor for visibility
- 87065df Refactor grid editability callbacks: replace global variables with CustomEvents and add event-based handling in main-layout components.
- 45e07c8 Refactor grid layout components: replace
WidthProviderwithuseContainerWidthfor responsiveness and simplify grid configuration logic. - 39b115d Bump Vite to version 8.0.5 in package.json and package-lock.json
- ee7137a Update map tooltip offset and add visible satellite icon with adjusted anchor
- 5a036ec Add east ('e') resize handle to shared layout configuration across main-layout components
- 1537641 Refactor observations table row selection to support "include" and "exclude" selection types.
- 4c6cb7e Normalize grid layouts by adding shared resize handle support across main-layout components
- d115adb Improve React Grid Layout styling: add dynamic resize handle theming and shadow effect
- 1acd2f3 Add guard against negative time differences in DecodedPacketsDrawer to handle clock skew issues
- ead1b6e Refactor waterfall and decoded packets components: optimize Redux selectors, improve memoization, and refine DataGrid rendering.
- 1a8d66a Update Satellites and Passes Tables loading behavior, improve backend group filtering, bump to version 0.3.5
Pull the Docker image:
For AMD64 systems:
docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.3.6For ARM64 systems (Raspberry Pi, etc):
docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.3.6Or pull architecture-specific tags directly:
# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.3.6-amd64
# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.3.6-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.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.3.6Option 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.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.3.6Note: 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.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.3.5...v0.3.6