Replies: 2 comments
-
|
I was able to get it working. The issue was the formatting of my settings.yml/json. Once I followed the parameter formatting as show in documentation, I was able to get it working. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Yeah, it can be confusing since they all want different formats. Trips me up sometimes too. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I can't for the life of me figure out the issue here. It seems like maybe it's expecting some config parameters that I haven't provided in the settings.yml file? I have verified the API Key and Album UUID are correct. Any help would be appreciated!
I have the container running with image:
ghcr.io/immichframe/immichframe:latestBut I'm getting a 500 error at URL
http://<immich-server-ip>:8080Error:
`docker logs --tail=50 immichframe
LogLevel: Information
25-12-11 12:56:32 warn: Microsoft.AspNetCore.DataProtection.Repositories.EphemeralXmlRepository[50] Using an in-memory repository. Keys will not be persisted to storage.
25-12-11 12:56:32 warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[59] Neither user profile nor HKLM registry available. Using an ephemeral key repository. Protected data will be unavailable when application exits.
25-12-11 12:56:32 warn: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[35] No XML encryptor configured. Key {e0f1c468-087d-486e-a220-97828c409ab0} may be persisted to storage in unencrypted form.
25-12-11 12:56:32 info: Microsoft.Hosting.Lifetime[14] Now listening on: http://[::]:8080
25-12-11 12:56:32 info: Microsoft.Hosting.Lifetime[0] Application started. Press Ctrl+C to shut down.
25-12-11 12:56:32 info: Microsoft.Hosting.Lifetime[0] Hosting environment: Production
25-12-11 12:56:32 info: Microsoft.Hosting.Lifetime[0] Content root path: /app
25-12-11 12:56:59 fail: Microsoft.AspNetCore.Server.Kestrel[13] Connection id "0HNHORQNAI5FB", Request id "0HNHORQNAI5FB:00000001": An unhandled exception was thrown by the application. System.NullReferenceException: Object reference not set to an instance of an object. at ImmichFrame.WebApi.Models.ServerSettings.Validate() in /source/ImmichFrame.WebApi/Models/ServerSettings.cs:line 31 at ImmichFrame.WebApi.Helpers.Config.ConfigLoader.LoadConfig(String configPath) in /source/ImmichFrame.WebApi/Helpers/Config/ConfigLoader.cs:line 26 `
My docker-compose.yml:
services: immichframe: image: ghcr.io/immichframe/immichframe:latest container_name: immichframe restart: unless-stopped ports: - "8080:8080" volumes: - ./config:/app/Config:ro environment: TZ: "<my location>"My ./config/settings.json
{ "immichUrl": "http://<immich-server-ip>:2283", "apiKey": "", "albums": [ "" ], "slideshow": { "shuffle": true, "maxAgeDays": 365, "showVideos": false }, "auth": { "enabled": false } }Beta Was this translation helpful? Give feedback.
All reactions