diff --git a/example/gateway/certbot/Fockerfile b/example/gateway/certbot/Fockerfile index 881bb4e..08cb54b 100644 --- a/example/gateway/certbot/Fockerfile +++ b/example/gateway/certbot/Fockerfile @@ -3,6 +3,7 @@ base: freebsd-latest steps: - run: - ASSUME_ALWAYS_YES=yes IGNORE_OSVERSION=yes pkg install py37-certbot python3 + - mkdir -p /cookiecutter - mkdir -p /certbot/data - mkdir -p /certbot/webroot - mkdir -p /certbot/scripts diff --git a/example/gateway/nginx-http/Fockerfile b/example/gateway/nginx-http/Fockerfile index 5dab8a9..0a0f593 100644 --- a/example/gateway/nginx-http/Fockerfile +++ b/example/gateway/nginx-http/Fockerfile @@ -4,6 +4,7 @@ steps: - run: - ASSUME_ALWAYS_YES=yes IGNORE_OSVERSION=yes pkg install nginx - mkdir -p /certbot/webroot + - mkdir -p /cookiecutter - sysrc nginx_enable=YES - sysrc sshd_enable=NO - sysrc sendmail_enable=NONE diff --git a/example/gateway/nginx-https/Fockerfile b/example/gateway/nginx-https/Fockerfile index b2a4fec..cefacd8 100644 --- a/example/gateway/nginx-https/Fockerfile +++ b/example/gateway/nginx-https/Fockerfile @@ -6,9 +6,10 @@ steps: /root/crontab_root ] - run: - ASSUME_ALWAYS_YES=yes IGNORE_OSVERSION=yes pkg install nginx - + - mkdir -p /usr/local/etc/letsencrypt - mkdir -p /certbot/webroot + - mkdir -p /cookiecutter - crontab -u root /root/crontab_root - rm -vf /root/crontab_root