26

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.

errordeveloper
  • 6,044
  • 6
  • 37
  • 50
Epeli
  • 16,564
  • 10
  • 63
  • 76

2 Answers2

22

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.

blalor
  • 602
  • 4
  • 9
  • 1
    My Docker (version `19.03.6`) software running on an Ubuntu 18.04.4 host (and running an Ubuntu image/container) appears to revolt against this maneuver, ending in a `Freezing execution.`. Maybe this is due to modern Docker (we are 6+ years beyond the above post) frowning upon this `/sbin/init` behavior? As a Docker newbie, I can only speculate. – Johnny Utahh Mar 17 '20 at 22:52
  • nspawn and podman are easier to have Systemd inside container, podman use the same commands as docker so need no learning – Badr Elmers Oct 02 '20 at 14:08
1

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.

Greg
  • 9,849
  • 5
  • 26
  • 33
NeilenMarais
  • 2,431
  • 1
  • 22
  • 21
  • Do you have a link to the depreciation of this solution? – brujoand Apr 19 '16 at 09:52
  • 2
    @brujoand It is deprecated in the sense that ubuntu has moved over to using systemd, so the work done to make upstart work in a docker container will not be useful for versions of ubuntu after 14.10. – NeilenMarais Apr 26 '16 at 06:14
  • My current client (at time of writing) uses 14.04 and does not seem to have plans to upgrade until official support ends, so it's not deprecated for me! – Asfand Qazi Dec 28 '17 at 12:16