photoprism/scripts/deploy-preview.sh

20 lines
242 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# Exit on error.
set -ex
# Use QEMU for multi-arch builds.
2022-03-11 10:52:59 +01:00
scripts/install-qemu.sh
# Run test suite.
2021-11-23 20:42:01 +01:00
scripts/test.sh
# Build preview image.
make docker-preview
# Wait 2s.
sleep 2
# Build demo image.
2021-12-03 16:49:43 +01:00
make docker-demo