mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-18 13:28:12 -04:00
12 lines
404 B
Bash
Executable File
12 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
set -e # Exit on any error, except where explicitly ignored
|
|
trap 'echo "🛑 Interrupted. Exiting..."; exit 130' INT # Handle Ctrl+C cleanly
|
|
|
|
# Build and run the Docker environment
|
|
echo "Building Docker images..."
|
|
if ! docker compose build; then
|
|
echo "⚠️ Warning: Docker build failed, continuing..."
|
|
fi
|
|
|
|
echo "Running fdroid-buildserver..."
|
|
docker compose run --rm fdroid-buildserver |