photoprism/setup/docker/cloud
knowmost 020e9e7e19 chore: fix some comments and typos
Signed-off-by: knowmost <knowmost@outlook.com>
2024-04-28 08:19:20 +02:00
..
certs Setup: Move all example config files to /setup folder 2022-12-31 19:52:54 +01:00
digitalocean chore: fix some comments and typos 2024-04-28 08:19:20 +02:00
README.txt Setup: Update digitalocean cloud image docs 2023-03-22 03:19:16 +01:00
digitalocean.json Setup: Update digitalocean.json, setup.sh, and cleanup.sh 2023-03-22 03:01:26 +01:00
docker-compose.yml MariaDB: Update config examples to use v11 if possible #3962 #4199 2024-04-21 11:12:28 +02:00
install_photoprism.sh Setup: Move all example config files to /setup folder 2022-12-31 19:52:54 +01:00
jobs.ini Setup: Update job.ini config example #3147 2023-03-04 19:40:24 +01:00
setup.sh Setup: Update digitalocean.json, setup.sh, and cleanup.sh 2023-03-22 03:01:26 +01:00
traefik.yaml Setup: Update cloud/traefik.yaml 2023-03-22 02:10:15 +01:00

README.txt

========================================================================
PhotoPrism for Cloud Servers
Based on Ubuntu 22.04 LTS (Jammy Jellyfish)
========================================================================

SOFTWARE INCLUDED
------------------------------------------------------------------------

PhotoPrism latest, AGPL 3
Docker CE 23.0, Apache 2
Traefik 2.9, MIT
MariaDB 10.10, GPL 2
Ofelia 0.3, MIT
Watchtower 1.5, Apache 2

GETTING STARTED
------------------------------------------------------------------------

Run this script as root to install PhotoPrism on a cloud server e.g.
at DigitalOcean:

  bash <(curl -s https://dl.photoprism.app/docker/cloud/setup.sh)

This may take a while to complete, depending on the performance of
your server and its internet connection.

When done - and you see no errors - please open

  https://<YOUR SERVER IP>/

in a Web browser and log in using the initial admin password shown
by the script. You may also see the initial password by running

  cat /root/.initial-password.txt

as root on your server. To open a terminal:

  ssh root@<YOUR SERVER IP>

Data and all config files related to PhotoPrism can be found in

  /opt/photoprism

The main docker compose config file for changing config options is

  /opt/photoprism/docker-compose.yml

The server is running as "photoprism" (UID 1000) by default. There's no need
to change defaults unless you experience conflicts with other services running
on the same server. For example, you may need to disable the Traefik reverse
proxy as the ports 80 and 443 can only be used by a single web server / proxy.

Configuring multiple apps on the same server is beyond the scope of this base
config and for advanced users only.

SYSTEM REQUIREMENTS
------------------------------------------------------------------------

We recommend hosting PhotoPrism on a server with at least 2 cores and
4 GB of memory. Beyond these minimum requirements, the amount of RAM
should match the number of cores. Indexing large photo and video
collections significantly benefits from fast, local SSD storage.

RAW image conversion and automatic image classification using TensorFlow
will be disabled on servers with 1 GB or less memory.

USING LET'S ENCRYPT HTTPS
------------------------------------------------------------------------

By default, a self-signed certificate will be used for HTTPS connections.
Browsers are going to show a security warning because of that. Depending
on your settings, they may also refuse connecting at all.

To get an official, free HTTPS certificate from Let's Encrypt, your server
needs a fully qualified public domain name, e.g. "photos.yourdomain.com".

You may add a static DNS entry (on DigitalOcean go to Networking > Domains)
for this, or use a Dynamic DNS service of your choice.

Once your server has a public domain name, please disable the self-signed
certificate and enable domain based routing in docker-compose.yml and
traefik.yaml (see inline instructions in !! UPPERCASE !!):

  ssh root@<YOUR SERVER IP>
  cd /opt/photoprism
  nano docker-compose.yml
  nano traefik.yaml

Then restart services in a terminal for the changes to take effect:

  docker compose stop
  docker compose up -d

To check logs for errors:

  docker compose logs -f

If you see a "letsencrypt.json" file permission error:

  chmod 600 /opt/photoprism/traefik/letsencrypt.json
  docker compose stop
  docker compose up -d

You should now be able to access your instance without security warnings:

  https://photos.yourdomain.com/

Note the first request may still fail while Traefik gets and installs the
new certificate. Try again after 30 seconds.