2015-12-04 09:32:24 -05:00
|
|
|
#!/bin/bash -x
|
|
|
|
|
|
|
|
|
|
# >>>> only tested on Ubuntu 14.04LTS <<<<
|
|
|
|
|
|
2016-05-23 16:18:02 -04:00
|
|
|
# Check out special branch until latest docker changes land in Boulder master.
|
2016-05-25 18:43:54 -04:00
|
|
|
git clone -b docker-integration https://github.com/letsencrypt/boulder $BOULDERPATH
|
2016-05-23 16:18:02 -04:00
|
|
|
cd $BOULDERPATH
|
2016-08-10 14:51:12 -04:00
|
|
|
FAKE_DNS=$(ifconfig docker0 | grep "inet addr:" | cut -d: -f2 | awk '{ print $1}')
|
|
|
|
|
sed -i "s/FAKE_DNS: .*/FAKE_DNS: $FAKE_DNS/" docker-compose.yml
|
2016-05-23 16:18:02 -04:00
|
|
|
docker-compose up -d
|