docs icon indicating copy to clipboard operation
docs copied to clipboard

Feature Request Unraid Community Apps

Open sisensee opened this issue 1 year ago • 5 comments

Unraid Community Apps docker/app template. Much easier to install via docker app integration.

sisensee avatar Jan 18 '24 23:01 sisensee

Hi, not an unraid user, and from what I've seen you need an instance to generate the manifest. I'm more than happy to help out, and host the manifest file if someone does the process in their instance.

EduardoOliveira avatar Jan 19 '24 00:01 EduardoOliveira

Never tried or even read docs on it but I will gladly help out!

sisensee avatar Jan 19 '24 03:01 sisensee

I've gone through this video, https://www.youtube.com/watch?v=g6iMwea-HLY , can you guys validate the steps?

EduardoOliveira avatar Jan 23 '24 15:01 EduardoOliveira

I currently use MMP on multiple Unraid servers myself, and the best success I had was using an application like Dockge to do a compose file:

version: "3.6"
services:
  agent:
    image: ghcr.io/maker-management-platform/agent:latest
    container_name: agent
    volumes:
      - /mnt/user/appdata/mmp/library:/library # should contain your project library
      - /mnt/user/appdata/mmp/data:/data # will contain config and state files
    ports:
      - 8000:8000
    restart: unless-stopped
  ui:
    image: ghcr.io/maker-management-platform/mmp-ui:latest
    container_name: ui
    ports:
      - 8081:8081
    environment:
      - AGENT_ADDRESS=agent:8000
    restart: unless-stopped

It's been working reliably for me for organizing 3D Prints so far.

What would be easier is if the agent and ui were both packaged in one docker container, then support for Unraid single-click deployment would be much easier.

iotemylabs avatar Sep 04 '24 16:09 iotemylabs

A V2 version is in the works, and among other things it's a single docker image

EduardoOliveira avatar Sep 04 '24 19:09 EduardoOliveira