forked from kylemanna/docker-bitcoind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap-host.sh
executable file
·57 lines (44 loc) · 1.63 KB
/
bootstrap-host.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
#
# Configure broken host machine to run correctly
#
set -ex
BTC_IMAGE=${BTC_IMAGE:-kylemanna/bitcoind}
distro=$1
shift
memtotal=$(grep ^MemTotal /proc/meminfo | awk '{print int($2/1024) }')
#
# Only do swap hack if needed
#
if [ $memtotal -lt 2048 -a $(swapon -s | wc -l) -lt 2 ]; then
fallocate -l 2048M /swap || dd if=/dev/zero of=/swap bs=1M count=2048
mkswap /swap
grep -q "^/swap" /etc/fstab || echo "/swap swap swap defaults 0 0" >> /etc/fstab
swapon -a
fi
free -m
if [ "$distro" = "trusty" -o "$distro" = "ubuntu:14.04" ]; then
curl https://get.docker.io/gpg | apt-key add -
echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list
# Handle other parallel cloud init scripts that may lock the package database
# TODO: Add timeout
while ! apt-get update; do sleep 10; done
while ! apt-get install -y lxc-docker; do sleep 10; done
fi
# Always clean-up, but fail successfully
docker kill bitcoind-node 2>/dev/null || true
docker rm bitcoind-node 2>/dev/null || true
stop docker-bitcoind 2>/dev/null || true
# Always pull remote images to avoid caching issues
if [ -z "${BTC_IMAGE##*/*}" ]; then
docker pull $BTC_IMAGE
fi
# Initialize the data container
docker volume create --name=bitcoind-data
docker run -v bitcoind-data:/bitcoin --rm $BTC_IMAGE btc_init
# Start bitcoind via upstart and docker
curl https://raw.githubusercontent.com/kylemanna/docker-bitcoind/master/upstart.init > /etc/init/docker-bitcoind.conf
start docker-bitcoind
set +ex
echo "Resulting bitcoin.conf:"
docker run -v bitcoind-data:/bitcoin --rm $BTC_IMAGE cat /bitcoin/.bitcoin/bitcoin.conf