mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
99 lines
2.8 KiB
Bash
99 lines
2.8 KiB
Bash
#!/bin/sh
|
|
|
|
DEST=$1
|
|
|
|
PKGVERSION="$VERSION"
|
|
if [ -n "$(git status --porcelain)" ]; then
|
|
PKGVERSION="$PKGVERSION-$(date +%Y%m%d%H%M%S)-$GITCOMMIT"
|
|
fi
|
|
|
|
PACKAGE_ARCHITECTURE="$(dpkg-architecture -qDEB_HOST_ARCH)"
|
|
PACKAGE_URL="http://www.docker.io/"
|
|
PACKAGE_MAINTAINER="docker@dotcloud.com"
|
|
PACKAGE_DESCRIPTION="lxc-docker is a Linux container runtime
|
|
Docker complements LXC with a high-level API which operates at the process
|
|
level. It runs unix processes with strong guarantees of isolation and
|
|
repeatability across servers.
|
|
Docker is a great building block for automating distributed systems:
|
|
large-scale web deployments, database clusters, continuous deployment systems,
|
|
private PaaS, service-oriented architectures, etc."
|
|
|
|
# Build docker as an ubuntu package using FPM and REPREPRO (sue me).
|
|
# bundle_binary must be called first.
|
|
bundle_ubuntu() {
|
|
DIR=$DEST/build
|
|
|
|
# Include our init scripts
|
|
mkdir -p $DIR/etc
|
|
cp -R contrib/init/upstart $DIR/etc/init
|
|
cp -R contrib/init/sysvinit $DIR/etc/init.d
|
|
mkdir -p $DIR/lib/systemd
|
|
cp -R contrib/init/systemd $DIR/lib/systemd/system
|
|
|
|
# Copy the binary
|
|
# This will fail if the binary bundle hasn't been built
|
|
mkdir -p $DIR/usr/bin
|
|
# Copy the binary
|
|
# This will fail if the binary bundle hasn't been built
|
|
cp $DEST/../binary/docker-$VERSION $DIR/usr/bin/docker
|
|
|
|
# Generate postinst/prerm scripts
|
|
cat >/tmp/postinst <<'EOF'
|
|
#!/bin/sh
|
|
service docker stop || true
|
|
grep -q '^docker:' /etc/group || groupadd --system docker || true
|
|
service docker start
|
|
EOF
|
|
cat >/tmp/prerm <<'EOF'
|
|
#!/bin/sh
|
|
service docker stop || true
|
|
|
|
case "$1" in
|
|
purge|remove|abort-install)
|
|
groupdel docker || true
|
|
;;
|
|
|
|
upgrade|failed-upgrade|abort-upgrade)
|
|
# don't touch docker group
|
|
;;
|
|
esac
|
|
EOF
|
|
chmod +x /tmp/postinst /tmp/prerm
|
|
|
|
(
|
|
cd $DEST
|
|
fpm -s dir -C $DIR \
|
|
--name lxc-docker-$VERSION --version $PKGVERSION \
|
|
--after-install /tmp/postinst \
|
|
--before-remove /tmp/prerm \
|
|
--architecture "$PACKAGE_ARCHITECTURE" \
|
|
--prefix / \
|
|
--depends lxc \
|
|
--depends aufs-tools \
|
|
--depends iptables \
|
|
--description "$PACKAGE_DESCRIPTION" \
|
|
--maintainer "$PACKAGE_MAINTAINER" \
|
|
--conflicts lxc-docker-virtual-package \
|
|
--provides lxc-docker \
|
|
--provides lxc-docker-virtual-package \
|
|
--replaces lxc-docker \
|
|
--replaces lxc-docker-virtual-package \
|
|
--url "$PACKAGE_URL" \
|
|
--vendor "$PACKAGE_VENDOR" \
|
|
--config-files /etc/init/docker.conf \
|
|
--config-files /etc/init.d/docker \
|
|
-t deb .
|
|
mkdir empty
|
|
fpm -s dir -C empty \
|
|
--name lxc-docker --version $PKGVERSION \
|
|
--architecture "$PACKAGE_ARCHITECTURE" \
|
|
--depends lxc-docker-$VERSION \
|
|
--description "$PACKAGE_DESCRIPTION" \
|
|
--maintainer "$PACKAGE_MAINTAINER" \
|
|
--url "$PACKAGE_URL" \
|
|
--vendor "$PACKAGE_VENDOR" \
|
|
-t deb .
|
|
)
|
|
}
|
|
|
|
bundle_ubuntu
|