16 lines
215 B
Plaintext
16 lines
215 B
Plaintext
|
#!/bin/bash
|
||
|
####################################
|
||
|
#####
|
||
|
###
|
||
|
##
|
||
|
#
|
||
|
#
|
||
|
# Startup Script for the Application
|
||
|
####################################
|
||
|
set -e
|
||
|
|
||
|
echo "Starting [SampleApp]"
|
||
|
|
||
|
docker logs -f --tail 100 photoprism
|
||
|
|