Files
archy/image-recipe/scripts
Dorian e7c6913f7d
Some checks failed
Build Archipelago ISO (dev) / build-iso (push) Has been cancelled
fix: IndeedHub port 7778, podman registries v2 format
- IndeedHub container port changed from 7777 to 7778 (7777 used by nostr-relay)
- Nginx proxy updated to route to 7778
- Backend config.rs port mapping updated
- Podman registries.conf switched to v2 format (fixes mixed v1/v2 error)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 12:32:32 -04:00
..
2026-01-24 22:59:20 +00:00

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: .img file ready for dd
  • 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