mirror of
https://github.com/wmnnd/nginx-certbot
synced 2023-04-20 18:47:46 +08:00
check if docker-compose exists
This commit is contained in:
parent
8335f83c61
commit
553525fd36
@ -1,5 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if ! [ -x "$(command -v docker-compose)" ]; then
|
||||
echo 'Error: docker-compose is not installed.' >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
domains=(example.com www.example.com)
|
||||
rsa_key_size=4096
|
||||
data_path="./data/certbot"
|
||||
|
Loading…
x
Reference in New Issue
Block a user