Docker Image
Version: 0.1.59
Environment: production
Git Commit: 2ec2ff7
Build Date: 20251116
Commits in this release:
- 2ec2ff7 "Bump backend version to 0.1.59"
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.59Run 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.59Upgrading 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.59
# 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.59Multi-arch support:
This image supports linux/amd64 and linux/arm64 platforms.
Full Changelog: v0.1.58...v0.1.59