All container image references now pull from 80.71.235.15:3000/archipelago/
instead of Docker Hub and ghcr.io. image-versions.sh is the single source
of truth; all scripts use $*_IMAGE variables instead of hardcoded refs.
Files updated:
- scripts/image-versions.sh: central ARCHY_REGISTRY variable
- core/*/config.rs: registry whitelist includes app registry
- core/*/stacks.rs: Immich + Penpot stack images
- scripts/{first-boot,deploy-to-target,container-specs}.sh: use variables
- docker/*/Dockerfile: nginx base image from registry
- image-recipe/: ISO build, podman config, menu script
- scripts/{container-doctor,deploy-bitcoin-knots,fix-indeedhub,validate-app-manifest}.sh
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Build Scripts
Helper scripts for building Archipelago OS images.
Scripts
build-backend.sh
Compiles the Archipelago Rust backend binary.
- Output:
../build/backend/archipelago - Requires: Rust toolchain (or Docker)
- Builds for Linux x86_64
build-frontend.sh
Builds the Vue.js frontend for production.
- Output:
../build/frontend/ - Requires: Node.js 18+, npm
- Builds static files for serving
convert-iso-to-disk.sh
Converts ISO image to raw disk image.
- Input: ISO file
- Output:
.imgfile ready fordd - Creates partition layout (EFI + root)
check-dependencies.sh
Checks if all build dependencies are available.
- Checks: Rust, Node.js, Docker, xorriso
- Provides installation instructions
- Non-blocking (warns but continues)
install-podman.sh
Installs Podman container runtime.
- For use inside the target system
- Configures rootless Podman
Usage
These scripts are called automatically by the main build process. You can also run them manually for testing:
# Build just the backend
./scripts/build-backend.sh
# Build just the frontend
./scripts/build-frontend.sh
# Check dependencies
./scripts/check-dependencies.sh