sumnerboy
sumnerboy
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
is it possible that somewhere Immich is using the filename dttm to sort assets into daily buckets, as opposed to the photo metadata dttm?
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
No description
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
I'm pretty sure every time i checked the metadata in any client it was reported correctly.
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
Yep my phone timezone is correct. The photos are stamped with the correct date and time. The photos show correctly in my phone app. It is just the web app for "today". I'll keep digging, it does sound like something on my end is not right.
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
I hope I have provided enough details to help with diagnosing this issue 🙂
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
No description
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
No description
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
No description
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
No description
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
compose file;
version: "3.8"

services:
app:
image: ghcr.io/immich-app/immich-server:release
env_file: /var/data/config/immich/immich.env
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/data/immich/upload:/usr/src/app/upload
- /var/data/media/upload/library:/usr/src/app/upload/library
- /var/data/media/photos:/usr/src/app/photos:ro
networks:
- traefik_proxy
- internal
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.routers.immich.rule=Host(`immich.domain.tld`)"
- "traefik.http.routers.immich.entrypoints=https"
- "traefik.http.routers.immich.service=immich"
- "traefik.http.services.immich.loadbalancer.server.port=2283"

machinelearning:
image: ghcr.io/immich-app/immich-machine-learning:release
env_file: /var/data/config/immich/immich.env
volumes:
- /var/data/runtime/immich/cache:/cache
networks:
- internal

redis:
image: redis:6.2
networks:
- internal

db:
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
env_file: /var/data/config/immich/immich.env
volumes:
- /var/data/runtime/immich/database:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro
networks:
- internal
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]

db-backup:
image: tiredofit/db-backup:latest
env_file: /var/data/config/immich/immich-backup.env
volumes:
- /var/data/immich/database-dump:/backup
- /etc/localtime:/etc/localtime:ro
networks:
- internal

networks:
traefik_proxy:
external: true
internal:
driver: overlay
ipam:
config:
- subnet: 172.16.25.0/24
version: "3.8"

services:
app:
image: ghcr.io/immich-app/immich-server:release
env_file: /var/data/config/immich/immich.env
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/data/immich/upload:/usr/src/app/upload
- /var/data/media/upload/library:/usr/src/app/upload/library
- /var/data/media/photos:/usr/src/app/photos:ro
networks:
- traefik_proxy
- internal
deploy:
labels:
- "traefik.enable=true"
- "traefik.http.routers.immich.rule=Host(`immich.domain.tld`)"
- "traefik.http.routers.immich.entrypoints=https"
- "traefik.http.routers.immich.service=immich"
- "traefik.http.services.immich.loadbalancer.server.port=2283"

machinelearning:
image: ghcr.io/immich-app/immich-machine-learning:release
env_file: /var/data/config/immich/immich.env
volumes:
- /var/data/runtime/immich/cache:/cache
networks:
- internal

redis:
image: redis:6.2
networks:
- internal

db:
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
env_file: /var/data/config/immich/immich.env
volumes:
- /var/data/runtime/immich/database:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro
networks:
- internal
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]

db-backup:
image: tiredofit/db-backup:latest
env_file: /var/data/config/immich/immich-backup.env
volumes:
- /var/data/immich/database-dump:/backup
- /etc/localtime:/etc/localtime:ro
networks:
- internal

networks:
traefik_proxy:
external: true
internal:
driver: overlay
ipam:
config:
- subnet: 172.16.25.0/24
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
env file;
TZ=Pacific/Auckland

DB_HOSTNAME=db
DB_PORT=5432
DB_DATABASE_NAME=immich
DB_USERNAME=immich
DB_PASSWORD=secret

POSTGRES_HOST=db
POSTGRES_PORT=5432
POSTGRES_DB=immich
POSTGRES_USER=immich
POSTGRES_PASSWORD=secret
POSTGRES_INITDB_ARGS=--data-checksums
TZ=Pacific/Auckland

DB_HOSTNAME=db
DB_PORT=5432
DB_DATABASE_NAME=immich
DB_USERNAME=immich
DB_PASSWORD=secret

POSTGRES_HOST=db
POSTGRES_PORT=5432
POSTGRES_DB=immich
POSTGRES_USER=immich
POSTGRES_PASSWORD=secret
POSTGRES_INITDB_ARGS=--data-checksums
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
I am unable to access Immich via a local IP due to Traefik w/ Docker Swarm
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
Running Immich server v1.122.2
23 replies
IImmich
Created by sumnerboy on 12/10/2024 in #help-desk-support
Wrong timezone for photos in the web UI
I am running in Docker on Ubuntu 20, using Traefik as a reverse proxy in front of my Docker Swarm (5 node cluster)
23 replies