February 5, 20197 yr Howdy, I'm trying to get the stock Ubuntu (server) running as a docker. It seems to install fine but after hitting start, it just stops after about 5 seconds. The Unraid Docker log stays completely empty. I've removed the image and reinstalled it already. I'm open to suggestions!
February 5, 20197 yr Not without seeing the generated docker run command, and the dockerHub page for the container
February 5, 20197 yr You have to give the container something to do. If you just run "ubuntu:latest" and nothing else it will just stop right after start. Run this instead: docker run -ti --rm ubuntu bash Your unraid server will download the image, start a new container with a random name and then present you with a bash terminal prompt. Then proceed as normal, "apt update && apt install myfavapp" etc
October 14, 20223 yr On 2/6/2019 at 5:04 AM, dee31797 said: You have to give the container something to do. If you just run "ubuntu:latest" and nothing else it will just stop right after start. Run this instead: docker run -ti --rm ubuntu bash Your unraid server will download the image, start a new container with a random name and then present you with a bash terminal prompt. Then proceed as normal, "apt update && apt install myfavapp" etc The answer really helps me! I am confused to the immediately stop for a week.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.