mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-06 09:19:33 +08:00
14 lines
191 B
Bash
14 lines
191 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Run tests
|
|
scripts/test.sh
|
|
|
|
# Build images
|
|
scripts/install-qemu.sh
|
|
sleep 2
|
|
make docker-preview
|
|
sleep 2
|
|
docker pull photoprism/photoprism:preview
|
|
make docker-demo |