-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request Unraid Community Apps #16
Comments
Hi, not an unraid user, and from what I've seen you need an instance to generate the manifest. |
Never tried or even read docs on it but I will gladly help out! |
I've gone through this video, https://www.youtube.com/watch?v=g6iMwea-HLY , can you guys validate the steps? |
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. |
A V2 version is in the works, and among other things it's a single docker image |
Unraid Community Apps docker/app template. Much easier to install via docker app integration.
The text was updated successfully, but these errors were encountered: