mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 12:29:07 +00:00
Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0caf8692fb | ||
|
|
d8968d136a | ||
|
|
b6dac86e04 | ||
|
|
d884118827 | ||
|
|
c22f8804ad | ||
|
|
67c6b089e3 | ||
|
|
7e35fe7f32 | ||
|
|
37cd856425 | ||
|
|
a5f521b1b1 | ||
|
|
e833b26944 | ||
|
|
4ab0625de0 | ||
|
|
a8db7a386f | ||
|
|
f0fbe3ffc8 | ||
|
|
4a6ee64b63 | ||
|
|
892dcc7ca4 | ||
|
|
c844956bab | ||
|
|
3e14c92e21 | ||
|
|
6786e7350d | ||
|
|
b17412ef7c | ||
|
|
1463b81942 | ||
|
|
64c7d8be7c | ||
|
|
06e46b93cf | ||
|
|
b297ae8b42 | ||
|
|
017c6c22d5 | ||
|
|
74a4a9abf4 | ||
|
|
d2d1f713a4 |
22
Changelog.md
22
Changelog.md
@@ -1,7 +1,27 @@
|
|||||||
## 0.9.3 (release date: pending)
|
## 0.9.6 (release date: 2014-02-17)
|
||||||
|
|
||||||
|
* Fixed a bug in `my_init`: child processes that have been adopted during execution of init scripts are now properly reaped.
|
||||||
|
* Much improved `my_init`:
|
||||||
|
* It is now possible to run and watch a custom command, possibly in addition to running runit. See "Running a one-shot command in the container" in the README.
|
||||||
|
* It is now possible to skip running startup files such as /etc/rc.local.
|
||||||
|
* Shutdown is not much faster. It previously took a few seconds, but it is now almost instantaneous.
|
||||||
|
* It ensures that all processes in the container are properly shut down with SIGTERM, even those that are not direct child processes of `my_init`.
|
||||||
|
* `setuser` now also sets auxilliary groups, as well as more environment variables such as `USER` and `UID`.
|
||||||
|
|
||||||
|
## 0.9.5 (release date: 2014-02-06)
|
||||||
|
|
||||||
|
* Environment variables are now no longer reset by runit. This is achieved by running `runsvdir` directly instead of through Debian's `runsvdir-start`.
|
||||||
|
* The insecure SSH key is now disabled by default. You have to explicitly opt-in to use it.
|
||||||
|
|
||||||
|
## 0.9.4 (release date: 2014-02-03)
|
||||||
|
|
||||||
|
* Fixed syslog-ng startup problem.
|
||||||
|
|
||||||
|
## 0.9.3 (release date: 2014-01-31)
|
||||||
|
|
||||||
* It looks like Docker changed their Ubuntu 12.04 base image, thereby breaking our Dockerfile. This has been fixed.
|
* It looks like Docker changed their Ubuntu 12.04 base image, thereby breaking our Dockerfile. This has been fixed.
|
||||||
* The init system (`/sbin/my_init`) now supports running scripts during startup. You can put startup scripts `/etc/my_init.d`. `/etc/rc.local` is also run during startup.
|
* The init system (`/sbin/my_init`) now supports running scripts during startup. You can put startup scripts `/etc/my_init.d`. `/etc/rc.local` is also run during startup.
|
||||||
|
* To improve security, the base image no longer contains pregenerated SSH host keys. Instead, users of the base image are encouraged to regenerate one in their Dockerfile. If the user does not do that, then random SSH host keys are generated during container boot.
|
||||||
|
|
||||||
## 0.9.2 (release date: 2013-12-11)
|
## 0.9.2 (release date: 2013-12-11)
|
||||||
|
|
||||||
|
|||||||
17
Makefile
17
Makefile
@@ -1,17 +1,28 @@
|
|||||||
NAME = phusion/baseimage
|
NAME = phusion/baseimage
|
||||||
VERSION = 0.9.3
|
VERSION = 0.9.6
|
||||||
|
|
||||||
.PHONY: all build tag_latest release
|
.PHONY: all build test tag_latest release ssh
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker build -t $(NAME):$(VERSION) -rm image
|
docker build -t $(NAME):$(VERSION) -rm image
|
||||||
|
|
||||||
|
test:
|
||||||
|
env NAME=$(NAME) VERSION=$(VERSION) ./test/runner.sh
|
||||||
|
|
||||||
tag_latest:
|
tag_latest:
|
||||||
docker tag $(NAME):$(VERSION) $(NAME):latest
|
docker tag $(NAME):$(VERSION) $(NAME):latest
|
||||||
|
|
||||||
release: tag_latest
|
release: test tag_latest
|
||||||
@if ! docker images phusion/baseimage | awk '{ print $$2 }' | grep -q -F $(VERSION); then echo "$(NAME) version $(VERSION) is not yet built. Please run 'make build'"; false; fi
|
@if ! docker images phusion/baseimage | awk '{ print $$2 }' | grep -q -F $(VERSION); then echo "$(NAME) version $(VERSION) is not yet built. Please run 'make build'"; false; fi
|
||||||
docker push $(NAME)
|
docker push $(NAME)
|
||||||
@echo "*** Don't forget to create a tag. git tag rel-$(VERSION) && git push origin rel-$(VERSION)"
|
@echo "*** Don't forget to create a tag. git tag rel-$(VERSION) && git push origin rel-$(VERSION)"
|
||||||
|
|
||||||
|
ssh:
|
||||||
|
chmod 600 image/insecure_key.pub
|
||||||
|
@ID=$$(docker ps | grep -F "$(NAME):$(VERSION)" | awk '{ print $$1 }') && \
|
||||||
|
if test "$$ID" = ""; then echo "Container is not running."; exit 1; fi && \
|
||||||
|
IP=$$(docker inspect $$ID | grep IPAddr | sed 's/.*: "//; s/".*//') && \
|
||||||
|
echo "SSHing into $$IP" && \
|
||||||
|
ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i image/insecure_key root@$$IP
|
||||||
|
|||||||
140
README.md
140
README.md
@@ -2,12 +2,7 @@
|
|||||||
|
|
||||||
Baseimage-docker is a special [Docker](http://www.docker.io) image that is configured for correct use within Docker containers. It is Ubuntu, plus modifications for Docker-friendliness. You can use it as a base for your own Docker images.
|
Baseimage-docker is a special [Docker](http://www.docker.io) image that is configured for correct use within Docker containers. It is Ubuntu, plus modifications for Docker-friendliness. You can use it as a base for your own Docker images.
|
||||||
|
|
||||||
Baseimage-docker is available for pulling from on [the Docker registry](https://index.docker.io/u/phusion/baseimage/)!
|
Baseimage-docker is available for pulling from [the Docker registry](https://index.docker.io/u/phusion/baseimage/)!
|
||||||
|
|
||||||
* **Github**: https://github.com/phusion/baseimage-docker
|
|
||||||
* **Discussion forum**: https://groups.google.com/d/forum/passenger-docker
|
|
||||||
* **Twitter**: https://twitter.com/phusion_nl
|
|
||||||
* **Blog**: http://blog.phusion.nl/
|
|
||||||
|
|
||||||
### What are the problems with the stock Ubuntu base image?
|
### What are the problems with the stock Ubuntu base image?
|
||||||
|
|
||||||
@@ -15,6 +10,7 @@ Ubuntu is not designed to be run inside docker. Its init system, Upstart, assume
|
|||||||
|
|
||||||
Baseimage-docker gets everything right. The "Contents" section describes all the things that it modifies.
|
Baseimage-docker gets everything right. The "Contents" section describes all the things that it modifies.
|
||||||
|
|
||||||
|
<a name="why_use"></a>
|
||||||
### Why use baseimage-docker?
|
### Why use baseimage-docker?
|
||||||
|
|
||||||
You can configure the stock `ubuntu` image yourself from your Dockerfile, so why bother using baseimage-docker?
|
You can configure the stock `ubuntu` image yourself from your Dockerfile, so why bother using baseimage-docker?
|
||||||
@@ -24,7 +20,38 @@ You can configure the stock `ubuntu` image yourself from your Dockerfile, so why
|
|||||||
* It reduces the time needed to run `docker build`, allowing you to iterate your Dockerfile more quickly.
|
* It reduces the time needed to run `docker build`, allowing you to iterate your Dockerfile more quickly.
|
||||||
* It reduces download time during redeploys. Docker only needs to download the base image once: during the first deploy. On every subsequent deploys, only the changes you make on top of the base image are downloaded.
|
* It reduces download time during redeploys. Docker only needs to download the base image once: during the first deploy. On every subsequent deploys, only the changes you make on top of the base image are downloaded.
|
||||||
|
|
||||||
## Contents
|
-----------------------------------------
|
||||||
|
|
||||||
|
**Related resources**:
|
||||||
|
[Website](http://phusion.github.io/baseimage-docker/) |
|
||||||
|
[Github](https://github.com/phusion/baseimage-docker) |
|
||||||
|
[Docker registry](https://index.docker.io/u/phusion/baseimage/) |
|
||||||
|
[Discussion forum](https://groups.google.com/d/forum/passenger-docker) |
|
||||||
|
[Twitter](https://twitter.com/phusion_nl) |
|
||||||
|
[Blog](http://blog.phusion.nl/)
|
||||||
|
|
||||||
|
**Table of contents**
|
||||||
|
|
||||||
|
* [What's inside the image?](#whats_inside)
|
||||||
|
* [Overview](#whats_inside_overview)
|
||||||
|
* [Wait, I thought Docker is about running a single process in a container?](#docker_single_process)
|
||||||
|
* [Inspecting baseimage-docker](#inspecting)
|
||||||
|
* [Using baseimage-docker as base image](#using)
|
||||||
|
* [Getting started](#getting_started)
|
||||||
|
* [Adding additional daemons](#adding_additional_daemons)
|
||||||
|
* [Running scripts during container startup](#running_startup_scripts)
|
||||||
|
* [Running a one-shot command in the container](#oneshot)
|
||||||
|
* [Login to the container via SSH](#login)
|
||||||
|
* [Building the image yourself](#building)
|
||||||
|
* [Conclusion](#conclusion)
|
||||||
|
|
||||||
|
-----------------------------------------
|
||||||
|
|
||||||
|
<a name="whats_inside"></a>
|
||||||
|
## What's inside the image?
|
||||||
|
|
||||||
|
<a name="whats_inside_overview"></a>
|
||||||
|
### Overview
|
||||||
|
|
||||||
*Looking for a more complete base image, one that is ideal for Ruby, Python, Node.js and Meteor web apps? Take a look at [passenger-docker](https://github.com/phusion/passenger-docker).*
|
*Looking for a more complete base image, one that is ideal for Ruby, Python, Node.js and Meteor web apps? Take a look at [passenger-docker](https://github.com/phusion/passenger-docker).*
|
||||||
|
|
||||||
@@ -34,19 +61,21 @@ You can configure the stock `ubuntu` image yourself from your Dockerfile, so why
|
|||||||
| A **correct** init process | According to the Unix process model, [the init process](https://en.wikipedia.org/wiki/Init) -- PID 1 -- inherits all [orphaned child processes](https://en.wikipedia.org/wiki/Orphan_process) and must [reap them](https://en.wikipedia.org/wiki/Wait_(system_call). Most Docker containers do not have an init process that does this correctly, and as a result their containers become filled with [zombie processes](https://en.wikipedia.org/wiki/Zombie_process) over time. <br><br>Furthermore, `docker stop` sends SIGTERM to the init process, which is then supposed to stop all services. Unfortunately most init systems don't do this correctly within Docker since they're built for hardware shutdowns instead. This causes processes to be hard killed with SIGKILL, which doesn't give them a chance to correctly deinitialize things. This can cause file corruption. <br><br>Baseimage-docker comes with an init process `/sbin/my_init` that performs both of these tasks correctly. |
|
| A **correct** init process | According to the Unix process model, [the init process](https://en.wikipedia.org/wiki/Init) -- PID 1 -- inherits all [orphaned child processes](https://en.wikipedia.org/wiki/Orphan_process) and must [reap them](https://en.wikipedia.org/wiki/Wait_(system_call). Most Docker containers do not have an init process that does this correctly, and as a result their containers become filled with [zombie processes](https://en.wikipedia.org/wiki/Zombie_process) over time. <br><br>Furthermore, `docker stop` sends SIGTERM to the init process, which is then supposed to stop all services. Unfortunately most init systems don't do this correctly within Docker since they're built for hardware shutdowns instead. This causes processes to be hard killed with SIGKILL, which doesn't give them a chance to correctly deinitialize things. This can cause file corruption. <br><br>Baseimage-docker comes with an init process `/sbin/my_init` that performs both of these tasks correctly. |
|
||||||
| Fixes APT incompatibilities with Docker | See https://github.com/dotcloud/docker/issues/1024. |
|
| Fixes APT incompatibilities with Docker | See https://github.com/dotcloud/docker/issues/1024. |
|
||||||
| syslog-ng | A syslog daemon is necessary so that many services - including the kernel itself - can correctly log to /var/log/syslog. If no syslog daemon is running, a lot of important messages are silently swallowed. <br><br>Only listens locally. |
|
| syslog-ng | A syslog daemon is necessary so that many services - including the kernel itself - can correctly log to /var/log/syslog. If no syslog daemon is running, a lot of important messages are silently swallowed. <br><br>Only listens locally. |
|
||||||
| ssh server | Allows you to easily login to your container to inspect or administer things. <br><br>Password and challenge-response authentication are disabled by default. Only key authentication is allowed.<br>It allows an predefined key by default to make debugging easy. You should replace this ASAP. See instructions. |
|
| ssh server | Allows you to easily login to your container to inspect or administer things. <br><br>Password and challenge-response authentication are disabled by default. Only key authentication is allowed.<br>By default, it allows a predefined key, in order to make debugging easy. You should replace this ASAP. See instructions. |
|
||||||
| cron | The cron daemon must be running for cron jobs to work. |
|
| cron | The cron daemon must be running for cron jobs to work. |
|
||||||
| [runit](http://smarden.org/runit/) | Replaces Ubuntu's Upstart. Used for service supervision and management. Much easier to use than SysV init and supports restarting daemons when they crash. Much easier to use and more lightweight than Upstart. |
|
| [runit](http://smarden.org/runit/) | Replaces Ubuntu's Upstart. Used for service supervision and management. Much easier to use than SysV init and supports restarting daemons when they crash. Much easier to use and more lightweight than Upstart. |
|
||||||
| `setuser` | A tool for running a command as another user. Easier to use than `su`, has a smaller attack vector than `sudo`, and unlike `chpst` this tool sets `$HOME` correctly. Available as `/sbin/setuser`. |
|
| `setuser` | A tool for running a command as another user. Easier to use than `su`, has a smaller attack vector than `sudo`, and unlike `chpst` this tool sets `$HOME` correctly. Available as `/sbin/setuser`. |
|
||||||
|
|
||||||
Baseimage-docker is very lightweight: it only consumes 6 MB of memory.
|
Baseimage-docker is very lightweight: it only consumes 6 MB of memory.
|
||||||
|
|
||||||
|
<a name="docker_single_process"></a>
|
||||||
### Wait, I thought Docker is about running a single process in a container?
|
### Wait, I thought Docker is about running a single process in a container?
|
||||||
|
|
||||||
Absolutely not true. Docker runs fine with multiple processes in a container. In fact, there is no technical reason why you should limit yourself to one process - it only makes things harder for you and breaks all kinds of essential system functionality, e.g. syslog.
|
Absolutely not true. Docker runs fine with multiple processes in a container. In fact, there is no technical reason why you should limit yourself to one process - it only makes things harder for you and breaks all kinds of essential system functionality, e.g. syslog.
|
||||||
|
|
||||||
Baseimage-docker *encourages* multiple processes through the use of runit.
|
Baseimage-docker *encourages* multiple processes through the use of runit.
|
||||||
|
|
||||||
|
<a name="inspecting"></a>
|
||||||
## Inspecting baseimage-docker
|
## Inspecting baseimage-docker
|
||||||
|
|
||||||
To look around in the image, run:
|
To look around in the image, run:
|
||||||
@@ -55,11 +84,13 @@ To look around in the image, run:
|
|||||||
|
|
||||||
You don't have to download anything manually. The above command will automatically pull the baseimage-docker image from the Docker registry.
|
You don't have to download anything manually. The above command will automatically pull the baseimage-docker image from the Docker registry.
|
||||||
|
|
||||||
|
<a name="using"></a>
|
||||||
## Using baseimage-docker as base image
|
## Using baseimage-docker as base image
|
||||||
|
|
||||||
The image is called `phusion/baseimage`, and is available on the Docker registry.
|
<a name="getting_started"></a>
|
||||||
|
### Getting started
|
||||||
|
|
||||||
By default, it allows SSH access for the key in `image/insecure_key`. This makes it easy for you to login to the container, but you should replace this key as soon as possible.
|
The image is called `phusion/baseimage`, and is available on the Docker registry.
|
||||||
|
|
||||||
# Use phusion/baseimage as base image. To make your builds reproducible, make
|
# Use phusion/baseimage as base image. To make your builds reproducible, make
|
||||||
# sure you lock down to a specific version, not to `latest`!
|
# sure you lock down to a specific version, not to `latest`!
|
||||||
@@ -70,9 +101,6 @@ By default, it allows SSH access for the key in `image/insecure_key`. This makes
|
|||||||
# Set correct environment variables.
|
# Set correct environment variables.
|
||||||
ENV HOME /root
|
ENV HOME /root
|
||||||
|
|
||||||
# Remove authentication rights for insecure_key.
|
|
||||||
RUN rm -f /root/.ssh/authorized_keys /home/*/.ssh/authorized_keys
|
|
||||||
|
|
||||||
# Regenerate SSH host keys. baseimage-docker does not contain any, so you
|
# Regenerate SSH host keys. baseimage-docker does not contain any, so you
|
||||||
# have to do that yourself. You may also comment out this instruction; the
|
# have to do that yourself. You may also comment out this instruction; the
|
||||||
# init system will auto-generate one during boot.
|
# init system will auto-generate one during boot.
|
||||||
@@ -86,9 +114,10 @@ By default, it allows SSH access for the key in `image/insecure_key`. This makes
|
|||||||
# Clean up APT when done.
|
# Clean up APT when done.
|
||||||
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
|
<a name="adding_additional_daemons"></a>
|
||||||
### Adding additional daemons
|
### Adding additional daemons
|
||||||
|
|
||||||
You can add additional daemons to the image by creating runit entries. You only have to write a small shell script which runs your daemon, and runit will keep it up and running for you, restarting it when it crashes, etc.
|
You can add additional daemons (e.g. your own app) to the image by creating runit entries. You only have to write a small shell script which runs your daemon, and runit will keep it up and running for you, restarting it when it crashes, etc.
|
||||||
|
|
||||||
The shell script must be called `run`, must be executable, and is to be placed in the directory `/etc/service/<NAME>`.
|
The shell script must be called `run`, must be executable, and is to be placed in the directory `/etc/service/<NAME>`.
|
||||||
|
|
||||||
@@ -96,9 +125,9 @@ Here's an example showing you how to a memached server runit entry can be made.
|
|||||||
|
|
||||||
### In memcached.sh (make sure this file is chmod +x):
|
### In memcached.sh (make sure this file is chmod +x):
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# `chpst` is part of running. `chpst -u memcache` runs the given command
|
# `/sbin/setuser memcache` runs the given command as the user `memcache`.
|
||||||
# as the user `memcache`. If you omit this, the command will be run as root.
|
# If you omit that part, the command will be run as root.
|
||||||
exec chpst -u memcache /usr/bin/memcached >>/var/log/memcached.log 2>&1
|
exec /sbin/setuser memcache /usr/bin/memcached >>/var/log/memcached.log 2>&1
|
||||||
|
|
||||||
### In Dockerfile:
|
### In Dockerfile:
|
||||||
RUN mkdir /etc/service/memcached
|
RUN mkdir /etc/service/memcached
|
||||||
@@ -106,6 +135,7 @@ Here's an example showing you how to a memached server runit entry can be made.
|
|||||||
|
|
||||||
Note that the shell script must run the daemon **without letting it daemonize/fork it**. Usually, daemons provide a command line flag or a config file option for that.
|
Note that the shell script must run the daemon **without letting it daemonize/fork it**. Usually, daemons provide a command line flag or a config file option for that.
|
||||||
|
|
||||||
|
<a name="running_startup_scripts"></a>
|
||||||
### Running scripts during container startup
|
### Running scripts during container startup
|
||||||
|
|
||||||
The baseimage-docker init system, `/sbin/my_init`, runs the following scripts during startup, in the following order:
|
The baseimage-docker init system, `/sbin/my_init`, runs the following scripts during startup, in the following order:
|
||||||
@@ -125,13 +155,71 @@ The following example shows how you can add a startup script. This script simply
|
|||||||
RUN mkdir -p /etc/my_init.d
|
RUN mkdir -p /etc/my_init.d
|
||||||
ADD logtime.sh /etc/my_init.d/logtime.sh
|
ADD logtime.sh /etc/my_init.d/logtime.sh
|
||||||
|
|
||||||
### Login to the container
|
<a name="oneshot"></a>
|
||||||
|
### Running a one-shot command in the container
|
||||||
|
|
||||||
|
Normally, when you want to run a single command in a container, and exit immediately after the command, you invoke Docker like this:
|
||||||
|
|
||||||
|
docker run YOUR_IMAGE COMMAND ARGUMENTS...
|
||||||
|
|
||||||
|
However the downside of this approach is that the init system is not started. That is, while invoking `COMMAND`, important daemons such as cron and syslog are not running. Also, orphaned child processes are not properly reaped, because `COMMAND` is PID 1.
|
||||||
|
|
||||||
|
Baseimage-docker provides a facility to run a single one-shot command, while solving all of the aforementioned problems. Run a single command in the following manner:
|
||||||
|
|
||||||
|
docker run YOUR_IMAGE /sbin/my_init -- COMMAND ARGUMENTS ...
|
||||||
|
|
||||||
|
This will perform the following:
|
||||||
|
|
||||||
|
* Runs all system startup files, such as /etc/my_init.d/* and /etc/rc.local.
|
||||||
|
* Starts all runit services.
|
||||||
|
* Runs the specified command.
|
||||||
|
* When the specified command exits, stops all runit services.
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
$ docker run phusion/baseimage:<VERSION> /sbin/my_init -- ls
|
||||||
|
*** Running /etc/my_init.d/00_regen_ssh_host_keys.sh...
|
||||||
|
No SSH host key available. Generating one...
|
||||||
|
Creating SSH2 RSA key; this may take some time ...
|
||||||
|
Creating SSH2 DSA key; this may take some time ...
|
||||||
|
Creating SSH2 ECDSA key; this may take some time ...
|
||||||
|
*** Running /etc/rc.local...
|
||||||
|
*** Booting runit daemon...
|
||||||
|
*** Runit started as PID 80
|
||||||
|
*** Running ls...
|
||||||
|
bin boot dev etc home image lib lib64 media mnt opt proc root run sbin selinux srv sys tmp usr var
|
||||||
|
*** ls exited with exit code 0.
|
||||||
|
*** Shutting down runit daemon (PID 80)...
|
||||||
|
*** Killing all processes...
|
||||||
|
|
||||||
|
You may find that the default invocation is too noisy. Or perhaps you don't want to run the startup files. You can customize all this by passing arguments to `my_init`. Invoke `docker run YOUR_IMAGE /sbin/my_init --help` for more information.
|
||||||
|
|
||||||
|
The following example runs `ls` without running the startup files and with less messages, while running all runit services:
|
||||||
|
|
||||||
|
$ docker run phusion/baseimage:<VERSION> /sbin/my_init --skip-startup-files --quiet -- ls
|
||||||
|
bin boot dev etc home image lib lib64 media mnt opt proc root run sbin selinux srv sys tmp usr var
|
||||||
|
|
||||||
|
<a name="login"></a>
|
||||||
|
### Login to the container via SSH
|
||||||
|
|
||||||
You can use SSH to login to any container that is based on baseimage-docker.
|
You can use SSH to login to any container that is based on baseimage-docker.
|
||||||
|
|
||||||
Start a container based on baseimage-docker (or a container based on an image based on baseimage-docker):
|
The first thing that you need to do is to ensure that you have the right SSH keys installed inside the container. By default, no keys are installed, so you can't login. For convenience reasons, we provide [a pregenerated, insecure key](https://github.com/phusion/baseimage-docker/blob/master/image/insecure_key) that you easily enable. However, please be aware that using this key is for convenience only. It does not provide any insecurity because this key (both the public and the private side) are publicly available. In production environments, you should use your own keys.
|
||||||
|
|
||||||
docker run phusion/baseimage
|
Edit your Dockerfile to install an SSH key:
|
||||||
|
|
||||||
|
## Install an SSH of your choice.
|
||||||
|
ADD your_key /tmp/your_key
|
||||||
|
RUN cat /tmp/your_key >> /root/.ssh/authorized_keys && rm -f /tmp/your_key
|
||||||
|
|
||||||
|
## -OR-
|
||||||
|
|
||||||
|
## Uncomment this to enable the insecure key.
|
||||||
|
# RUN /usr/sbin/enable_insecure_key
|
||||||
|
|
||||||
|
Then rebuild your image. Once you have that, start a container based on that image:
|
||||||
|
|
||||||
|
docker run your-image-name
|
||||||
|
|
||||||
Find out the ID of the container that you just ran:
|
Find out the ID of the container that you just ran:
|
||||||
|
|
||||||
@@ -141,10 +229,19 @@ Once you have the ID, look for its IP address with:
|
|||||||
|
|
||||||
docker inspect <ID> | grep IPAddress
|
docker inspect <ID> | grep IPAddress
|
||||||
|
|
||||||
Now SSH into the container. In this example we're using [the default insecure key](https://github.com/phusion/baseimage-docker/blob/master/image/insecure_key), but if you're followed the instructions well then you've already replaced that with your own key. You did replace the key, didn't you?
|
Now SSH into the container as follows:
|
||||||
|
|
||||||
|
ssh -i /path-to/your_key root@<IP address>
|
||||||
|
|
||||||
|
# -OR-
|
||||||
|
|
||||||
|
# If you're using the insecure key, download it and SSH
|
||||||
|
# into the container using that key.
|
||||||
|
curl -o insecure_key -fSL https://github.com/phusion/baseimage-docker/raw/master/image/insecure_key
|
||||||
|
chmod 700 insecure_key
|
||||||
ssh -i insecure_key root@<IP address>
|
ssh -i insecure_key root@<IP address>
|
||||||
|
|
||||||
|
<a name="building"></a>
|
||||||
## Building the image yourself
|
## Building the image yourself
|
||||||
|
|
||||||
If for whatever reason you want to build the image yourself instead of downloading it from the Docker registry, follow these instructions.
|
If for whatever reason you want to build the image yourself instead of downloading it from the Docker registry, follow these instructions.
|
||||||
@@ -168,6 +265,7 @@ If you want to call the resulting image something else, pass the NAME variable,
|
|||||||
|
|
||||||
make build NAME=joe/baseimage
|
make build NAME=joe/baseimage
|
||||||
|
|
||||||
|
<a name="conclusion"></a>
|
||||||
## Conclusion
|
## Conclusion
|
||||||
|
|
||||||
* Using baseimage-docker? [Tweet about us](https://twitter.com/share) or [follow us on Twitter](https://twitter.com/phusion_nl).
|
* Using baseimage-docker? [Tweet about us](https://twitter.com/share) or [follow us on Twitter](https://twitter.com/phusion_nl).
|
||||||
|
|||||||
6
image/00_regen_ssh_host_keys.sh
Executable file
6
image/00_regen_ssh_host_keys.sh
Executable file
@@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
if [[ ! -e /etc/ssh/ssh_host_rsa_key ]]; then
|
||||||
|
echo "No SSH host key available. Generating one..."
|
||||||
|
dpkg-reconfigure openssh-server
|
||||||
|
fi
|
||||||
17
image/enable_insecure_key
Executable file
17
image/enable_insecure_key
Executable file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
AUTHORIZED_KEYS=/root/.ssh/authorized_keys
|
||||||
|
|
||||||
|
if [[ -e "$AUTHORIZED_KEYS" ]] && grep -q baseimage-docker-insecure-key "$AUTHORIZED_KEYS"; then
|
||||||
|
echo "Insecure key has already been added to $AUTHORIZED_KEYS."
|
||||||
|
else
|
||||||
|
DIR=`dirname "$AUTHORIZED_KEYS"`
|
||||||
|
echo "Creating directory $DIR..."
|
||||||
|
mkdir -p "$DIR"
|
||||||
|
chmod 700 "$DIR"
|
||||||
|
chown root:root "$DIR"
|
||||||
|
echo "Editing $AUTHORIZED_KEYS..."
|
||||||
|
cat /etc/insecure_key.pub > "$AUTHORIZED_KEYS"
|
||||||
|
echo "Success: insecure key has been added to $AUTHORIZED_KEYS"
|
||||||
|
fi
|
||||||
@@ -1 +1 @@
|
|||||||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVmzBG5v7cO9IScGLIzlhGlHNFhXzy87VfaPzru7qnIIdQ1e9FEKvtqEws8hVixnCUdviwX5lvcMk4Ef4Tbrmj3dyF0zFtYbjiTSyl/XQlF68DQlc2sTAdHy96wJHvh7ky511tKJzzyWwSqeef4WjeVK28TqcGnq1up0S7saFO0dJh6OfDAg2cDmhyweR3VgT0vZJyrDV7hte95MBCdK+Gp7fdCyEZcWm3S1DBFaeBqHzzt/Y/njAVKbYL9TIVPum8iMg0rMiLi9ShfP+dT5Xud5Oa3dcN2OWhiDfJw5pfhFJWd44cJ/uGRwQpvNs/PNKsYABhgLlTMUH4iawhu1Xb hongli@asuna-3939
|
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVmzBG5v7cO9IScGLIzlhGlHNFhXzy87VfaPzru7qnIIdQ1e9FEKvtqEws8hVixnCUdviwX5lvcMk4Ef4Tbrmj3dyF0zFtYbjiTSyl/XQlF68DQlc2sTAdHy96wJHvh7ky511tKJzzyWwSqeef4WjeVK28TqcGnq1up0S7saFO0dJh6OfDAg2cDmhyweR3VgT0vZJyrDV7hte95MBCdK+Gp7fdCyEZcWm3S1DBFaeBqHzzt/Y/njAVKbYL9TIVPum8iMg0rMiLi9ShfP+dT5Xud5Oa3dcN2OWhiDfJw5pfhFJWd44cJ/uGRwQpvNs/PNKsYABhgLlTMUH4iawhu1Xb baseimage-docker-insecure-key
|
||||||
|
|||||||
280
image/my_init
280
image/my_init
@@ -1,8 +1,42 @@
|
|||||||
#!/usr/bin/python2
|
#!/usr/bin/python2
|
||||||
import os, sys, stat, signal, errno
|
import os, sys, stat, signal, errno, argparse, time
|
||||||
|
|
||||||
pid = None
|
KILL_PROCESS_TIMEOUT = 5
|
||||||
status = None
|
KILL_ALL_PROCESSES_TIMEOUT = 5
|
||||||
|
|
||||||
|
LOG_LEVEL_ERROR = 1
|
||||||
|
LOG_LEVEL_WARN = 1
|
||||||
|
LOG_LEVEL_INFO = 2
|
||||||
|
LOG_LEVEL_DEBUG = 3
|
||||||
|
|
||||||
|
log_level = None
|
||||||
|
|
||||||
|
class AlarmException(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def error(message):
|
||||||
|
if log_level >= LOG_LEVEL_ERROR:
|
||||||
|
sys.stderr.write("*** %s\n" % message)
|
||||||
|
|
||||||
|
def warn(message):
|
||||||
|
if log_level >= LOG_LEVEL_WARN:
|
||||||
|
print("*** %s" % message)
|
||||||
|
|
||||||
|
def info(message):
|
||||||
|
if log_level >= LOG_LEVEL_INFO:
|
||||||
|
print("*** %s" % message)
|
||||||
|
|
||||||
|
def debug(message):
|
||||||
|
if log_level >= LOG_LEVEL_DEBUG:
|
||||||
|
print("*** %s" % message)
|
||||||
|
|
||||||
|
def ignore_signals_and_raise_keyboard_interrupt(signame):
|
||||||
|
signal.signal(signal.SIGTERM, signal.SIG_IGN)
|
||||||
|
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
||||||
|
raise KeyboardInterrupt(signame)
|
||||||
|
|
||||||
|
def raise_alarm_exception():
|
||||||
|
raise AlarmException('Alarm')
|
||||||
|
|
||||||
def listdir(path):
|
def listdir(path):
|
||||||
try:
|
try:
|
||||||
@@ -20,97 +54,185 @@ def is_exe(path):
|
|||||||
except OSError:
|
except OSError:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def reap_child(signum, frame):
|
def waitpid_reap_other_children(pid):
|
||||||
global pid, status, waiting_for_runit
|
done = False
|
||||||
try:
|
status = None
|
||||||
result = os.wait3(os.WNOHANG)
|
while not done:
|
||||||
if result is not None and pid == result[0]:
|
this_pid, status = os.waitpid(-1, 0)
|
||||||
status = result[1]
|
done = this_pid == pid
|
||||||
except OSError:
|
return status
|
||||||
pass
|
|
||||||
|
|
||||||
def stop_child_process(name):
|
def stop_child_process(name, pid, signo = signal.SIGTERM, time_limit = KILL_PROCESS_TIMEOUT):
|
||||||
global pid
|
info("Shutting down %s (PID %d)..." % (name, pid))
|
||||||
print("*** Shutting down %s (PID %d)..." % (name, pid))
|
|
||||||
try:
|
try:
|
||||||
os.kill(pid, signal.SIGHUP)
|
os.kill(pid, signo)
|
||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
|
signal.alarm(time_limit)
|
||||||
|
try:
|
||||||
|
try:
|
||||||
|
waitpid_reap_other_children(pid)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
except AlarmException:
|
||||||
|
warn("%s (PID %d) did not shut down in time. Forcing it to exit.")
|
||||||
|
try:
|
||||||
|
os.kill(pid, signal.SIGKILL)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
waitpid_reap_other_children(pid)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
finally:
|
||||||
|
signal.alarm(0)
|
||||||
|
|
||||||
def run_command_killable(*argv):
|
def run_command_killable(*argv):
|
||||||
global pid
|
|
||||||
filename = argv[0]
|
filename = argv[0]
|
||||||
|
status = None
|
||||||
pid = os.spawnvp(os.P_NOWAIT, filename, argv)
|
pid = os.spawnvp(os.P_NOWAIT, filename, argv)
|
||||||
signal.signal(signal.SIGINT, lambda signum, frame: stop_child_process(filename))
|
|
||||||
signal.signal(signal.SIGTERM, lambda signum, frame: stop_child_process(filename))
|
|
||||||
try:
|
try:
|
||||||
this_pid, status = os.waitpid(pid, 0)
|
status = waitpid_reap_other_children(pid)
|
||||||
except OSError as e:
|
except BaseException as s:
|
||||||
if e.errno == errno.EINTR:
|
warn("An error occurred. Aborting.")
|
||||||
sys.exit(2)
|
stop_child_process(filename, pid)
|
||||||
else:
|
raise
|
||||||
raise
|
|
||||||
finally:
|
|
||||||
signal.signal(signal.SIGINT, signal.SIG_DFL)
|
|
||||||
signal.signal(signal.SIGTERM, signal.SIG_DFL)
|
|
||||||
if status != 0:
|
if status != 0:
|
||||||
sys.stderr.write("*** %s failed with exit code %d\n" % (filename, status))
|
error("%s failed with exit code %d\n" % (filename, status))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# Run /etc/my_init.d/*
|
def kill_all_processes(time_limit):
|
||||||
for name in listdir("/etc/my_init.d"):
|
info("Killing all processes...")
|
||||||
filename = "/etc/my_init.d/" + name
|
|
||||||
if is_exe(filename):
|
|
||||||
print("*** Running %s..." % filename)
|
|
||||||
run_command_killable(filename)
|
|
||||||
|
|
||||||
# Run /etc/rc.local.
|
|
||||||
if is_exe("/etc/rc.local"):
|
|
||||||
print("*** Running /etc/rc.local...")
|
|
||||||
run_command_killable("/etc/rc.local")
|
|
||||||
|
|
||||||
# Start runit.
|
|
||||||
signal.signal(signal.SIGCHLD, reap_child)
|
|
||||||
print("*** Booting runit...")
|
|
||||||
pid = os.spawnl(os.P_NOWAIT, "/usr/sbin/runsvdir-start", "/usr/sbin/runsvdir-start")
|
|
||||||
print("*** Runit started as PID %d" % pid)
|
|
||||||
signal.signal(signal.SIGTERM, lambda signum, frame: stop_child_process("runit"))
|
|
||||||
|
|
||||||
# Wait for runit, and while waiting, reap any adopted orphans.
|
|
||||||
done = False
|
|
||||||
while not done:
|
|
||||||
try:
|
try:
|
||||||
this_pid, status = os.waitpid(pid, 0)
|
os.kill(-1, signal.SIGTERM)
|
||||||
done = True
|
except OSError:
|
||||||
except OSError as e:
|
pass
|
||||||
if e.errno == errno.EINTR:
|
signal.alarm(time_limit)
|
||||||
# Try again
|
try:
|
||||||
|
# Wait until no more child processes exist.
|
||||||
|
done = False
|
||||||
|
while not done:
|
||||||
|
try:
|
||||||
|
os.waitpid(-1, 0)
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno == errno.ECHILD:
|
||||||
|
done = True
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
except AlarmException:
|
||||||
|
warn("Not all processes have exited in time. Forcing them to exit.")
|
||||||
|
try:
|
||||||
|
os.kill(-1, signal.SIGKILL)
|
||||||
|
except OSError:
|
||||||
pass
|
pass
|
||||||
|
finally:
|
||||||
|
signal.alarm(0)
|
||||||
|
|
||||||
|
def run_startup_files():
|
||||||
|
# Run /etc/my_init.d/*
|
||||||
|
for name in listdir("/etc/my_init.d"):
|
||||||
|
filename = "/etc/my_init.d/" + name
|
||||||
|
if is_exe(filename):
|
||||||
|
info("Running %s..." % filename)
|
||||||
|
run_command_killable(filename)
|
||||||
|
|
||||||
|
# Run /etc/rc.local.
|
||||||
|
if is_exe("/etc/rc.local"):
|
||||||
|
info("Running /etc/rc.local...")
|
||||||
|
run_command_killable("/etc/rc.local")
|
||||||
|
|
||||||
|
def start_runit():
|
||||||
|
info("Booting runit daemon...")
|
||||||
|
pid = os.spawnl(os.P_NOWAIT, "/usr/bin/runsvdir", "/usr/bin/runsvdir",
|
||||||
|
"-P", "/etc/service", "log: %s" % ('.' * 395))
|
||||||
|
info("Runit started as PID %d" % pid)
|
||||||
|
return pid
|
||||||
|
|
||||||
|
def wait_for_runit_or_interrupt(pid):
|
||||||
|
try:
|
||||||
|
status = waitpid_reap_other_children(pid)
|
||||||
|
return (True, status)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
return (False, None)
|
||||||
|
|
||||||
|
def shutdown_runit_services():
|
||||||
|
debug("Begin shutting down runit services...")
|
||||||
|
os.system("/usr/bin/sv down /etc/service/*")
|
||||||
|
|
||||||
|
def wait_for_runit_services():
|
||||||
|
debug("Waiting for runit services to exit...")
|
||||||
|
done = False
|
||||||
|
while not done:
|
||||||
|
done = os.system("/usr/bin/sv status /etc/service/* | grep -q '^run:'") != 0
|
||||||
|
if not done:
|
||||||
|
time.sleep(0.1)
|
||||||
|
|
||||||
|
def main(args):
|
||||||
|
if not args.skip_startup_files:
|
||||||
|
run_startup_files()
|
||||||
|
|
||||||
|
runit_exited = False
|
||||||
|
exit_code = None
|
||||||
|
|
||||||
|
if not args.skip_runit:
|
||||||
|
runit_pid = start_runit()
|
||||||
|
try:
|
||||||
|
if len(args.main_command) == 0:
|
||||||
|
runit_exited, exit_code = wait_for_runit_or_interrupt(runit_pid)
|
||||||
|
if runit_exited:
|
||||||
|
info("Runit exited with code %d" % exit_code)
|
||||||
else:
|
else:
|
||||||
# The SIGCHLD handler probably caught it.
|
info("Running %s..." % " ".join(args.main_command))
|
||||||
done = True
|
pid = os.spawnvp(os.P_NOWAIT, args.main_command[0], args.main_command)
|
||||||
|
try:
|
||||||
|
exit_code = waitpid_reap_other_children(pid)
|
||||||
|
info("%s exited with exit code %d." % (args.main_command[0], exit_code))
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
stop_child_process(args.main_command[0], pid)
|
||||||
|
except BaseException as s:
|
||||||
|
warn("An error occurred. Aborting.")
|
||||||
|
stop_child_process(args.main_command[0], pid)
|
||||||
|
raise
|
||||||
|
sys.exit(exit_code)
|
||||||
|
finally:
|
||||||
|
if not args.skip_runit:
|
||||||
|
shutdown_runit_services()
|
||||||
|
if not runit_exited:
|
||||||
|
stop_child_process("runit daemon", runit_pid)
|
||||||
|
wait_for_runit_services()
|
||||||
|
|
||||||
# Runit has exited. Reset signal handlers.
|
# Parse options.
|
||||||
print("*** Runit exited with code %s. Waiting for all services to shut down..." % status)
|
parser = argparse.ArgumentParser(description = 'Initialize the system.')
|
||||||
signal.signal(signal.SIGCHLD, signal.SIG_DFL)
|
parser.add_argument('main_command', metavar = 'MAIN_COMMAND', type = str, nargs = '*',
|
||||||
signal.signal(signal.SIGTERM, signal.SIG_DFL)
|
help = 'The main command to run. (default: runit)')
|
||||||
signal.siginterrupt(signal.SIGCHLD, False)
|
parser.add_argument('--skip-startup-files', dest = 'skip_startup_files',
|
||||||
signal.siginterrupt(signal.SIGTERM, False)
|
action = 'store_const', const = True, default = False,
|
||||||
|
help = 'Skip running /etc/my_init.d/* and /etc/rc.local')
|
||||||
|
parser.add_argument('--skip-runit', dest = 'skip_runit',
|
||||||
|
action = 'store_const', const = True, default = False,
|
||||||
|
help = 'Do not run runit services')
|
||||||
|
parser.add_argument('--no-kill-all-on-exit', dest = 'kill_all_on_exit',
|
||||||
|
action = 'store_const', const = False, default = True,
|
||||||
|
help = 'Don\'t kill all processes on the system upon exiting')
|
||||||
|
parser.add_argument('--quiet', dest = 'log_level',
|
||||||
|
action = 'store_const', const = LOG_LEVEL_WARN, default = LOG_LEVEL_INFO,
|
||||||
|
help = 'Only print warnings and errors')
|
||||||
|
args = parser.parse_args()
|
||||||
|
log_level = args.log_level
|
||||||
|
|
||||||
# Wait at most 5 seconds for services to shut down.
|
if args.skip_runit and len(args.main_command) == 0:
|
||||||
import time
|
error("When --skip-runit is given, you must also pass a main command.")
|
||||||
|
sys.exit(1)
|
||||||
def shutdown(signum = None, frame = None):
|
|
||||||
global status
|
|
||||||
if status is not None:
|
|
||||||
sys.exit(status)
|
|
||||||
|
|
||||||
signal.signal(signal.SIGALRM, shutdown)
|
|
||||||
signal.alarm(5)
|
|
||||||
done = False
|
|
||||||
while not done:
|
|
||||||
done = os.system("/usr/bin/sv status /etc/service/* | grep -q '^run:'") != 0
|
|
||||||
if not done:
|
|
||||||
time.sleep(0.5)
|
|
||||||
shutdown()
|
|
||||||
|
|
||||||
|
# Run main function.
|
||||||
|
signal.signal(signal.SIGTERM, lambda signum, frame: ignore_signals_and_raise_keyboard_interrupt('SIGTERM'))
|
||||||
|
signal.signal(signal.SIGINT, lambda signum, frame: ignore_signals_and_raise_keyboard_interrupt('SIGINT'))
|
||||||
|
signal.signal(signal.SIGALRM, lambda signum, frame: raise_alarm_exception())
|
||||||
|
try:
|
||||||
|
main(args)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
warn("Init system aborted.")
|
||||||
|
exit(2)
|
||||||
|
finally:
|
||||||
|
if args.kill_all_on_exit:
|
||||||
|
kill_all_processes(KILL_ALL_PROCESSES_TIMEOUT)
|
||||||
|
|||||||
@@ -1,12 +1,26 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/python2
|
||||||
set -e
|
import sys, os, pwd
|
||||||
|
|
||||||
user="$1"
|
if len(sys.argv) < 3:
|
||||||
shift
|
sys.stderr.write("Usage: /sbin/setuser USERNAME COMMAND [args..]\n")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
if [[ "$user" == "root" ]]; then
|
def abort(message):
|
||||||
export HOME=/root
|
sys.stderr.write("setuser: %s\n" % message)
|
||||||
else
|
sys.exit(1)
|
||||||
export HOME=/home/$user
|
|
||||||
fi
|
username = sys.argv[1]
|
||||||
exec chpst -u "$user" "$@"
|
try:
|
||||||
|
user = pwd.getpwnam(username)
|
||||||
|
except KeyError:
|
||||||
|
abort("user %s not found" % username)
|
||||||
|
os.initgroups(username, user.pw_gid)
|
||||||
|
os.setgid(user.pw_gid)
|
||||||
|
os.setuid(user.pw_uid)
|
||||||
|
os.environ['USER'] = username
|
||||||
|
os.environ['HOME'] = user.pw_dir
|
||||||
|
os.environ['UID'] = str(user.pw_uid)
|
||||||
|
try:
|
||||||
|
os.execvp(sys.argv[2], sys.argv[2:])
|
||||||
|
except OSError as e:
|
||||||
|
abort("cannot execute %s: %s" % (sys.argv[2], str(e)))
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ $minimal_apt_get_install runit
|
|||||||
$minimal_apt_get_install syslog-ng-core
|
$minimal_apt_get_install syslog-ng-core
|
||||||
mkdir /etc/service/syslog-ng
|
mkdir /etc/service/syslog-ng
|
||||||
cp /build/runit/syslog-ng /etc/service/syslog-ng/run
|
cp /build/runit/syslog-ng /etc/service/syslog-ng/run
|
||||||
|
mkdir -p /var/lib/syslog-ng
|
||||||
|
|
||||||
## Install the SSH server.
|
## Install the SSH server.
|
||||||
$minimal_apt_get_install openssh-server
|
$minimal_apt_get_install openssh-server
|
||||||
@@ -27,7 +28,10 @@ cp /build/00_regen_ssh_host_keys.sh /etc/my_init.d/
|
|||||||
mkdir -p /root/.ssh
|
mkdir -p /root/.ssh
|
||||||
chmod 700 /root/.ssh
|
chmod 700 /root/.ssh
|
||||||
chown root:root /root/.ssh
|
chown root:root /root/.ssh
|
||||||
cat /build/insecure_key.pub > /root/.ssh/authorized_keys
|
cp /build/insecure_key.pub /etc/insecure_key.pub
|
||||||
|
chmod 644 /etc/insecure_key.pub
|
||||||
|
chown root:root /etc/insecure_key.pub
|
||||||
|
cp /build/enable_insecure_key /usr/sbin/
|
||||||
|
|
||||||
## Install cron daemon.
|
## Install cron daemon.
|
||||||
$minimal_apt_get_install cron
|
$minimal_apt_get_install cron
|
||||||
|
|||||||
42
test/runner.sh
Normal file
42
test/runner.sh
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
function abort()
|
||||||
|
{
|
||||||
|
echo "$@"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
function cleanup()
|
||||||
|
{
|
||||||
|
echo " --> Stopping container"
|
||||||
|
docker stop $ID >/dev/null
|
||||||
|
docker rm $ID >/dev/null
|
||||||
|
docker rmi baseimage_test >/dev/null 2>/dev/null
|
||||||
|
}
|
||||||
|
|
||||||
|
PWD=`pwd`
|
||||||
|
|
||||||
|
echo " --> Preparing container"
|
||||||
|
ID=`docker run -d $NAME:$VERSION enable_insecure_key`
|
||||||
|
docker wait $ID >/dev/null
|
||||||
|
docker commit $ID baseimage_test >/dev/null
|
||||||
|
docker rm $ID >/dev/null
|
||||||
|
|
||||||
|
echo " --> Starting container"
|
||||||
|
ID=`docker run -d -v $PWD/test:/test baseimage_test /sbin/my_init`
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
echo " --> Obtaining IP"
|
||||||
|
IP=`docker inspect $ID | grep IPAddress | sed -e 's/.*: "//; s/".*//'`
|
||||||
|
if [[ "$IP" = "" ]]; then
|
||||||
|
abort "Unable to obtain container IP"
|
||||||
|
fi
|
||||||
|
|
||||||
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
echo " --> Logging into container and running tests"
|
||||||
|
chmod 600 image/insecure_key
|
||||||
|
sleep 1 # Give container some more time to start up.
|
||||||
|
ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i image/insecure_key root@$IP \
|
||||||
|
/bin/bash /test/test.sh
|
||||||
22
test/test.sh
Normal file
22
test/test.sh
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
function ok()
|
||||||
|
{
|
||||||
|
echo " OK"
|
||||||
|
}
|
||||||
|
|
||||||
|
function fail()
|
||||||
|
{
|
||||||
|
echo " FAIL"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Checking whether all services are running..."
|
||||||
|
services=`sv status /etc/service/*`
|
||||||
|
status=$?
|
||||||
|
if [[ "$status" != 0 || "$services" = "" || "$services" =~ down ]]; then
|
||||||
|
fail
|
||||||
|
else
|
||||||
|
ok
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user