evertramos/docker-wordpress

Vanilla version of docker-wordpress-letsencrypt throws an exception during initializatin

Psrinath-branch opened this issue · 5 comments

I've cloned the following:

  • docker-compose-letsencrypt-nginx-proxy-companion
  • docker-wordpress-letsencrypt

I started the proxy "./start.sh" after renaming the .env.sample to .env with vanilla configuration (no other changes).
I then renamed the env file for the Wordpress project as well, updated the values for DOMAINS and LETSENCRYPT_EMAIL. Everything else has been untouched.

When I try to bring this up, I get this error. I already tried cleaning up my Docker environment with 'docker system prune -a'

$ docker-compose up
Pulling db (mariadb:latest)...
latest: Pulling from library/mariadb
898c46f3b1a1: Pull complete
63366dfa0a50: Pull complete
041d4cd74a92: Pull complete
6e1bee0f8701: Pull complete
0fa9bfc0c84b: Pull complete
8e9b088fe106: Pull complete
af96bccda5c4: Pull complete
0655ee57b408: Pull complete
58e50a9049b1: Pull complete
57cd7839e491: Pull complete
ba45434027be: Pull complete
17d364431c50: Pull complete
7d66b02d0312: Pull complete
25a55736429c: Pull complete
Pulling wordpress (wordpress:latest)...
latest: Pulling from library/wordpress
27833a3ba0a5: Already exists
2d79f6773a3c: Pull complete
f5dd9a448b82: Pull complete
95719e57e42b: Pull complete
cc75e951030f: Pull complete
78873f480bce: Pull complete
1b14116a29a2: Pull complete
6ebd896c320d: Pull complete
5f2951bfeefd: Pull complete
4d7e173cc574: Pull complete
87ea8937aa18: Pull complete
e117c62ba700: Pull complete
e9f1069509f7: Pull complete
3ba473f4bcf1: Pull complete
a6af622a5d28: Pull complete
13618a8bb48c: Pull complete
cfdecacba081: Pull complete
70f5b1fbb18a: Pull complete
95fc3e5c5bad: Pull complete
Creating db ... done
Creating wordpress ... done
Attaching to db, wordpress
db           | Initializing database
db           | 2019-04-03 17:57:22 0 [Warning] InnoDB: Retry attempts for writing partial data failed.
db           | 2019-04-03 17:57:22 0 [ERROR] InnoDB: Write to file ./ibdata1 failed at offset 0, 1048576 bytes should have been written, only 0 were written. Operating system error number 22. Check that your OS and file system support files of this size. Check also that the disk is not full or a disk quota exceeded.
db           | 2019-04-03 17:57:22 0 [ERROR] InnoDB: Error number 22 means 'Invalid argument'
db           | 2019-04-03 17:57:22 0 [ERROR] InnoDB: Could not set the file size of './ibdata1'. Probably out of disk space
db           | 2019-04-03 17:57:22 0 [ERROR] InnoDB: Database creation was aborted with error Generic error. You may need to delete
the ibdata1 file before trying to start up again.
wordpress    | WordPress not found in /var/www/html - copying now...
wordpress    | WARNING: /var/www/html is not empty! (copying anyhow)
db           | 2019-04-03 17:57:23 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:57:23 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:57:23 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:57:23 0 [ERROR] Aborting
db           |
db           |
db           | Installation of system tables failed!  Examine the logs in
db           | /var/lib/mysql/ for more information.
db           |
db           | The problem could be conflicting information in an external
db           | my.cnf files. You can ignore these by doing:
db           |
db           |     shell> /usr/bin/mysql_install_db --defaults-file=~/.my.cnf
db           |
db           | You can also try to start the mysqld daemon with:
db           |
db           |     shell> /usr/sbin/mysqld --skip-grant-tables --general-log &
db           |
db           | and use the command line tool /usr/bin/mysql
db           | to connect to the mysql database and look at the grant tables:
db           |
db           |     shell> /usr/bin/mysql -u root mysql
db           |     mysql> show tables;
db           |
db           | Try 'mysqld --help' if you have problems with paths.  Using
db           | --general-log gives you a log in /var/lib/mysql/ that may be helpful.
db           |
db           | The latest information about mysql_install_db is available at
db           | https://mariadb.com/kb/en/installing-system-tables-mysql_install_db
db           | You can find the latest source at https://downloads.mariadb.org and
db           | the maria-discuss email list at https://launchpad.net/~maria-discuss
db           |
db           | Please check all of the above before submitting a bug report
db           | at http://mariadb.org/jira
db           |
db           | 2019-04-03 17:57:27 0 [Note] mysqld (mysqld 10.3.14-MariaDB-1:10.3.14+maria~bionic) starting as process 1 ...
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Using Linux native AIO
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Uses event mutexes
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Number of pools: 1
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Using SSE2 crc32 instructions
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
db           | 2019-04-03 17:57:27 0 [Note] InnoDB: Completed initialization of buffer pool
db           | 2019-04-03 17:57:28 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be
changed. See the man page of setpriority().
db           | 2019-04-03 17:57:28 0 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
db           | 2019-04-03 17:57:28 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
db           | 2019-04-03 17:57:28 0 [Note] InnoDB: Starting shutdown...
db           | 2019-04-03 17:57:28 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:57:28 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:57:28 0 [Note] Plugin 'FEEDBACK' is disabled.
db           | 2019-04-03 17:57:28 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
db           | 2019-04-03 17:57:28 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:57:28 0 [ERROR] Aborting
db           |
db exited with code 1
wordpress    | Complete! WordPress has been successfully copied to /var/www/html
wordpress    | [03-Apr-2019 17:57:33 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): Connection refused in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) Connection refused
db           | 2019-04-03 17:57:33 0 [Note] mysqld (mysqld 10.3.14-MariaDB-1:10.3.14+maria~bionic) starting as process 1 ...
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Using Linux native AIO
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Uses event mutexes
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Number of pools: 1
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Using SSE2 crc32 instructions
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Completed initialization of buffer pool
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be
changed. See the man page of setpriority().
db           | 2019-04-03 17:57:34 0 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
db           | 2019-04-03 17:57:34 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
db           | 2019-04-03 17:57:34 0 [Note] InnoDB: Starting shutdown...
db           | 2019-04-03 17:57:34 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:57:34 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:57:34 0 [Note] Plugin 'FEEDBACK' is disabled.
db           | 2019-04-03 17:57:34 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
db           | 2019-04-03 17:57:34 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:57:34 0 [ERROR] Aborting
db           |
db exited with code 1
db           | 2019-04-03 17:57:39 0 [Note] mysqld (mysqld 10.3.14-MariaDB-1:10.3.14+maria~bionic) starting as process 1 ...
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Using Linux native AIO
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Uses event mutexes
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Number of pools: 1
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Using SSE2 crc32 instructions
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: Completed initialization of buffer pool
db           | 2019-04-03 17:57:39 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be
changed. See the man page of setpriority().
db           | 2019-04-03 17:57:39 0 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
db           | 2019-04-03 17:57:39 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
wordpress    |
wordpress    | MySQL Connection Error: (2002) Connection refused
db           | 2019-04-03 17:57:40 0 [Note] InnoDB: Starting shutdown...
db           | 2019-04-03 17:57:40 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:57:40 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:57:40 0 [Note] Plugin 'FEEDBACK' is disabled.
db           | 2019-04-03 17:57:40 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
db           | 2019-04-03 17:57:40 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:57:40 0 [ERROR] Aborting
db           |
db exited with code 1
wordpress    |
wordpress    | MySQL Connection Error: (2002) Connection refused
db           | 2019-04-03 17:57:45 0 [Note] mysqld (mysqld 10.3.14-MariaDB-1:10.3.14+maria~bionic) starting as process 1 ...
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Using Linux native AIO
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Uses event mutexes
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Number of pools: 1
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Using SSE2 crc32 instructions
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: Completed initialization of buffer pool
db           | 2019-04-03 17:57:45 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be
changed. See the man page of setpriority().
db           | 2019-04-03 17:57:45 0 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
db           | 2019-04-03 17:57:45 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
db           | 2019-04-03 17:57:46 0 [Note] InnoDB: Starting shutdown...
db           | 2019-04-03 17:57:46 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:57:46 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:57:46 0 [Note] Plugin 'FEEDBACK' is disabled.
db           | 2019-04-03 17:57:46 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
db           | 2019-04-03 17:57:46 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:57:46 0 [ERROR] Aborting
db           |
wordpress    | [03-Apr-2019 17:57:47 UTC] PHP Warning:  mysqli::__construct(): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    | [03-Apr-2019 17:57:47 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) php_network_getaddresses: getaddrinfo failed: Name or service not known
db exited with code 1
wordpress    | [03-Apr-2019 17:57:51 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): Connection refused in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) Connection refused
db           | 2019-04-03 17:57:52 0 [Note] mysqld (mysqld 10.3.14-MariaDB-1:10.3.14+maria~bionic) starting as process 1 ...
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Using Linux native AIO
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Uses event mutexes
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Number of pools: 1
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Using SSE2 crc32 instructions
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: Completed initialization of buffer pool
db           | 2019-04-03 17:57:52 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be
changed. See the man page of setpriority().
db           | 2019-04-03 17:57:52 0 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
db           | 2019-04-03 17:57:52 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
db           | 2019-04-03 17:57:53 0 [Note] InnoDB: Starting shutdown...
db           | 2019-04-03 17:57:53 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:57:53 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:57:53 0 [Note] Plugin 'FEEDBACK' is disabled.
db           | 2019-04-03 17:57:53 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
db           | 2019-04-03 17:57:53 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:57:53 0 [ERROR] Aborting
db           |
wordpress    | [03-Apr-2019 17:57:54 UTC] PHP Warning:  mysqli::__construct(): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    | [03-Apr-2019 17:57:54 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) php_network_getaddresses: getaddrinfo failed: Name or service not known
db exited with code 1
wordpress    | [03-Apr-2019 17:58:00 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): Connection refused in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) Connection refused
db           | 2019-04-03 17:58:00 0 [Note] mysqld (mysqld 10.3.14-MariaDB-1:10.3.14+maria~bionic) starting as process 1 ...
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Using Linux native AIO
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Uses event mutexes
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Number of pools: 1
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Using SSE2 crc32 instructions
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Completed initialization of buffer pool
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be
changed. See the man page of setpriority().
db           | 2019-04-03 17:58:01 0 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
db           | 2019-04-03 17:58:01 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
db           | 2019-04-03 17:58:01 0 [Note] InnoDB: Starting shutdown...
db           | 2019-04-03 17:58:01 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:58:01 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:58:01 0 [Note] Plugin 'FEEDBACK' is disabled.
db           | 2019-04-03 17:58:01 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
db           | 2019-04-03 17:58:01 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:58:01 0 [ERROR] Aborting
db           |
db exited with code 1
wordpress    | [03-Apr-2019 17:58:03 UTC] PHP Warning:  mysqli::__construct(): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    | [03-Apr-2019 17:58:03 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) php_network_getaddresses: getaddrinfo failed: Name or service not known
wordpress    | [03-Apr-2019 17:58:06 UTC] PHP Warning:  mysqli::__construct(): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    | [03-Apr-2019 17:58:06 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: Name or service not known in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) php_network_getaddresses: getaddrinfo failed: Name or service not known
wordpress    | [03-Apr-2019 17:58:13 UTC] PHP Warning:  mysqli::__construct(): (HY000/2002): Connection refused in Standard input code on line 22
wordpress    |
wordpress    | MySQL Connection Error: (2002) Connection refused
wordpress    |
wordpress    | WARNING: unable to establish a database connection to 'db:3306'
wordpress    |   continuing anyways (which might have unexpected results)
wordpress    |
db           | 2019-04-03 17:58:14 0 [Note] mysqld (mysqld 10.3.14-MariaDB-1:10.3.14+maria~bionic) starting as process 1 ...
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Using Linux native AIO
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Uses event mutexes
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Number of pools: 1
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Using SSE2 crc32 instructions
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: Completed initialization of buffer pool
db           | 2019-04-03 17:58:14 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be
changed. See the man page of setpriority().
db           | 2019-04-03 17:58:14 0 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 0 pages than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
db           | 2019-04-03 17:58:14 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
wordpress    | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.23.0.6. Set the 'ServerName' directive globally to suppress this message
db           | 2019-04-03 17:58:15 0 [Note] InnoDB: Starting shutdown...
wordpress    | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.23.0.6. Set the 'ServerName' directive globally to suppress this message
db           | 2019-04-03 17:58:15 0 [ERROR] Plugin 'InnoDB' init function returned error.
db           | 2019-04-03 17:58:15 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
db           | 2019-04-03 17:58:15 0 [Note] Plugin 'FEEDBACK' is disabled.
db           | 2019-04-03 17:58:15 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
db           | 2019-04-03 17:58:15 0 [ERROR] Unknown/unsupported storage engine: InnoDB
db           | 2019-04-03 17:58:15 0 [ERROR] Aborting
db           |
wordpress    | [Wed Apr 03 17:58:15.347970 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.25 (Debian) PHP/7.2.16 configured
-- resuming normal operations
wordpress    | [Wed Apr 03 17:58:15.348006 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
db exited with code 1
Gracefully stopping... (press Ctrl+C again to force)
Stopping wordpress ... done
Stopping db        ... done

Hello @Psrinath-branch,

Please update the data folder of your .env file for the wordpress, make sure it´s empty and try again. You should be just fine.

On other thing... have you tested the domain as suggested in the proxy?

@Psrinath-branch

I might miss a few details... what is this "Vanilla version"? Have you changed the service container?

I face this error too. In my case, I simply cloned both the projects (proxy & wordpress) and ran them without any changes. I get the same error. This is on Windows 10.

Same here on Windows 10. Can someone tell us what to do?

Hello there!

This docker proxy was supposed to run in Linux web server not windows neither localhost.