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 09:52:59 +00:00
scripts/install-qemu.sh
# Run test suite.
2021-11-23 19:42:01 +00:00
scripts/test.sh
# Build preview image.
make docker-preview
# Wait 2s.
sleep 2
# Build demo image.
2021-12-03 15:49:43 +00:00
make docker-demo