mirror of
https://github.com/tubearchivist/tubearchivist-plex.git
synced 2026-03-23 20:37:11 +00:00
[GH-ISSUE #89] [Installation Help]: Plex Not Detecting Videos #36
Labels
No labels
bug
bug
documentation
duplicate
enhancement
good first issue
help wanted
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
tubearchivist/archived-tubearchivist-plex#36
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Scalegj on GitHub (Feb 9, 2025).
Original GitHub issue: https://github.com/tubearchivist/tubearchivist-plex/issues/89
Installation instructions
Operating System
UGREEN NAS (Docker)
Your installation or setup question
I have installed both the scanner and the agent based on the instructions, and Plex allows me to select them when I make my youtube library. However, Plex is not showing any videos downloaded via tube archivist. There are also no logs produced, however Plex is giving related errors in the console.
Here is my Tubearchivist docker-compose file:
version: '3.5'
services:
tubearchivist:
container_name: tubearchivist
restart: always
image: bbilly1/tubearchivist
ports:
- 8000:8000
volumes:
- /volume1/Video/Youtube:/youtube
- ./cache:/cache
environment:
- ES_URL=http://archivist-es:9200 # needs protocol e.g. http and port
- REDIS_HOST=archivist-redis # don't add protocol
- HOST_UID=1000
- HOST_GID=10
- TA_HOST=10.0.0.19 # set your host name
- TA_USERNAME=Redacted # your initial TA credentials
- TA_PASSWORD=Redacted # your initial TA credentials
- ELASTIC_PASSWORD=Redacted # set password for Elasticsearch
- TZ=America/New_York # set your time zone
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 2m
timeout: 10s
retries: 3
start_period: 30s
depends_on:
- archivist-es
- archivist-redis
archivist-redis:
image: redis/redis-stack-server
container_name: archivist-redis
restart: always
expose:
- "6379"
volumes:
- ./redis:/data
depends_on:
- archivist-es
archivist-es:
image: bbilly1/tubearchivist-es # only for amd64, or use official es 8.16.0
container_name: archivist-es
restart: always
environment:
- "ELASTIC_PASSWORD=Redacted" # matching Elasticsearch password
- "ES_JAVA_OPTS=-Xms1g -Xmx1g"
- "xpack.security.enabled=true"
- "discovery.type=single-node"
- "path.repo=/usr/share/elasticsearch/data/snapshot"
volumes:
- es:/usr/share/elasticsearch/data # check for permission error when using bind mount, see readme
expose:
- "9200"
volumes:
es:
Relevant log output
@Scalegj commented on GitHub (Feb 9, 2025):
I have spent 2 hours trying to find a solution to this issue, 5 minutes after submitting an issue I fixed it, lol. I discovered a 'mod' for Plex that actually installs all the stuff you need automatically (as long as you are using the Linuxserver.io version of the docker container), and now it works beautifully. https://github.com/Ogglord/plex-tubearchivist