Jump to content

TheMarf

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by TheMarf

  1. Hello. Brand new to docker-compose and trying to decipher #1 about WebUI links. I'm currently running Immich installed via docker compose as that was recommended over the CA version. If I wanted to add the labels with the WebUI link do I need to add it to the .yml for the entire stack, or do I need to add in just one section (the server)? Below is my current compose. version: "3.8" # # WARNING: Make sure to use the docker-compose.yml of the current release: # # https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml # # The compose file on main may not be compatible with the latest release. # name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} command: [ "start.sh", "immich" ] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro env_file: - .env ports: - 2283:3001 depends_on: - redis - database restart: always immich-microservices: container_name: immich_microservices image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/hardware-transcoding # file: hwaccel.transcoding.yml # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding command: [ "start.sh", "microservices" ] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro env_file: - .env depends_on: - redis - database restart: always immich-machine-learning: container_name: immich_machine_learning # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag. # Example tag: ${IMMICH_VERSION:-release}-cuda image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - model-cache:/cache env_file: - .env restart: always redis: container_name: immich_redis image: redis:6.2-alpine@sha256:afb290a0a0d0b2bd7537b62ebff1eb84d045c757c1c31ca2ca48c79536c0de82 restart: always database: container_name: immich_postgres image: tensorchord/pgvecto-rs:pg14-v0.1.11@sha256:0335a1a22f8c5dd1b697f14f079934f5152eaaa216c09b61e293be285491f8ee env_file: - .env environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} volumes: - pgdata:/var/lib/postgresql/data restart: always volumes: pgdata: model-cache: Here is how my immich dockers currently look thanks to FolderView.
  2. Thank you. My gut said it was provider side. I pulled new OVPN files last night and ran into the same, but after reading your post today I went to grab new files and lo and behold there were new servers for the locations I had been trying. Worked like a charm. Must have been some sort of outage over the past week or so. Every time I tried new files it still didnt work, out of the 5 servers I tried they are all removed from the new list. Thanks for confirming.
  3. Hi! All of a sudden I'm unable to view my UI for this docker with VPN enabled, UI access is fine with it disabled. Had been working fine for a while. Not sure when the issue began as I rarely check on qbit as I primarily utilize sabnzbd. VPN Provider: Privado Actions Taken: Changed VPN password Replaced OVPN files Panicked Deleted and rebuilt the docker Followed the instructions here to make sure I addressed the UI port correctly. Searched reddit/github/here etc to see if I could find anything specific Edited the openvpn file to uncomment the section about version later than 2.5 (didn't resolve, was unsure if it'd help) Attempted to read the container logs via unraid UI. Found: "WARNING: file 'credentials.conf' is group or others accessible" and was unsure if it was a meaningful error Followed instructions on page 1 of the thread to get logs (I even waited an extra minute) Removed VPN name/pw from log. Posted on here trying to add a bit of humor and jest as I'm sure you get angry people yelling at you all the time ???? Profit? supervisord.log
  4. Deleted the entire contents of the codecs folder which seems to have done the trick for now. Edit: have had to do this once or twice, has always resolved the issue. Set up a script to delete the codecs folder once a week and so far the issue hasn't occurred since.
  5. Setup an unraid server a month or so ago. Have had plex setup via linuxservers docker and it's been running great with zero issues. All of a sudden for the past day or two plex just refuses to play anything from my server (but can play from others). I've restarted the docker a bunch of times, updated it today. Still can't get anything to play. I can get to plex server settings/dashboard via unraid. When i try to play an episode it shows up in the dashboard as playing (episode time progressing) - but nothing is actually going. With me being new, what are the first few things that I should always try if I have a plex issue? Screenshots here demonstrating episode playing. https://imgur.com/a/yUQrgrX
×
×
  • Create New...