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