photoprism/setup/podman/install.sh
Michael Mayer ed586d64c0 Setup: Update Podman install.sh
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-01-01 18:22:42 +01:00

43 lines
1.3 KiB
Bash
Executable file

#!/usr/bin/env bash
set -e
# Install dependencies.
echo "Installing dependencies..."
sudo dnf update -y
sudo dnf install nano make netavark aardvark-dns podman podman-docker -y
# Install Podman Compose if needed.
if ! command -v "podman-compose" &> /dev/null; then
sudo dnf install epel-release -y
sudo dnf install podman-compose -y
fi
# Start Podman service.
sudo systemctl start podman
sudo systemctl enable podman
# Wait 1 second.
sleep 1
# Show Podman version.
podman --version
# Download config files.
echo "Downloading Makefile and docker-compose.yml..."
curl -o Makefile https://dl.photoprism.app/podman/Makefile
curl -o docker-compose.yml https://dl.photoprism.app/podman/docker-compose.yml
# Create storage folders.
echo "Creating storage folders..."
mkdir -p import mariadb originals storage
sudo chown 1000:1000 import mariadb originals storage
sudo chmod u+rwx,g+rwx import mariadb originals storage
# Show further instructions.
echo ""
echo "Done! You can now customize your settings in the downloaded docker-compose.yml file:"
echo ">> nano docker-compose.yml"
echo "When you are done with the configuration, run 'make' to download and start PhotoPrism."
echo "After waiting a few moments, you should be able to open the UI in a web browser by navigating to:"
echo ">> http://localhost:2342/ (or the configured site URL if you have changed it)"