github sgoudelis/ground-station v0.1.41

latest releases: v0.3.12, v0.3.11, v0.3.10...
5 months ago

Docker Image

Version: 0.1.41-v0.1.41-30aa136
Environment: production
Git Commit: 30aa136
Build Date: 20251022

Commits in this release:

  • 30aa136 Bump backend version to 0.1.41 in version.json.
  • b2e49aa Expand documentation in docker-release.yml to include container upgrade steps.

Pull the Docker image:

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

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

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

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

Multi-arch support:

This image supports linux/amd64 platform.

Full Changelog: v0.1.40...v0.1.41

Don't miss a new ground-station release

NewReleases is sending notifications on new releases.