Plex-Meta-Manager ; lscr.io > Meisnate12 #26

Closed
opened 2023-12-16 11:37:11 -05:00 by sickprodigy · 6 comments
Owner

It seems everyone is moving from linuxserver.io to meisnate12 on github.
They now have their own docker config setup. So I think I will try to incorporate it. Maybe disable lscr version and enable meisnate12 just for testing.
That way we keep a backup of lscr in case I like that version better.

It seems everyone is moving from linuxserver.io to meisnate12 on github. They now have their own docker config setup. So I think I will try to incorporate it. Maybe disable lscr version and enable meisnate12 just for testing. That way we keep a backup of lscr in case I like that version better.
Author
Owner

Links to take note of:

https://github.com/meisnate12/Plex-Meta-Manager-Configs

https://metamanager.wiki/en/latest/home/guides/docker.html

This guy is very active in the community and looks like an up to date config to go based off of, so that's what I'm doing.
Just fixed tautulli to work with this also.

https://github.com/meisnate12/Plex-Meta-Manager-Configs/tree/master/bullmoose20

The readme explain everything, trying .env config for the first time. I don't like how in portainer you have to upload it. If the file is contained in the same directory as the mount directory though, it's kind of pointless to have it there.

Want to learn more about server secrets but I think i'll open another issue for that.

Links to take note of: https://github.com/meisnate12/Plex-Meta-Manager-Configs https://metamanager.wiki/en/latest/home/guides/docker.html This guy is very active in the community and looks like an up to date config to go based off of, so that's what I'm doing. Just fixed tautulli to work with this also. https://github.com/meisnate12/Plex-Meta-Manager-Configs/tree/master/bullmoose20 The readme explain everything, trying .env config for the first time. I don't like how in portainer you have to upload it. If the file is contained in the same directory as the mount directory though, it's kind of pointless to have it there. Want to learn more about server secrets but I think i'll open another issue for that.
Author
Owner

Current config that's working


version: "2.1"
services:
# Plex Collections Manager
  plex-meta-manager:
    #command:
    #  - -t16:37
    image: meisnate12/plex-meta-manager # lscr.io/linuxserver/plex-meta-manager:latest
    container_name: plex-meta-manager-meisnate12
    environment:
      - PUID=1000
      - PGID=1006
      - TZ=America/New_York
      # - PMM_CONFIG=/config/config.yml #optional
      # - PMM_TIME=2:12 #optional
      - PMM_RUN=true #optional
      # - PMM_TEST=False #optional
      # - PMM_NO_MISSING=False #optional
    volumes:
      - /srv/samba/media/Documents/prodigy/Coding-Programming/docker-containers/plex-meta-manager-meisnate12:/config:rw
    entrypoint:
      - python3
      - plex_meta_manager.py
    restart: unless-stopped
    stdin_open: true    # to attach to containers
    tty: true           # also used to attach to containers
#    network_mode: service:wireguard     # To run through vpn service container, in turn UI port must be forwarded inside vpn. No local access unless otherwise defined
    networks:           # Specify network for container
      - homelab
networks:    # I don't know why but you have to specify the network 2x. In service, and in this tag area..
  homelab:
    external: true      # This option causes compose to join the above network instead of making a _default one (supposedly)

Bullmoose20 pmm config has a TON of content though. Kind of overwhelming.
Should have commented out majority of things, then slowly bring back up.

Current config that's working ``` version: "2.1" services: # Plex Collections Manager plex-meta-manager: #command: # - -t16:37 image: meisnate12/plex-meta-manager # lscr.io/linuxserver/plex-meta-manager:latest container_name: plex-meta-manager-meisnate12 environment: - PUID=1000 - PGID=1006 - TZ=America/New_York # - PMM_CONFIG=/config/config.yml #optional # - PMM_TIME=2:12 #optional - PMM_RUN=true #optional # - PMM_TEST=False #optional # - PMM_NO_MISSING=False #optional volumes: - /srv/samba/media/Documents/prodigy/Coding-Programming/docker-containers/plex-meta-manager-meisnate12:/config:rw entrypoint: - python3 - plex_meta_manager.py restart: unless-stopped stdin_open: true # to attach to containers tty: true # also used to attach to containers # network_mode: service:wireguard # To run through vpn service container, in turn UI port must be forwarded inside vpn. No local access unless otherwise defined networks: # Specify network for container - homelab networks: # I don't know why but you have to specify the network 2x. In service, and in this tag area.. homelab: external: true # This option causes compose to join the above network instead of making a _default one (supposedly) ``` Bullmoose20 pmm config has a TON of content though. Kind of overwhelming. Should have commented out majority of things, then slowly bring back up.
Author
Owner

Seems some variables from lscr works for meisnate12 version.
Didn't think that would be possible but here we are.
Has to have used the outline from lscr. Anyways,,
we'll see how this goes. May have to delete the old collections, didn't see anything about them auto deleting unmanaged collections.

Seems some variables from lscr works for meisnate12 version. Didn't think that would be possible but here we are. Has to have used the outline from lscr. Anyways,, we'll see how this goes. May have to delete the old collections, didn't see anything about them auto deleting unmanaged collections.
Author
Owner

Forgot to add :nightly after the docker image in meisnate12

Forgot to add :nightly after the docker image in meisnate12
Author
Owner

Forgot to lower the gb used(20gb in default bullmoose12 config) now 2gb, now running at least instead of straight crashing.
Everytime I mass delete collections though it's not right. Crashing plex. Don't know what's up.

Forgot to lower the gb used(20gb in default bullmoose12 config) now 2gb, now running at least instead of straight crashing. Everytime I mass delete collections though it's not right. Crashing plex. Don't know what's up.
Author
Owner
Working great now moved to https://gitea.rcs1.xyz/sickprodigy/plex-meta-manager/issues
Sign in to join this conversation.