mirror of
https://github.com/certbot/certbot.git
synced 2026-02-24 18:31:56 -05:00
8 lines
363 B
Bash
Executable file
8 lines
363 B
Bash
Executable file
#!/bin/bash -x
|
|
|
|
# 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
|