- Introduced ACME HTTP-01 challenge documentation. - Added Docker Compose example for HTTP-01 setup. - Updated `get_haproxy_command` logic with improved PID validation using `psutil`. - Enhanced logging with a new `SingleLineNonEmptyFilter`. - Expanded tests for daemonize functionalities. - Updated dependencies to include `psutil`.
29 lines
No EOL
726 B
Bash
Executable file
29 lines
No EOL
726 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ASSETS_DIR="$(dirname "${BASH_SOURCE[0]}")"/../../build/assets/certs/haproxy
|
|
|
|
docker network create easyhaproxy
|
|
docker volume create certs_certbot
|
|
docker volume create certs_haproxy
|
|
|
|
docker run -d --rm --name easyhaproxy_install -v certs_haproxy:/certs alpine tail -f /dev/null
|
|
docker cp $ASSETS_DIR/place_holder_cert.pem easyhaproxy_install:/certs/place_holder_cert.pem
|
|
docker stop easyhaproxy_install
|
|
|
|
echo
|
|
echo
|
|
echo make sure to add to all of your containers:
|
|
echo
|
|
echo docker-compose
|
|
echo ==============
|
|
echo "networks:"
|
|
echo " default:"
|
|
echo " name: easyhaproxy"
|
|
echo " external: true"
|
|
|
|
echo
|
|
echo
|
|
echo docker run
|
|
echo ==============
|
|
echo docker run ... --network easyhaproxy ... your_image:tag
|
|
echo |