Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start full container in Docker?

According to this github issue it should be possible to start a full container with Upstart, cron etc. with Docker 0.6 or later but how do I do that?

I was expecting that

docker run -t -i ubuntu /sbin/init 

would work just like

lxc-start -n ubuntu /sbin/init 

and I would get a login screen, but instead it displays nothing. I also tried to access it using ssh, but no luck. I'm using the default ubuntu image from Docker index.

like image 276
Epeli Avatar asked Oct 12 '13 09:10

Epeli


People also ask

How do I start all docker containers?

For restarting ALL (stopped and running) containers use docker restart $(docker ps -a -q) as in answer lower.

Can I start a docker container?

Docker containers can be started, stopped and restarted. When we stop a container, it is not removed but the status is changed to stopped and the process inside of the container is stopped.


2 Answers

docker run ubuntu /sbin/init appears to work flawlessly for me with 0.6.6. You won't get a login screen because Docker only manages the process. Instead, you can use docker ps -notrunc to get the full lxc container ID and then use lxc-attach -n <container_id> run bash in that container as root. sshd isn't installed in the container, so you can't ssh to it.

like image 149
blalor Avatar answered Oct 07 '22 04:10

blalor


You can use the ubuntu-upstart image:

docker run -t -i ubuntu-upstart:14.04 /sbin/init

Although this solution is unfortunately deprecated, it is good enough if you need a full OS container that 'drives' like a normal Ubuntu 12.04, 14.04 or 14.10 (change the :14.04 bit) system today. If no version is specified it defaults to 14.04. I have not used it heavily, and had some issues installing more complicated packages (e.g. dbus!), but it might work for you.

Alas Ubuntu has switched to systemd in more recent releases. Googling reveals that there seems to be ongoing work to make systemd work in a docker container without requiring elevated privileges, but it does not seem to be quite ready for prime-time. Hopefully it will be ready when 16.04 becomes LTS.

Another option is of course to use phusion/baseimage, but it has it's own approach for starting services. Seems better suited to minimal multi-process containers.

like image 42
NeilenMarais Avatar answered Oct 07 '22 03:10

NeilenMarais