mirror of
https://github.com/docker/compose.git
synced 2025-07-26 23:24:05 +02:00
Kick everything off from a single container
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
parent
74440b2f92
commit
42e6296b0e
30
Dockerfile
30
Dockerfile
@ -1,17 +1,27 @@
|
|||||||
FROM debian:wheezy
|
FROM debian:wheezy
|
||||||
|
|
||||||
RUN apt-get update -qq
|
RUN set -ex; \
|
||||||
|
apt-get update -qq; \
|
||||||
|
apt-get install -y \
|
||||||
|
python \
|
||||||
|
python-pip \
|
||||||
|
python-dev \
|
||||||
|
git \
|
||||||
|
apt-transport-https \
|
||||||
|
ca-certificates \
|
||||||
|
curl \
|
||||||
|
lxc \
|
||||||
|
iptables \
|
||||||
|
; \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Compose dependencies
|
ENV ALL_DOCKER_VERSIONS 1.3.3 1.4.1 1.5.0
|
||||||
RUN apt-get install -qqy python python-pip python-dev git
|
|
||||||
|
|
||||||
# Test dependencies
|
RUN set -ex; \
|
||||||
RUN apt-get install -qqy apt-transport-https ca-certificates curl lxc iptables
|
for v in ${ALL_DOCKER_VERSIONS}; do \
|
||||||
RUN curl https://get.docker.com/builds/Linux/x86_64/docker-1.3.3 > /usr/local/bin/docker-1.3.3 && chmod +x /usr/local/bin/docker-1.3.3
|
curl https://get.docker.com/builds/Linux/x86_64/docker-$v -o /usr/local/bin/docker-$v; \
|
||||||
RUN curl https://get.docker.com/builds/Linux/x86_64/docker-1.4.1 > /usr/local/bin/docker-1.4.1 && chmod +x /usr/local/bin/docker-1.4.1
|
chmod +x /usr/local/bin/docker-$v; \
|
||||||
RUN curl https://get.docker.com/builds/Linux/x86_64/docker-1.5.0 > /usr/local/bin/docker-1.5.0 && chmod +x /usr/local/bin/docker-1.5.0
|
done
|
||||||
|
|
||||||
RUN apt-get clean
|
|
||||||
|
|
||||||
RUN useradd -d /home/user -m -s /bin/bash user
|
RUN useradd -d /home/user -m -s /bin/bash user
|
||||||
WORKDIR /code/
|
WORKDIR /code/
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
FROM docker-compose
|
|
||||||
|
|
||||||
ADD script/wrapdocker /usr/local/bin/wrapdocker
|
|
||||||
VOLUME /var/lib/docker
|
|
||||||
ENTRYPOINT ["/usr/local/bin/wrapdocker"]
|
|
88
script/dind
Executable file
88
script/dind
Executable file
@ -0,0 +1,88 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# DinD: a wrapper script which allows docker to be run inside a docker container.
|
||||||
|
# Original version by Jerome Petazzoni <jerome@docker.com>
|
||||||
|
# See the blog post: http://blog.docker.com/2013/09/docker-can-now-run-within-docker/
|
||||||
|
#
|
||||||
|
# This script should be executed inside a docker container in privilieged mode
|
||||||
|
# ('docker run --privileged', introduced in docker 0.6).
|
||||||
|
|
||||||
|
# Usage: dind CMD [ARG...]
|
||||||
|
|
||||||
|
# apparmor sucks and Docker needs to know that it's in a container (c) @tianon
|
||||||
|
export container=docker
|
||||||
|
|
||||||
|
# First, make sure that cgroups are mounted correctly.
|
||||||
|
CGROUP=/cgroup
|
||||||
|
|
||||||
|
mkdir -p "$CGROUP"
|
||||||
|
|
||||||
|
if ! mountpoint -q "$CGROUP"; then
|
||||||
|
mount -n -t tmpfs -o uid=0,gid=0,mode=0755 cgroup $CGROUP || {
|
||||||
|
echo >&2 'Could not make a tmpfs mount. Did you use --privileged?'
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -d /sys/kernel/security ] && ! mountpoint -q /sys/kernel/security; then
|
||||||
|
mount -t securityfs none /sys/kernel/security || {
|
||||||
|
echo >&2 'Could not mount /sys/kernel/security.'
|
||||||
|
echo >&2 'AppArmor detection and -privileged mode might break.'
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Mount the cgroup hierarchies exactly as they are in the parent system.
|
||||||
|
for SUBSYS in $(cut -d: -f2 /proc/1/cgroup); do
|
||||||
|
mkdir -p "$CGROUP/$SUBSYS"
|
||||||
|
if ! mountpoint -q $CGROUP/$SUBSYS; then
|
||||||
|
mount -n -t cgroup -o "$SUBSYS" cgroup "$CGROUP/$SUBSYS"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# The two following sections address a bug which manifests itself
|
||||||
|
# by a cryptic "lxc-start: no ns_cgroup option specified" when
|
||||||
|
# trying to start containers withina container.
|
||||||
|
# The bug seems to appear when the cgroup hierarchies are not
|
||||||
|
# mounted on the exact same directories in the host, and in the
|
||||||
|
# container.
|
||||||
|
|
||||||
|
# Named, control-less cgroups are mounted with "-o name=foo"
|
||||||
|
# (and appear as such under /proc/<pid>/cgroup) but are usually
|
||||||
|
# mounted on a directory named "foo" (without the "name=" prefix).
|
||||||
|
# Systemd and OpenRC (and possibly others) both create such a
|
||||||
|
# cgroup. To avoid the aforementioned bug, we symlink "foo" to
|
||||||
|
# "name=foo". This shouldn't have any adverse effect.
|
||||||
|
name="${SUBSYS#name=}"
|
||||||
|
if [ "$name" != "$SUBSYS" ]; then
|
||||||
|
ln -s "$SUBSYS" "$CGROUP/$name"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Likewise, on at least one system, it has been reported that
|
||||||
|
# systemd would mount the CPU and CPU accounting controllers
|
||||||
|
# (respectively "cpu" and "cpuacct") with "-o cpuacct,cpu"
|
||||||
|
# but on a directory called "cpu,cpuacct" (note the inversion
|
||||||
|
# in the order of the groups). This tries to work around it.
|
||||||
|
if [ "$SUBSYS" = 'cpuacct,cpu' ]; then
|
||||||
|
ln -s "$SUBSYS" "$CGROUP/cpu,cpuacct"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Note: as I write those lines, the LXC userland tools cannot setup
|
||||||
|
# a "sub-container" properly if the "devices" cgroup is not in its
|
||||||
|
# own hierarchy. Let's detect this and issue a warning.
|
||||||
|
if ! grep -q :devices: /proc/1/cgroup; then
|
||||||
|
echo >&2 'WARNING: the "devices" cgroup should be in its own hierarchy.'
|
||||||
|
fi
|
||||||
|
if ! grep -qw devices /proc/1/cgroup; then
|
||||||
|
echo >&2 'WARNING: it looks like the "devices" cgroup is not mounted.'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Mount /tmp
|
||||||
|
mount -t tmpfs none /tmp
|
||||||
|
|
||||||
|
if [ $# -gt 0 ]; then
|
||||||
|
exec "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo >&2 'ERROR: No command specified.'
|
||||||
|
echo >&2 'You probably want to run hack/make.sh, or maybe a shell?'
|
23
script/test
23
script/test
@ -3,17 +3,14 @@
|
|||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
docker build -t docker-compose .
|
TAG="docker-compose:$(git rev-parse --short HEAD)"
|
||||||
docker run --privileged --rm --entrypoint flake8 docker-compose compose
|
|
||||||
|
|
||||||
docker build -f Dockerfile.tests -t docker-compose-tests .
|
docker build -t "$TAG" .
|
||||||
|
docker run \
|
||||||
if [ "$DOCKER_VERSIONS" == "" ]; then
|
--rm \
|
||||||
DOCKER_VERSIONS="1.5.0"
|
--volume="/var/run/docker.sock:/var/run/docker.sock" \
|
||||||
elif [ "$DOCKER_VERSIONS" == "all" ]; then
|
-e DOCKER_VERSIONS \
|
||||||
DOCKER_VERSIONS="1.3.3 1.4.1 1.5.0"
|
-e "TAG=$TAG" \
|
||||||
fi
|
--entrypoint="script/test-versions" \
|
||||||
|
"$TAG" \
|
||||||
for version in $DOCKER_VERSIONS; do
|
"$@"
|
||||||
docker run --privileged --rm -e "DOCKER_VERSION=$version" docker-compose-tests nosetests "$@"
|
|
||||||
done
|
|
||||||
|
26
script/test-versions
Executable file
26
script/test-versions
Executable file
@ -0,0 +1,26 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# This should be run inside a container built from the Dockerfile
|
||||||
|
# at the root of the repo - script/test will do it automatically.
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
>&2 echo "Running lint checks"
|
||||||
|
flake8 compose
|
||||||
|
|
||||||
|
if [ "$DOCKER_VERSIONS" == "" ]; then
|
||||||
|
DOCKER_VERSIONS="1.5.0"
|
||||||
|
elif [ "$DOCKER_VERSIONS" == "all" ]; then
|
||||||
|
DOCKER_VERSIONS="$ALL_DOCKER_VERSIONS"
|
||||||
|
fi
|
||||||
|
|
||||||
|
for version in $DOCKER_VERSIONS; do
|
||||||
|
>&2 echo "Running tests against Docker $version"
|
||||||
|
docker-1.5.0 run \
|
||||||
|
--rm \
|
||||||
|
--privileged \
|
||||||
|
--volume="/var/lib/docker" \
|
||||||
|
-e "DOCKER_VERSION=$version" \
|
||||||
|
--entrypoint="script/dind" \
|
||||||
|
"$TAG" \
|
||||||
|
script/wrapdocker nosetests "$@"
|
||||||
|
done
|
@ -1,83 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Adapted from https://github.com/jpetazzo/dind
|
|
||||||
|
|
||||||
# First, make sure that cgroups are mounted correctly.
|
|
||||||
CGROUP=/sys/fs/cgroup
|
|
||||||
: {LOG:=stdio}
|
|
||||||
|
|
||||||
[ -d $CGROUP ] ||
|
|
||||||
mkdir $CGROUP
|
|
||||||
|
|
||||||
mountpoint -q $CGROUP ||
|
|
||||||
mount -n -t tmpfs -o uid=0,gid=0,mode=0755 cgroup $CGROUP || {
|
|
||||||
echo "Could not make a tmpfs mount. Did you use --privileged?"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ -d /sys/kernel/security ] && ! mountpoint -q /sys/kernel/security
|
|
||||||
then
|
|
||||||
mount -t securityfs none /sys/kernel/security || {
|
|
||||||
echo "Could not mount /sys/kernel/security."
|
|
||||||
echo "AppArmor detection and --privileged mode might break."
|
|
||||||
}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Mount the cgroup hierarchies exactly as they are in the parent system.
|
|
||||||
for SUBSYS in $(cut -d: -f2 /proc/1/cgroup)
|
|
||||||
do
|
|
||||||
[ -d $CGROUP/$SUBSYS ] || mkdir $CGROUP/$SUBSYS
|
|
||||||
mountpoint -q $CGROUP/$SUBSYS ||
|
|
||||||
mount -n -t cgroup -o $SUBSYS cgroup $CGROUP/$SUBSYS
|
|
||||||
|
|
||||||
# The two following sections address a bug which manifests itself
|
|
||||||
# by a cryptic "lxc-start: no ns_cgroup option specified" when
|
|
||||||
# trying to start containers withina container.
|
|
||||||
# The bug seems to appear when the cgroup hierarchies are not
|
|
||||||
# mounted on the exact same directories in the host, and in the
|
|
||||||
# container.
|
|
||||||
|
|
||||||
# Named, control-less cgroups are mounted with "-o name=foo"
|
|
||||||
# (and appear as such under /proc/<pid>/cgroup) but are usually
|
|
||||||
# mounted on a directory named "foo" (without the "name=" prefix).
|
|
||||||
# Systemd and OpenRC (and possibly others) both create such a
|
|
||||||
# cgroup. To avoid the aforementioned bug, we symlink "foo" to
|
|
||||||
# "name=foo". This shouldn't have any adverse effect.
|
|
||||||
echo $SUBSYS | grep -q ^name= && {
|
|
||||||
NAME=$(echo $SUBSYS | sed s/^name=//)
|
|
||||||
ln -s $SUBSYS $CGROUP/$NAME
|
|
||||||
}
|
|
||||||
|
|
||||||
# Likewise, on at least one system, it has been reported that
|
|
||||||
# systemd would mount the CPU and CPU accounting controllers
|
|
||||||
# (respectively "cpu" and "cpuacct") with "-o cpuacct,cpu"
|
|
||||||
# but on a directory called "cpu,cpuacct" (note the inversion
|
|
||||||
# in the order of the groups). This tries to work around it.
|
|
||||||
[ $SUBSYS = cpuacct,cpu ] && ln -s $SUBSYS $CGROUP/cpu,cpuacct
|
|
||||||
done
|
|
||||||
|
|
||||||
# Note: as I write those lines, the LXC userland tools cannot setup
|
|
||||||
# a "sub-container" properly if the "devices" cgroup is not in its
|
|
||||||
# own hierarchy. Let's detect this and issue a warning.
|
|
||||||
grep -q :devices: /proc/1/cgroup ||
|
|
||||||
echo "WARNING: the 'devices' cgroup should be in its own hierarchy."
|
|
||||||
grep -qw devices /proc/1/cgroup ||
|
|
||||||
echo "WARNING: it looks like the 'devices' cgroup is not mounted."
|
|
||||||
|
|
||||||
# Now, close extraneous file descriptors.
|
|
||||||
pushd /proc/self/fd >/dev/null
|
|
||||||
for FD in *
|
|
||||||
do
|
|
||||||
case "$FD" in
|
|
||||||
# Keep stdin/stdout/stderr
|
|
||||||
[012])
|
|
||||||
;;
|
|
||||||
# Nuke everything else
|
|
||||||
*)
|
|
||||||
eval exec "$FD>&-"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
popd >/dev/null
|
|
||||||
|
|
||||||
if [ "$DOCKER_VERSION" == "" ]; then
|
if [ "$DOCKER_VERSION" == "" ]; then
|
||||||
DOCKER_VERSION="1.5.0"
|
DOCKER_VERSION="1.5.0"
|
||||||
@ -95,4 +16,5 @@ while ! docker ps &>/dev/null; do
|
|||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
|
|
||||||
|
>&2 echo ">" "$@"
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user