conor
IImmich
•Created by conor on 3/4/2023 in #help-desk-support
Can't access Web UI
Just a question when I add my photos the ones I have taken save to the right date but ones sent to me just go to today?
9 replies
IImmich
•Created by conor on 3/4/2023 in #help-desk-support
Can't access Web UI
ye that worked tysm
9 replies
IImmich
•Created by conor on 3/4/2023 in #help-desk-support
Can't access Web UI
does that mean I can't use port 8080 as I use it for qbittorent
9 replies
IImmich
•Created by conor on 3/4/2023 in #help-desk-support
Can't access Web UI
There's my compose
9 replies
IImmich
•Created by conor on 3/4/2023 in #help-desk-support
Can't access Web UI
redis:
container_name: immich_redis
image: redis:6.2
restart: always
database:
container_name: immich_postgres
image: postgres:14
env_file:
- stack.env
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
PG_DATA: /var/lib/postgresql/data
volumes:
- pgdata:/var/lib/postgresql/data
restart: always
immich-proxy:
container_name: immich_proxy
image: altran1502/immich-proxy:release
environment:
# Make sure these values get passed through from the env file
- IMMICH_SERVER_URL
- IMMICH_WEB_URL
ports:
- 2283:2283
logging:
driver: none
depends_on:
- immich-server
restart: always
volumes:
pgdata:
model-cache:
9 replies
IImmich
•Created by conor on 3/4/2023 in #help-desk-support
Can't access Web UI
version: "3.8"
services:
immich-server:
container_name: immich_server
image: altran1502/immich-server:release
entrypoint: [ "/bin/sh", "./start-server.sh" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- stack.env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always
immich-microservices:
container_name: immich_microservices
image: altran1502/immich-server:release
entrypoint: [ "/bin/sh", "./start-microservices.sh" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
env_file:
- stack.env
environment:
- NODE_ENV=production
depends_on:
- redis
- database
restart: always
immich-machine-learning:
container_name: immich_machine_learning
image: altran1502/immich-machine-learning:release
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- model-cache:/cache
env_file:
- stack.env
environment:
- NODE_ENV=production
restart: always
immich-web:
container_name: immich_web
image: altran1502/immich-web:release
entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
env_file:
- stack.env
restart: always
9 replies