photoprism-client-go/sample-app/pcreate
Kris Nóva 1f68fd3f4d Adding todos to docker create command
Signed-off-by: Kris Nóva <kris@nivenly.com>
2021-02-03 17:03:05 -08:00

18 lines
506 B
Text
Executable file

#!/bin/bash
####################################
#####
###
##
#
#
# Startup Script for the Application
####################################
echo "Creating [SampleApp]"
# TODO Nova
# TODO Per edude03ontwitch we want to actually mount /photoprism/whatever
# TODO Need to fix the `\\\n` string replace to respect a happy command here
docker run -d --name photoprism -p 8080:2342 -e PHOTOPRISM_UPLOAD_NSFW="true" -e PHOTOPRISM_ADMIN_PASSWORD="missy" -v photoprism:/photoprism photoprism/photoprism:latest
z