Welcome to mirror list, hosted at ThFree Co, Russian Federation.

boulder_install.sh « scripts « letstest « tests - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f997268bdfc1505a898a7132cc08d39f8b214880 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash -x

# >>>> only tested on Ubuntu 14.04LTS <<<<

# Check out special branch until latest docker changes land in Boulder master.
git clone -b docker-integration https://github.com/letsencrypt/boulder $BOULDERPATH
cd $BOULDERPATH
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
docker-compose up -d