mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-28 19:12:03 +08:00
15 lines
162 B
Bash
Executable File
15 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Run tests
|
|
scripts/test.sh
|
|
|
|
# Build images
|
|
make docker-preview
|
|
|
|
sleep 2
|
|
docker pull photoprism/photoprism:preview
|
|
|
|
make docker-demo
|