Docker Image
Version: 0.1.42-v0.1.42-d6adea5
Environment: production
Git Commit: d6adea5
Build Date: 20251026
Commits in this release:
- d6adea5 Bump version to 0.1.42 in version.json
- 450c824 Refactor typing to use
typinghints and replacedatetime.now(UTC)withdatetime.now(timezone.utc)for consistency - e291668 Remove
azendstopandaztypefields from rotator handling - 94a89da Remove GPL license header from
rtlsdrtcpclient.py - 1f31737 Refactor audio processing to include session ID and simplify VFO-specific handling
- 30d75a4 Update log level for
fm-demodulatorfrom INFO to WARN inlogconfig.yaml - 8f553e5 Update dependencies: finalize
react-domand bump package versions - 9666a94 Adjust mypy configuration: disable unreachable and unused local warnings
- 153a2c8 Smooth state transitions and refine filter logic in
fm-demodulator - 9e44053 Add canvas rendering debug info, logging for
fm-demodulator, and adjust audio settings - 9dbc1a6 Rename
webaudioconsumer.pytoaudioconsumer.pyand clean up unused imports. - d34bafc Rename
webaudioconsumertoaudioconsumerand update imports in startup/shutdown logic. - fff9bc1 Remove WebAudioProducer: deprecate unused thread and update related startup/shutdown logic
- a7dfab3 Update frequency scale minor tick color to use
text.disabledfor consistency - 7b19066 Add mouse wheel support for Squelch and Volume sliders in VFO settings
- de1af9d Extend persisted state whitelist to include
vfoMarkers. - 96ed069 Update README: expand feature descriptions and refine mermaid flowchart styling.
- a06c09b Add spacing above mermaid flowchart in README.md.
- 74311fa Update cache buster version in mermaid flowchart comment in README.md
- 884c511 Adjust toast container positioning to apply consistent top offset styling.
- c7d9b39 Improve Alembic logging flexibility:
- 398aac2 Adjust FM demodulator to dynamically adapt audio filter cutoff based on VFO bandwidth.
- bc5842f Update README: adjust feature description and add note on data decoding functionality
- 8c8c6d1 Add anchor link for architecture section in README.md.
- 92307c2 Add cache buster comment to mermaid flowchart in README.md.
- 98c368f Refactor SDR processing logic:
- 3cfe228 Remove unused SatelliteAltIcon from satellite-info component.
- bb9fe58 Add Italian translations and enhance theme functionality:
- d7366ad Integrate theme-based styling in
bookmarks-overlayto dynamically usetheme.palettecolors.
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.42Run the container:
docker run -d \
-p 7000:7000 \
--name ground-station \
--restart unless-stopped \
--device=/dev/bus/usb \
--privileged \
-v $(pwd)/data:/app/backend/data \
-e GS_ENVIRONMENT=production \
ghcr.io/sgoudelis/ground-station:0.1.42Upgrading 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.1.42
# Start the container with the new version
docker run -d \
-p 7000:7000 \
--name ground-station \
--restart unless-stopped \
--device=/dev/bus/usb \
--privileged \
-v $(pwd)/data:/app/backend/data \
-e GS_ENVIRONMENT=production \
ghcr.io/sgoudelis/ground-station:0.1.42Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.41...v0.1.42