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.ymlto include container upgrade steps.
Pull the Docker image:
docker pull ghcr.io/sgoudelis/ground-station:0.1.41Run 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.41Upgrading 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.41Multi-arch support:
This image supports linux/amd64 platform.
Full Changelog: v0.1.40...v0.1.41