photoprism/docker
Michael Mayer c39f1b0564 Setup: Add Podman example config and Makefile
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-12-31 19:48:56 +01:00
..
ddns
demo Templates: Code clean-up 2022-11-28 10:28:25 +01:00
develop MariaDB: Upgrade pre-installed client from v10.6 to v10.9 2022-11-17 08:56:11 +01:00
dummy
examples Setup: Add Podman example config and Makefile 2022-12-31 19:48:56 +01:00
goproxy
photoprism Docker: Add avahi-utils to ARMv7 images #2470 2022-10-20 17:06:29 +02:00
tensorflow
README.md Docs: Rename improvement(s) to enhancement(s) 2022-08-24 13:21:43 +02:00

Dockerfiles and Docker Compose Examples

Dockerfiles are text documents that contain all commands a user could call in a terminal to assemble an application image.

Docker Compose uses human-friendly YAML files to configure all application services so you can easily start them with a single command.

Why are we using Docker?

Containers are nothing new; Solaris Zones have been around for about 15 years, first released publicly in 2004. The chroot system call was introduced during development of Version 7 Unix in 1979. It is used ever since for hosting applications exposed to the public Internet.

Modern Linux containers are an incremental enhancement. A main advantage of Docker is that application images can be easily made available to users via Internet. It provides a common standard across most operating systems and devices, which saves our team a lot of time that we can then spend more effectively, for example, providing support and developing one of the many features that users are waiting for.

Human-readable and versioned Dockerfiles as part of our public source code also help avoid "works for me" moments and other unwelcome surprises by enabling teams to have the exact same environment everywhere in development, staging, and production.

Last but not least, virtually all file format parsers have vulnerabilities that just haven't been discovered yet. This is a known risk that can affect you even if your computer is not directly connected to the Internet. Running apps in a container with limited host access is an easy way to improve security without compromising performance and usability.

What about Virtual Machines?

A virtual machine running its own operating system provides more security, but typically has side effects such as lower performance and more difficult handling. You can also run Docker in a VM to get the best of both worlds. It's essentially what happens when you run dockerized applications on virtual cloud servers and operating systems other than Linux.

Alternatives

Building From Source

You can build and install PhotoPrism from the publicly available source code:

git clone https://github.com/photoprism/photoprism.git
cd photoprism
make all install DESTDIR=/opt/photoprism

Missing build dependencies must be installed manually as shown in our human-readable and versioned Dockerfile. You often don't need to use the exact same versions, so it's possible to replace packages with what is available in your environment.

Please note that we do not have the resources to provide private users with dependencies and TensorFlow libraries for their personal environments. We recommend giving Docker a try if you use Linux as it saves developers a lot of time when building, testing, and deploying complex applications like PhotoPrism. It also effectively helps avoid "works for me" moments and missing dependencies.

Installation Packages

An unofficial port is available for FreeBSD / FreeNAS users. You are invited to contribute by building and testing standalone packages for Linux distributions and other operating systems.

Updates are released several times a month, so maintaining the long list of dependencies for additional environments would currently consume too many of our resources.