mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
9 lines
326 B
Bash
Executable file
9 lines
326 B
Bash
Executable file
#!/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
|
|
sed -i 's/FAKE_DNS: .*/FAKE_DNS: 172.17.42.1/' docker-compose.yml
|
|
docker-compose up -d
|