Jump to content

PhotoPrism CE Build:231128-f48ff16ef


FunkyBuddha

Recommended Posts

PhotoPrism® is an AI-Powered Photos App for the 

Hidden Content

    Give reaction to this post to see the hidden content.
. It makes use of the latest technologies to tag and find pictures automatically without getting in your way. You can run it at home, on a private server, or in the cloud.

Hidden Content

    Give reaction to this post to see the hidden content.

To get a first impression, you are welcome to play with our 

Hidden Content

    Give reaction to this post to see the hidden content.
. Please be careful not to upload any private, unlawful or offensive pictures.

Feature Overview

Our mission is to provide the most user- and privacy-friendly solution to keep your pictures organized and accessible. That's why PhotoPrism was built from the ground up to run wherever you need it, without compromising freedom, privacy, or functionality:

  • Browse 

    Hidden Content

      Give reaction to this post to see the hidden content.
     and 

    Hidden Content

      Give reaction to this post to see the hidden content.
     without worrying about 

    Hidden Content

      Give reaction to this post to see the hidden content.
  • Easily find specific pictures using 

    Hidden Content

      Give reaction to this post to see the hidden content.
  • Recognizes 

    Hidden Content

      Give reaction to this post to see the hidden content.
  • Hidden Content

      Give reaction to this post to see the hidden content.
     of pictures based on their content and location
  • Hidden Content

      Give reaction to this post to see the hidden content.
     by hovering over them in 

    Hidden Content

      Give reaction to this post to see the hidden content.
     and 

    Hidden Content

      Give reaction to this post to see the hidden content.
  • Since the 

    Hidden Content

      Give reaction to this post to see the hidden content.
     is a 

    Hidden Content

      Give reaction to this post to see the hidden content.
    , it provides a native app-like experience, and you can conveniently install it on the home screen of all major operating systems and mobile devices
  • Includes four high-resolution 

    Hidden Content

      Give reaction to this post to see the hidden content.
     to bring back the memories of your favorite trips
  • Metadata is extracted and merged from Exif, XMP, and other sources such as Google Photos
  • Many more image properties like 

    Hidden Content

      Give reaction to this post to see the hidden content.
    , 

    Hidden Content

      Give reaction to this post to see the hidden content.
    , and 

    Hidden Content

      Give reaction to this post to see the hidden content.
     can be searched as well
  • Use 

    Hidden Content

      Give reaction to this post to see the hidden content.
     to securely backup iOS and Android phones in the background
  • WebDAV clients such as Microsoft's Windows Explorer and Apple's Finder 

    Hidden Content

      Give reaction to this post to see the hidden content.
     to PhotoPrism, allowing you to open, edit, and delete files from your computer as if they were local

 

Info:

Quote

Hidden Content

    Give reaction to this post to see the hidden content.

 

Docker Compose:

Quote

version: '3.5'

## FOR TEST AND DEVELOPMENT ONLY, DO NOT USE IN PRODUCTION   ##
## Setup:

Hidden Content

    Give reaction to this post to see the hidden content.
##

services:
  ## Stable Release
  photoprism-latest:
    image: photoprism/photoprism:latest
    security_opt:
      - seccomp:unconfined
      - apparmor:unconfined
    ports:
      - "2344:2342" # HTTP port (host:container)
    labels:
      - "traefik.enable=true"
      - "traefik.http.services.latest.loadbalancer.server.port=2342"
      - "traefik.http.routers.latest.entrypoints=websecure"
      - "traefik.http.routers.latest.rule=Host(`latest.localssl.dev`)"
      - "traefik.http.routers.latest.tls.domains[0].main=localssl.dev"
      - "traefik.http.routers.latest.tls.domains[0].sans=*.localssl.dev"
      - "traefik.http.routers.latest.tls=true"
    environment:
      PHOTOPRISM_INIT: "https"
      PHOTOPRISM_UID: ${UID:-1000}                         # user id, should match your host user id
      PHOTOPRISM_GID: ${GID:-1000}                         # group id
      PHOTOPRISM_ADMIN_USER: "admin"                       # admin login username
      PHOTOPRISM_ADMIN_PASSWORD: "photoprism"              # initial admin password (8-72 characters)
      PHOTOPRISM_AUTH_MODE: "password"                     # authentication mode (public, password)
      PHOTOPRISM_SITE_URL: "https://latest.localssl.dev/"  # server URL in the format "http(s)://domain.name(:port)/(path)"
      PHOTOPRISM_SITE_CAPTION: "Latest"
      PHOTOPRISM_SITE_DESCRIPTION: "Tags and finds pictures without getting in your way!"
      PHOTOPRISM_SITE_AUTHOR: "@photoprism_app"
      PHOTOPRISM_DEBUG: "true"
      PHOTOPRISM_READONLY: "false"
      PHOTOPRISM_EXPERIMENTAL: "false"
      PHOTOPRISM_HTTP_MODE: "debug"
      PHOTOPRISM_HTTP_HOST: "0.0.0.0"
      PHOTOPRISM_HTTP_PORT: 2342
      PHOTOPRISM_HTTP_COMPRESSION: "gzip"                  # improves transfer speed and bandwidth utilization (none or gzip)
      PHOTOPRISM_DATABASE_DRIVER: "mysql"
      PHOTOPRISM_DATABASE_SERVER: "mariadb:4001"
      PHOTOPRISM_DATABASE_NAME: "photoprism"
      PHOTOPRISM_DATABASE_USER: "root"
      PHOTOPRISM_DATABASE_PASSWORD: "photoprism"
      PHOTOPRISM_DISABLE_CHOWN: "false"       # disables updating storage permissions via chmod and chown on startup
      PHOTOPRISM_DISABLE_BACKUPS: "false"     # disables backing up albums and photo metadata to YAML files
      PHOTOPRISM_DISABLE_WEBDAV: "false"      # disables built-in WebDAV server
      PHOTOPRISM_DISABLE_SETTINGS: "false"    # disables settings UI and API
      PHOTOPRISM_DISABLE_PLACES: "false"      # disables reverse geocoding and maps
      PHOTOPRISM_DISABLE_EXIFTOOL: "false"    # disables creating JSON metadata sidecar files with ExifTool
      PHOTOPRISM_DISABLE_TENSORFLOW: "false"  # disables all features depending on TensorFlow
      PHOTOPRISM_DETECT_NSFW: "false"         # automatically flags photos as private that MAY be offensive (requires TensorFlow)
      PHOTOPRISM_UPLOAD_NSFW: "false"         # allows uploads that MAY be offensive (no effect without TensorFlow)
      PHOTOPRISM_RAW_PRESETS: "false"         # enables applying user presets when converting RAW images (reduces performance)
      PHOTOPRISM_THUMB_FILTER: "lanczos"      # resample filter, best to worst: blackman, lanczos, cubic, linear
      PHOTOPRISM_THUMB_UNCACHED: "true"       # enables on-demand thumbnail rendering (high memory and cpu usage)
      PHOTOPRISM_THUMB_SIZE: 2048             # pre-rendered thumbnail size limit (default 2048, min 720, max 7680)
      # PHOTOPRISM_THUMB_SIZE: 4096           # Retina 4K, DCI 4K (requires more storage); 7680 for 8K Ultra HD
      PHOTOPRISM_THUMB_SIZE_UNCACHED: 7680    # on-demand rendering size limit (default 7680, min 720, max 7680)
      PHOTOPRISM_JPEG_SIZE: 7680              # size limit for converted image files in pixels (720-30000)
      PHOTOPRISM_JPEG_QUALITY: 85             # a higher value increases the quality and file size of JPEG images and thumbnails (25-100)
      TF_CPP_MIN_LOG_LEVEL: 0                 # show TensorFlow log messages for development
    working_dir: "/photoprism"
    volumes:
      - "./storage:/photoprism/storage"
      - "./storage/originals:/photoprism/originals"

## Join shared "photoprism-develop" network
networks:
  default:
    name: photoprism-develop
    external: true

 

Link to comment

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...