Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ee site create fails with alias domains and ssl=le #1745

Closed
andreasunterhuber opened this issue Nov 23, 2022 · 1 comment
Closed

ee site create fails with alias domains and ssl=le #1745

andreasunterhuber opened this issue Nov 23, 2022 · 1 comment

Comments

@andreasunterhuber
Copy link

Running the command (from manual page https://easyengine.io/commands/site/create/):
ee site create sub.domain.com --type=html --alias-domains='sub1.domain.com' --ssl=le

will fail because of no successful SSL verification. But running:

  • ee site create sub.domain.com --type=html --ssl=le AND
  • ee site create sub1.domain.com --type=html --ssl=le
    both works.

In connection with the alias domains, it will not work.

Full log

[23-11-2022 12:18:31] ee.INFO: ::::::::::::::::::::::::ee invoked::::::::::::::::::::::::
[23-11-2022 12:18:31] ee.DEBUG: Fallback autoloader paths: phar://ee.phar/vendor/autoload.php
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: docker ps > /dev/null
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: command -v docker-compose > /dev/null
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: Using default global config: /opt/easyengine/config/config.yml
[23-11-2022 12:18:31] ee.DEBUG: No project config found
[23-11-2022 12:18:31] ee.DEBUG: argv: /usr/local/bin/ee site create sub.domain.com --type=html --alias-domains=sub1.domain.com --ssl=le
[23-11-2022 12:18:31] ee.DEBUG: Running command: site
[23-11-2022 12:18:31] ee.DEBUG: Running command: site create
[23-11-2022 12:18:31] ee.INFO: ======================== site create start ========================
[23-11-2022 12:18:31] html_type.DEBUG: args: ["sub.domain.com"]
[23-11-2022 12:18:31] html_type.DEBUG: assoc_args: {"alias-domains":"sub1.domain.com","ssl":"le"}
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: which docker
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: docker inspect -f '{{.State.Running}}' services_global-nginx-proxy_1
[23-11-2022 12:18:31] ee.DEBUG: STDOUT: true
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: docker inspect --format '{{ (index (index .NetworkSettings.Ports "80/tcp") 0).HostPort }}' services_global-nginx-proxy_1
[23-11-2022 12:18:31] ee.DEBUG: STDOUT: 80
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: docker inspect --format '{{ (index (index .NetworkSettings.Ports "443/tcp") 0).HostPort }}' services_global-nginx-proxy_1
[23-11-2022 12:18:31] ee.DEBUG: STDOUT: 443
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.INFO: Configuring project.
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: whoami
[23-11-2022 12:18:31] ee.DEBUG: STDOUT: root
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.INFO: Creating site sub.domain.com.
[23-11-2022 12:18:31] ee.INFO: Copying configuration files.
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: docker volume ls --filter="label=org.label-schema.vendor=EasyEngine" --filter="label=io.easyengine.site=sub.domain.com" -q
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: docker info 2> /dev/null | awk '/Docker Root Dir/ {print $4}'
[23-11-2022 12:18:31] ee.DEBUG: STDOUT: /var/lib/docker
[23-11-2022 12:18:31] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: -----------------------
[23-11-2022 12:18:31] ee.DEBUG: COMMAND: docker volume inspect subdomaincom_htdocs
[23-11-2022 12:18:32] ee.DEBUG: STDOUT: []
[23-11-2022 12:18:32] ee.DEBUG: STDERR: Error: No such volume: subdomaincom_htdocs
[23-11-2022 12:18:32] ee.DEBUG: RETURN CODE: 1
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: COMMAND: docker volume create \ 					--label "org.label-schema.vendor=EasyEngine" \ 					--label "io.easyengine.site=sub.domain.com" \ 			subdomaincom_htdocs
[23-11-2022 12:18:32] ee.DEBUG: STDOUT: subdomaincom_htdocs
[23-11-2022 12:18:32] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: COMMAND: docker volume inspect subdomaincom_config_nginx
[23-11-2022 12:18:32] ee.DEBUG: STDOUT: []
[23-11-2022 12:18:32] ee.DEBUG: STDERR: Error: No such volume: subdomaincom_config_nginx
[23-11-2022 12:18:32] ee.DEBUG: RETURN CODE: 1
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: COMMAND: docker volume create \ 					--label "org.label-schema.vendor=EasyEngine" \ 					--label "io.easyengine.site=sub.domain.com" \ 			subdomaincom_config_nginx
[23-11-2022 12:18:32] ee.DEBUG: STDOUT: subdomaincom_config_nginx
[23-11-2022 12:18:32] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: COMMAND: docker volume inspect subdomaincom_log_nginx
[23-11-2022 12:18:32] ee.DEBUG: STDOUT: []
[23-11-2022 12:18:32] ee.DEBUG: STDERR: Error: No such volume: subdomaincom_log_nginx
[23-11-2022 12:18:32] ee.DEBUG: RETURN CODE: 1
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: COMMAND: docker volume create \ 					--label "org.label-schema.vendor=EasyEngine" \ 					--label "io.easyengine.site=sub.domain.com" \ 			subdomaincom_log_nginx
[23-11-2022 12:18:32] ee.DEBUG: STDOUT: subdomaincom_log_nginx
[23-11-2022 12:18:32] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.INFO: Starting site's services.
[23-11-2022 12:18:32] ee.DEBUG: -----------------------
[23-11-2022 12:18:32] ee.DEBUG: COMMAND: docker-compose -f docker-compose.yml  up -d
[23-11-2022 12:18:33] ee.DEBUG: STDERR: Creating network "sub.domain.com" with the default driver Creating subdomaincom_nginx_1 ...  Creating subdomaincom_nginx_1 ... done
[23-11-2022 12:18:33] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:33] ee.DEBUG: -----------------------
[23-11-2022 12:18:33] ee.DEBUG: -----------------------
[23-11-2022 12:18:33] ee.DEBUG: COMMAND: docker-compose -f docker-compose.yml  restart nginx
[23-11-2022 12:18:35] ee.DEBUG: STDERR: Restarting subdomaincom_nginx_1 ...  Restarting subdomaincom_nginx_1 ... done
[23-11-2022 12:18:35] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:35] ee.DEBUG: -----------------------
[23-11-2022 12:18:35] ee.DEBUG: -----------------------
[23-11-2022 12:18:35] ee.DEBUG: COMMAND: docker-compose -f docker-compose.yml  exec --user="root" nginx bash -c "chown -R www-data: /var/www/htdocs"
[23-11-2022 12:18:35] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:35] ee.DEBUG: -----------------------
[23-11-2022 12:18:35] ee.INFO: Checking and verifying site-up status. This may take some time.
[23-11-2022 12:18:35] ee.DEBUG: sub.domain.com status httpcode: 200
[23-11-2022 12:18:35] ee.DEBUG: -----------------------
[23-11-2022 12:18:35] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "nginx -t"
[23-11-2022 12:18:36] ee.DEBUG: STDERR: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
[23-11-2022 12:18:36] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "/app/docker-entrypoint.sh /usr/local/bin/docker-gen /app/nginx.tmpl /etc/nginx/conf.d/default.conf; /usr/sbin/nginx -s reload"
[23-11-2022 12:18:36] ee.DEBUG: STDOUT: Custom dhparam.pem file found, generation skipped
[23-11-2022 12:18:36] ee.DEBUG: STDERR: 2022/11/23 12:18:36 Generated '/etc/nginx/conf.d/default.conf' from 17 containers
[23-11-2022 12:18:36] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "nginx -t"
[23-11-2022 12:18:36] ee.DEBUG: STDERR: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
[23-11-2022 12:18:36] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "/app/docker-entrypoint.sh /usr/local/bin/docker-gen /app/nginx.tmpl /etc/nginx/conf.d/default.conf; /usr/sbin/nginx -s reload"
[23-11-2022 12:18:36] ee.DEBUG: STDOUT: Custom dhparam.pem file found, generation skipped
[23-11-2022 12:18:36] ee.DEBUG: STDERR: 2022/11/23 12:18:36 Generated '/etc/nginx/conf.d/default.conf' from 17 containers
[23-11-2022 12:18:36] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "nginx -t"
[23-11-2022 12:18:36] ee.DEBUG: STDERR: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
[23-11-2022 12:18:36] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: -----------------------
[23-11-2022 12:18:36] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "/app/docker-entrypoint.sh /usr/local/bin/docker-gen /app/nginx.tmpl /etc/nginx/conf.d/default.conf; /usr/sbin/nginx -s reload"
[23-11-2022 12:18:37] ee.DEBUG: STDOUT: Custom dhparam.pem file found, generation skipped
[23-11-2022 12:18:37] ee.DEBUG: STDERR: 2022/11/23 12:18:36 Generated '/etc/nginx/conf.d/default.conf' from 17 containers
[23-11-2022 12:18:37] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:37] ee.DEBUG: -----------------------
[23-11-2022 12:18:37] ee.DEBUG: Starting SSL procedure
[23-11-2022 12:18:37] ee.DEBUG: Initializing LE
[23-11-2022 12:18:37] ee.DEBUG: Wildcard in init_le:
[23-11-2022 12:18:37] ee.DEBUG: Loading account keypair
[23-11-2022 12:18:38] ee.DEBUG: Account with email id: info@domain.com registered successfully!
[23-11-2022 12:18:38] ee.DEBUG: Domain Authorization Challenge for sub.domain.com revoked successfully
[23-11-2022 12:18:39] ee.DEBUG: Domain Authorization Challenge for sub1.domain.com revoked successfully
[23-11-2022 12:18:39] ee.DEBUG: Authorization challenge supported by solver. Solver: http-01 Challenge: http-01
[23-11-2022 12:18:39] ee.DEBUG: Storing authorization challenge. Domain: sub.domain.com Challenge: Array (     [domain] => sub.domain.com     [status] => pending     [type] => http-01     [url] => https://acme-v02.api.letsencrypt.org/acme/chall-v3/179562472987/EqULgA     [token] => vA5wIQVTwIOaKyzbrmQnDaWUPcmhj9j7_5w0DDlPU6s     [payload] => vA5wIQVTwIOaKyzbrmQnDaWUPcmhj9j7_5w0DDlPU6s.uBQn_ajzsffbTCoqXYfFCktNUOpa7Yht4D2yMmWEyGc )
[23-11-2022 12:18:39] ee.DEBUG: Authorization challenge supported by solver. Solver: http-01 Challenge: http-01
[23-11-2022 12:18:39] ee.DEBUG: Storing authorization challenge. Domain: sub1.domain.com Challenge: Array (     [domain] => sub1.domain.com     [status] => pending     [type] => http-01     [url] => https://acme-v02.api.letsencrypt.org/acme/chall-v3/179562472997/hQ8l0A     [token] => RZb_zb9Ey6EmOPJo_x7YmEgjqrFKYMT4G0H3F3kdYMo     [payload] => RZb_zb9Ey6EmOPJo_x7YmEgjqrFKYMT4G0H3F3kdYMo.uBQn_ajzsffbTCoqXYfFCktNUOpa7Yht4D2yMmWEyGc )
[23-11-2022 12:18:39] ee.DEBUG: Solving authorization challenge: Domain: sub.domain.com Challenge: Array (     [domain] => sub.domain.com     [status] => pending     [type] => http-01     [url] => https://acme-v02.api.letsencrypt.org/acme/chall-v3/179562472987/EqULgA     [token] => vA5wIQVTwIOaKyzbrmQnDaWUPcmhj9j7_5w0DDlPU6s     [payload] => vA5wIQVTwIOaKyzbrmQnDaWUPcmhj9j7_5w0DDlPU6s.uBQn_ajzsffbTCoqXYfFCktNUOpa7Yht4D2yMmWEyGc )
[23-11-2022 12:18:39] ee.DEBUG: Creating challange file /opt/easyengine/services/nginx-proxy/html/.well-known/acme-challenge/vA5wIQVTwIOaKyzbrmQnDaWUPcmhj9j7_5w0DDlPU6s
[23-11-2022 12:18:39] ee.DEBUG: -----------------------
[23-11-2022 12:18:39] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "nginx -t"
[23-11-2022 12:18:39] ee.DEBUG: STDERR: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
[23-11-2022 12:18:39] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:39] ee.DEBUG: -----------------------
[23-11-2022 12:18:39] ee.DEBUG: -----------------------
[23-11-2022 12:18:39] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "/app/docker-entrypoint.sh /usr/local/bin/docker-gen /app/nginx.tmpl /etc/nginx/conf.d/default.conf; /usr/sbin/nginx -s reload"
[23-11-2022 12:18:39] ee.DEBUG: STDOUT: Custom dhparam.pem file found, generation skipped
[23-11-2022 12:18:39] ee.DEBUG: STDERR: 2022/11/23 12:18:39 Generated '/etc/nginx/conf.d/default.conf' from 17 containers
[23-11-2022 12:18:39] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:39] ee.DEBUG: -----------------------
[23-11-2022 12:18:39] ee.DEBUG: Solving authorization challenge: Domain: sub1.domain.com Challenge: Array (     [domain] => sub1.domain.com     [status] => pending     [type] => http-01     [url] => https://acme-v02.api.letsencrypt.org/acme/chall-v3/179562472997/hQ8l0A     [token] => RZb_zb9Ey6EmOPJo_x7YmEgjqrFKYMT4G0H3F3kdYMo     [payload] => RZb_zb9Ey6EmOPJo_x7YmEgjqrFKYMT4G0H3F3kdYMo.uBQn_ajzsffbTCoqXYfFCktNUOpa7Yht4D2yMmWEyGc )
[23-11-2022 12:18:39] ee.DEBUG: Creating challange file /opt/easyengine/services/nginx-proxy/html/.well-known/acme-challenge/RZb_zb9Ey6EmOPJo_x7YmEgjqrFKYMT4G0H3F3kdYMo
[23-11-2022 12:18:39] ee.DEBUG: -----------------------
[23-11-2022 12:18:39] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "nginx -t"
[23-11-2022 12:18:40] ee.DEBUG: STDERR: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
[23-11-2022 12:18:40] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:40] ee.DEBUG: -----------------------
[23-11-2022 12:18:40] ee.DEBUG: -----------------------
[23-11-2022 12:18:40] ee.DEBUG: COMMAND: docker exec services_global-nginx-proxy_1 sh -c "/app/docker-entrypoint.sh /usr/local/bin/docker-gen /app/nginx.tmpl /etc/nginx/conf.d/default.conf; /usr/sbin/nginx -s reload"
[23-11-2022 12:18:40] ee.DEBUG: STDOUT: Custom dhparam.pem file found, generation skipped
[23-11-2022 12:18:40] ee.DEBUG: STDERR: 2022/11/23 12:18:40 Generated '/etc/nginx/conf.d/default.conf' from 17 containers
[23-11-2022 12:18:40] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:18:40] ee.DEBUG: -----------------------
[23-11-2022 12:18:40] ee.INFO: Starting SSL verification.
[23-11-2022 12:18:40] ee.DEBUG: Loading account keypair
[23-11-2022 12:18:40] ee.DEBUG: Starting check with solver http
[23-11-2022 12:18:40] ee.DEBUG: Loading the authorization token for domains sub.domain.com, sub1.domain.com ...
[23-11-2022 12:18:40] ee.DEBUG: Challenge loaded.
[23-11-2022 12:18:41] ee.DEBUG: Testing the challenge for domain sub.domain.com
[23-11-2022 12:21:41] ee.INFO: ======================== site cleanup start ========================
[23-11-2022 12:21:41] ee.WARNING: Can not validate challenge for domain sub.domain.com
[23-11-2022 12:21:41] ee.WARNING: Initiating clean-up.
[23-11-2022 12:21:41] ee.DEBUG: -----------------------
[23-11-2022 12:21:41] ee.DEBUG: COMMAND: docker-compose -f docker-compose.yml  down
[23-11-2022 12:21:42] ee.DEBUG: STDERR: Stopping subdomaincom_nginx_1 ...  Stopping subdomaincom_nginx_1 ... done Removing subdomaincom_nginx_1 ...  Removing subdomaincom_nginx_1 ... done Network ee-global-frontend-network is external, skipping Removing network sub.domain.com
[23-11-2022 12:21:42] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.INFO: [sub.domain.com] Docker Containers removed.
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.DEBUG: COMMAND: docker volume ls --filter="label=org.label-schema.vendor=EasyEngine" --filter="label=io.easyengine.site=sub.domain.com" -q
[23-11-2022 12:21:42] ee.DEBUG: STDOUT: subdomaincom_config_nginx subdomaincom_htdocs subdomaincom_log_nginx
[23-11-2022 12:21:42] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.DEBUG: COMMAND: docker volume rm subdomaincom_config_nginx
[23-11-2022 12:21:42] ee.DEBUG: STDOUT: subdomaincom_config_nginx
[23-11-2022 12:21:42] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.DEBUG: COMMAND: docker volume rm subdomaincom_htdocs
[23-11-2022 12:21:42] ee.DEBUG: STDOUT: subdomaincom_htdocs
[23-11-2022 12:21:42] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.DEBUG: COMMAND: docker volume rm subdomaincom_log_nginx
[23-11-2022 12:21:42] ee.DEBUG: STDOUT: subdomaincom_log_nginx
[23-11-2022 12:21:42] ee.DEBUG: RETURN CODE: 0
[23-11-2022 12:21:42] ee.DEBUG: -----------------------
[23-11-2022 12:21:42] ee.INFO: [sub.domain.com] site root removed.
[23-11-2022 12:21:42] ee.INFO: ======================== site cleanup end ========================
[23-11-2022 12:21:42] ee.INFO: Report bugs here: https://github.com/EasyEngine/site-command

System Information

  • ee cli info
+-------------------+----------------------------------------------------------------------------+
| OS                | Linux 5.15.0-53-generic #59-Ubuntu SMP Mon Oct 17 18:53:30 UTC 2022 x86_64 |
| Shell             | /bin/bash                                                                  |
| PHP binary        | /usr/bin/php8.0                                                            |
| PHP version       | 8.0.25                                                                     |
| php.ini used      | /etc/php/8.0/cli/php.ini                                                   |
| EE root dir       | phar://ee.phar                                                             |
| EE vendor dir     | phar://ee.phar/vendor                                                      |
| EE phar path      | /root                                                                      |
| EE packages dir   |                                                                            |
| EE global config  | /opt/easyengine/config/config.yml                                          |
| EE project config |                                                                            |
| EE version        | 4.6.2                                                                      |
+-------------------+----------------------------------------------------------------------------+
  • lsb_release -a
Distributor ID:	Ubuntu
Description:	Ubuntu 22.04.1 LTS
Release:	22.04
Codename:	jammy
  • docker version
Client: Docker Engine - Community
 Version:           20.10.21
 API version:       1.41
 Go version:        go1.18.7
 Git commit:        baeda1f
 Built:             Tue Oct 25 18:01:58 2022
 OS/Arch:           linux/amd64
 Context:           default
 Experimental:      true

Server: Docker Engine - Community
 Engine:
  Version:          20.10.21
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.18.7
  Git commit:       3056208
  Built:            Tue Oct 25 17:59:49 2022
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.6.10
  GitCommit:        770bd0108c32f3fb5c73ae1264f7e503fe7b2661
 runc:
  Version:          1.1.4
  GitCommit:        v1.1.4-0-g5fd4c4d
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0
  • docker-compose version
docker-compose version 1.29.2, build 5becea4c
docker-py version: 5.0.0
CPython version: 3.7.10
OpenSSL version: OpenSSL 1.1.0l  10 Sep 2019
@L0RD-ZER0
Copy link

This issue has been resolved in newer EasyEngine releases.. Please update EasyEngine to the latest version using ee cli update command. In order for a fresh installation instead, consider using the command wget -qO ee rt.cx/ee4 && sudo bash ee to use the automated installation script to install the latest version of EasyEngine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants