hello, anyone help me to create a docker for UNRAID system?
i don’t wont a VM with windows to run it ( but now i have this config )
I have no idea how to do it.
in the last month I have been doing tests, copying dockerfile and docker-compose, files, but I’m not familiar with it.
I also asked for help in the unraid server, they told me that emperorserver doesn’t want a docker download scheme with them.
please help me
Our Server Manager download for Linux (amd64) comes with a Dockerfile and docker-compose.yml file in the download.
I’m not sure what specifically you mean by us “not wanting a download scheme with them”. We don’t provide a Docker image on a public registry for Server Manager as it is a paid application, and having a public Docker image for it would be confusing for users that do not have a license.
I can’t speak to the specifics of how unraid handles docker (we have no experience of unraid), so I’m not sure about any complexities that may be added via the UI or terminal access, but I believe the following general flow would work:
Open a terminal on the unraid server, and find the download, and unzip it if necessary
cd into the unzipped folder, so you are at the same level as server-manager and Dockerfile etc.
Run docker build -t somedockerimagename:latest .
Use unraid to set up a docker container with the image name somedockerimagename:latest. You should be able to use the docker-compose.yml in the ACSM zip to guide which volume mounts and port bindings you need to specify in the unraid UI.
Unfortunately I’ve not used Unraid before so I can’t advise on the specifics of setting up a docker container, but the following documentation should help:
If you have command line access to docker-compose, you may be able to use the provided docker-compose.yml to set up the Server Manager. To do this, edit the docker-compose.yml to your liking, create the folders that are used as volume mounts using mkdir and then run docker-compose up -d.