github sgoudelis/ground-station v0.1.60

latest releases: v0.3.5, v0.3.4, v0.3.3...
4 months ago

Docker Image

Version: 0.1.60
Environment: production
Git Commit: 853ce91
Build Date: 20251116

Commits in this release:

  • 853ce91 Bump backend version to 0.1.60
  • 6e88d0b "Disable GitHub Actions Docker release workflow"
  • beb647d "Remove GitHub Actions Docker release workflow and update DroneCI to exclude tag events in build steps"

Pull the Docker image:

docker pull ghcr.io/sgoudelis/ground-station:0.1.60

Run 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.60

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

# 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.60

Multi-arch support:

This image supports linux/amd64 and linux/arm64 platforms.

Full Changelog: v0.1.59...v0.1.60

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.