I
Immich2mo ago
Grub

help lost

I am lost which files to you configure copy example.env to .env, .env ImmichServerUrl=192.168.1.154:2283 ApiKey=83V AuthenticationSecret= Interval=10 TransitionDuration=2 ImageZoom=true Layout=splitview DownloadImages=false ShowMemories=false ShowFavorites=false ShowArchived=false ImagesFromDays= ImagesFromDate= ImagesUntilDate= RenewImagesDuration=30 Rating=5 Albums=ALBUM1,ALBUM2 ExcludedAlbums=ALBUM3,ALBUM4 People=PERSON1,PERSON2 Webcalendars=https://calendar.mycalendar.com/basic.ics,webcal://calendar.mycalendar.com/basic.ics RefreshAlbumPeopleInterval=12 ShowClock=true ClockFormat=hh:mm ShowPhotoDate=true PhotoDateFormat=yyyy-MM-dd ShowImageDesc=true ShowPeopleDesc=true ShowImageLocation=true ImageLocationFormat=City,State,Country PrimaryColor=#F5DEB3 SecondaryColor=#000000 Style=none BaseFontSize=17px WeatherApiKey= ShowWeatherDescription=true UnitSystem=imperial WeatherLatLong= Language=en Webhook= docker-compose.yml name: immichframe services: immichframe: container_name: immichframe image: ghcr.io/immichframe/immichframe:latest restart: on-failure # volumes: # - PATH/TO/CONFIG:/app/Config # - PATH/TO/CUSTOMCSS/custom.css:/app/wwwroot/static/custom.css ports: - "32700:32701" env_file: - .env environment: TZ: "Australia/Sydney"
4 Replies
Immich
Immich2mo ago
:wave: Hey @Grub, Thanks for reaching out to us. Please carefully read this message and follow the recommended actions. This will help us be more effective in our support effort and leave more time for building Immich :immich:. References - Container Logs: docker compose logs docs - Container Status: docker ps -a docs - Reverse Proxy: https://immich.app/docs/administration/reverse-proxy - Code Formatting https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline#h_01GY0DAKGXDEHE263BCAYEGFJA Checklist I have... 1. :blue_square: verified I'm on the latest release(note that mobile app releases may take some time). 2. :blue_square: read applicable release notes. 3. :blue_square: reviewed the FAQs for known issues. 4. :blue_square: reviewed Github for known issues. 5. :blue_square: tried accessing Immich via local ip (without a custom reverse proxy). 6. :blue_square: uploaded the relevant information (see below). 7. :blue_square: tried an incognito window, disabled extensions, cleared mobile app cache, logged out and back in, different browsers, etc. as applicable (an item can be marked as "complete" by reacting with the appropriate number) Information In order to be able to effectively help you, we need you to provide clear information to show what the problem is. The exact details needed vary per case, but here is a list of things to consider: - Your docker-compose.yml and .env files. - Logs from all the containers and their status (see above). - All the troubleshooting steps you've tried so far. - Any recent changes you've made to Immich or your system. - Details about your system (both software/OS and hardware). - Details about your storage (filesystems, type of disks, output of commands like fdisk -l and df -h). - The version of the Immich server, mobile app, and other relevant pieces. - Any other information that you think might be relevant. Please paste files and logs with proper code formatting, and especially avoid blurry screenshots. Without the right information we can't work out what the problem is. Help us help you ;) If this ticket can be closed you can use the /close command, and re-open it later if needed.
LifeOfVio
LifeOfVio2mo ago
you are talking about #immich-frame right? can you ask your question there. there are three ways how to deploy immich frame, all of them are listed here: https://immichframe.online/docs/getting-started/installation/docker The simplest way would be for you to just use the docker compose, leave the settings you don't need with a # in front of the line, this will comment out the line.
Grub
GrubOP5w ago
Sorry that is right immich-Frame
Eddified
Eddified4w ago
I have used the docker way to install it. i added this part to my immich docker-compose.yaml:
immichframe:
container_name: immichframe
image: ghcr.io/immichframe/immichframe:latest
restart: on-failure
volumes:
- ./frame:/app/Config
ports:
- "8080:8080"
environment:
TZ: "<YOUR_TZ_HERE>"
immichframe:
container_name: immichframe
image: ghcr.io/immichframe/immichframe:latest
restart: on-failure
volumes:
- ./frame:/app/Config
ports:
- "8080:8080"
environment:
TZ: "<YOUR_TZ_HERE>"
Then, I created a file called frame/Settings.json relative to the local directory here is the contents of Settings.json:
{
"ImmichServerUrl": "https://photos.yourdomain.com",
"ApiKey": "your-api-key-here",
"Interval": 10,
"TransitionDuration": 2,
"ImageZoom": true,
"Layout": "single",
"DownloadImages": false,
"ShowMemories": false,
"ShowFavorites": false,
"ShowArchived": false,
"ImagesFromDate": "2006-01-01",
"RenewImagesDuration": 30,
"RefreshAlbumPeopleInterval": 12,
"ShowClock": false,
"ClockFormat": "hh:mm",
"ShowPhotoDate": true,
"PhotoDateFormat": "yyyy-MM-dd",
"ShowImageDesc": true,
"ShowPeopleDesc": true,
"ShowImageLocation": true,
"ImageLocationFormat": "City,State,Country",
"PrimaryColor": "#F5DEB3",
"SecondaryColor": "#000000",
"Style": "none",
"BaseFontSize": "17px",
"ShowWeatherDescription": true,
"UnitSystem": "imperial",
"Language": "en"
}
{
"ImmichServerUrl": "https://photos.yourdomain.com",
"ApiKey": "your-api-key-here",
"Interval": 10,
"TransitionDuration": 2,
"ImageZoom": true,
"Layout": "single",
"DownloadImages": false,
"ShowMemories": false,
"ShowFavorites": false,
"ShowArchived": false,
"ImagesFromDate": "2006-01-01",
"RenewImagesDuration": 30,
"RefreshAlbumPeopleInterval": 12,
"ShowClock": false,
"ClockFormat": "hh:mm",
"ShowPhotoDate": true,
"PhotoDateFormat": "yyyy-MM-dd",
"ShowImageDesc": true,
"ShowPeopleDesc": true,
"ShowImageLocation": true,
"ImageLocationFormat": "City,State,Country",
"PrimaryColor": "#F5DEB3",
"SecondaryColor": "#000000",
"Style": "none",
"BaseFontSize": "17px",
"ShowWeatherDescription": true,
"UnitSystem": "imperial",
"Language": "en"
}
@Grub did you get it working? so I personally did not use .env file. The above method uses Settings.json instead

Did you find this page helpful?