github sgoudelis/ground-station v0.1.64

latest releases: v0.3.16, v0.3.15, v0.3.14...
5 months ago

Docker Image

Version: 0.1.64
Environment: production
Git Commit: ef53b2c
Build Date: 20251116

Commits in this release:

  • ef53b2c Bump backend version to 0.1.64
  • db3e645 "Increase ARM64 build timeout to 480 seconds in Drone CI configuration"
  • ff5dafb "Add architecture detection to Dockerfile for SDRplay API and update paths for multi-arch support"
  • 42c7e70 "Refactor VFO streaming state logic for speaker icon rendering to remove selection dependency"
  • 8c61d3c "Add center-line-only mode for VFO configurations and integrate real-time audio streaming state updates"
  • e1ae937 "Add column visibility control to satellites table with persistent state management"
  • 818f86d "Filter out expired satellite passes and dynamically remove them from the UI; adjust default pagination size to 10"

Pull the Docker image:

For AMD64 systems:

docker pull --platform linux/amd64 ghcr.io/sgoudelis/ground-station:0.1.64

For ARM64 systems (Raspberry Pi, etc):

docker pull --platform linux/arm64 ghcr.io/sgoudelis/ground-station:0.1.64

Or pull architecture-specific tags directly:

# AMD64
docker pull ghcr.io/sgoudelis/ground-station:0.1.64-amd64

# ARM64
docker pull ghcr.io/sgoudelis/ground-station:0.1.64-arm64

Run the container:

For AMD64 systems:

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 \
  ghcr.io/sgoudelis/ground-station:0.1.64

For ARM64 systems (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 \
  ghcr.io/sgoudelis/ground-station:0.1.64

Note: Replace /path/to/data with your desired data directory path. The --platform flag ensures the correct architecture is used. For ARM64, using -v /dev:/dev ensures all USB devices are accessible.

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.1.64

# 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.1.63...v0.1.64

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.