diff --git a/docker/examples/arm64/docker-compose.yml b/docker/examples/arm64/docker-compose.yml index 6179e54c0..b962d3c28 100644 --- a/docker/examples/arm64/docker-compose.yml +++ b/docker/examples/arm64/docker-compose.yml @@ -42,12 +42,14 @@ services: ports: - 2342:2342 # [local port]:[container port] environment: - PHOTOPRISM_HTTP_PORT: 2342 PHOTOPRISM_ADMIN_PASSWORD: "insecure" # PLEASE CHANGE: Your initial admin password (min 4 characters) - PHOTOPRISM_WORKERS: 2 # Limit the number of indexing workers to reduce system load + PHOTOPRISM_HTTP_PORT: 2342 # Built-in Web server port + PHOTOPRISM_HTTP_COMPRESSION: "none" # Improves transfer speed and bandwidth utilization (none or gzip) + PHOTOPRISM_WORKERS: 2 # Limits the number of indexing workers to reduce system load PHOTOPRISM_DEBUG: "false" # Run in debug mode (shows additional log messages) PHOTOPRISM_PUBLIC: "false" # No authentication required (disables password protection) PHOTOPRISM_READONLY: "false" # Don't modify originals directory (reduced functionality) + PHOTOPRISM_EXPERIMENTAL: "false" # Enable experimental features PHOTOPRISM_DISABLE_WEBDAV: "false" # Disable built-in WebDAV server PHOTOPRISM_DISABLE_SETTINGS: "false" # Users can not view or change settings PHOTOPRISM_DISABLE_TENSORFLOW: "false" # Don't use TensorFlow for image classification diff --git a/docker/examples/docker-compose.yml b/docker/examples/docker-compose.yml index 163555df0..80864999f 100644 --- a/docker/examples/docker-compose.yml +++ b/docker/examples/docker-compose.yml @@ -42,8 +42,9 @@ services: ports: - 2342:2342 # [local port]:[container port] environment: - PHOTOPRISM_HTTP_PORT: 2342 PHOTOPRISM_ADMIN_PASSWORD: "insecure" # PLEASE CHANGE: Your initial admin password (min 4 characters) + PHOTOPRISM_HTTP_PORT: 2342 # Built-in Web server port + PHOTOPRISM_HTTP_COMPRESSION: "gzip" # Improves transfer speed and bandwidth utilization (none or gzip) PHOTOPRISM_DEBUG: "false" # Run in debug mode (shows additional log messages) PHOTOPRISM_PUBLIC: "false" # No authentication required (disables password protection) PHOTOPRISM_READONLY: "false" # Don't modify originals directory (reduced functionality) diff --git a/docker/examples/macos/docker-compose.yml b/docker/examples/macos/docker-compose.yml index fd045caa8..788a73647 100644 --- a/docker/examples/macos/docker-compose.yml +++ b/docker/examples/macos/docker-compose.yml @@ -41,8 +41,9 @@ services: ports: - 2342:2342 # [local port]:[container port] environment: - PHOTOPRISM_HTTP_PORT: 2342 PHOTOPRISM_ADMIN_PASSWORD: "insecure" # PLEASE CHANGE: Your initial admin password (min 4 characters) + PHOTOPRISM_HTTP_PORT: 2342 # Built-in Web server port + PHOTOPRISM_HTTP_COMPRESSION: "gzip" # Improves transfer speed and bandwidth utilization (none or gzip) PHOTOPRISM_DEBUG: "false" # Run in debug mode (shows additional log messages) PHOTOPRISM_PUBLIC: "false" # No authentication required (disables password protection) PHOTOPRISM_READONLY: "false" # Don't modify originals directory (reduced functionality) diff --git a/docker/examples/sqlite/docker-compose.yml b/docker/examples/sqlite/docker-compose.yml index a3c25eef8..764a2f7aa 100644 --- a/docker/examples/sqlite/docker-compose.yml +++ b/docker/examples/sqlite/docker-compose.yml @@ -42,11 +42,13 @@ services: ports: - 2342:2342 # [local port]:[container port] environment: - PHOTOPRISM_HTTP_PORT: 2342 PHOTOPRISM_ADMIN_PASSWORD: "insecure" # PLEASE CHANGE: Your initial admin password (min 4 characters) + PHOTOPRISM_HTTP_PORT: 2342 # Built-in Web server port + PHOTOPRISM_HTTP_COMPRESSION: "gzip" # Improves transfer speed and bandwidth utilization (none or gzip) PHOTOPRISM_DEBUG: "false" # Run in debug mode (shows additional log messages) PHOTOPRISM_PUBLIC: "false" # No authentication required (disables password protection) PHOTOPRISM_READONLY: "false" # Don't modify originals directory (reduced functionality) + PHOTOPRISM_EXPERIMENTAL: "false" # Enable experimental features PHOTOPRISM_DISABLE_WEBDAV: "false" # Disable built-in WebDAV server PHOTOPRISM_DISABLE_SETTINGS: "false" # Users can not view or change settings PHOTOPRISM_DISABLE_TENSORFLOW: "false" # Don't use TensorFlow for image classification diff --git a/docker/examples/windows/docker-compose.yml b/docker/examples/windows/docker-compose.yml index 5f547d195..9c9a5b06f 100644 --- a/docker/examples/windows/docker-compose.yml +++ b/docker/examples/windows/docker-compose.yml @@ -43,11 +43,13 @@ services: ports: - 2342:2342 # [local port]:[container port] environment: - PHOTOPRISM_HTTP_PORT: 2342 PHOTOPRISM_ADMIN_PASSWORD: "insecure" # PLEASE CHANGE: Your initial admin password (min 4 characters) + PHOTOPRISM_HTTP_PORT: 2342 # Built-in Web server port + PHOTOPRISM_HTTP_COMPRESSION: "gzip" # Improves transfer speed and bandwidth utilization (none or gzip) PHOTOPRISM_DEBUG: "false" # Run in debug mode, shows additional log messages PHOTOPRISM_PUBLIC: "false" # No authentication required, disables password protection PHOTOPRISM_READONLY: "false" # Don't modify originals folder; disables import, upload, and delete + PHOTOPRISM_EXPERIMENTAL: "false" # Enable experimental features PHOTOPRISM_DISABLE_WEBDAV: "false" # Disable built-in WebDAV server PHOTOPRISM_DISABLE_SETTINGS: "false" # Users can not view or change settings PHOTOPRISM_DISABLE_TENSORFLOW: "false" # Don't use TensorFlow for image classification