Giter VIP home page Giter VIP logo

shopware-docker's Introduction

Build Status

Docker Shopware Box

Installation

Docker (min. Version 1.12) have to be installed on your local machine:

Usage

Clone the repository to your local machine.

$ git clone https://github.com/shopwareLabs/shopware-docker
$ cd shopware-docker

Boot up your docker containers with psh.phar:

$ ./psh.phar docker:start

The first boot may take a while, so feel free to get a cup of coffee.

Your machine will be available at http://localhost:8083/ All required tools like the LAMP stack are already installed.

  • MySQL user: app, password: app

To SSH into the created Container:

$ ./psh.phar docker:ssh

Installing Shopware

SSH first into your VM:

$ ./psh.phar docker:ssh

Call the init script:

$ ./psh.phar init

This will download the latest release version of shopware and install it into /var/www/shopware/shopware

If you want an older shopware version just add --sw-version to the init script:

$ ./psh.phar init --sw-version=5.2.26

For plugin development

For plugin development there is a script init-vcs to initialize and install shopware through github.

$ ./psh.phar init-vcs --sw-branch=5.2

The plugin(s) you want to start development should be located in ./plugins (Only new plugin system is supported). They can be installed and linked into the Shopware checkout by executing

$ ./psh.phar init-plugins

This can be used together with our plugin-dev-tools as the local environment.

Access

Configure your online store in a web browser with the credentials demo/demo:

You can then access your storefront at:

Troubleshooting

If the elasticsearch or redis container didn't start make sure that the directory dev-ops/docker/_volumes/app-esdata|app-redisdata has chmod 777.

shopware-docker's People

Contributors

arosenhagen avatar janpietrzyk avatar opdevs-josh avatar robtranquillo avatar svenfinke avatar teiling88 avatar terwey avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

shopware-docker's Issues

scruptcreator.sh doesnt work

Line 12 in file scriptcreator.sh ist incorrect. It is not possible to create a user with uuid 0, it says.
Dirty fix:
groupadd -o -g ${GROUP} app-shell

For user: change this line before call:
$ ./psh.phar docker:start

App Container will shutdown

I tried this script - everything was build sucsessfully, but the shopwaredocker_app_server Image Container seems to exit right away. I fixed the same problem with the redis Container by setting the chmod to 777. Any Idea how to fix this?

Ubuntu 17.04
Docker version 17.09.0-ce, build afdb6d4
docker-compose version 1.16.1, build 6d1ac21

(4/6) Starting
> wait
	
(5/6) Starting
> echo "All containers started successfully"
	All containers started successfully
	
(6/6) Starting
> echo "Web server IP: http://10.100.111.46"
	Web server IP: http://10.100.111.46
	
Duration: 1s
All commands successfully executed!
micha@micha:~/docker/shopware/shopware-docker$ sudo ./psh.phar docker:ssh

###################
Starting Execution of 'docker:ssh' ('dev-ops/docker/actions/ssh.sh')


(1/1) Starting
> docker exec -i -u 0:0 -t a21983b0155ccd1e5042d2c27c14618fa5694007e72f312d3fd5fc29ee5afd2f bash
	Error response from daemon: Container a21983b0155ccd1e5042d2c27c14618fa5694007e72f312d3fd5fc29ee5afd2f is not running

Execution aborted, a subcommand failed!
CONTAINER ID        IMAGE                       COMMAND                  CREATED             STATUS                     PORTS                                            NAMES
a21983b0155c        shopwaredocker_app_server   "docker-php-entryp..."   11 minutes ago      Exited (1) 7 minutes ago                                                    shopwaredocker_app_server_1
1be6c5f4f2a6        shopwaredocker_app_es       "/bin/bash bin/es-..."   11 minutes ago      Up 11 minutes              0.0.0.0:9200->9200/tcp, 0.0.0.0:9300->9300/tcp   shopwaredocker_app_es_1
d9f49959e9a5        shopwaredocker_app_redis    "docker-entrypoint..."   11 minutes ago      Up 11 minutes              6379/tcp                                         shopwaredocker_app_redis_1
d46b42cd4769        shopwaredocker_app_mysql    "docker-entrypoint..."   11 minutes ago      Up 11 minutes              3306/tcp                                         shopwaredocker_app_mysql_1

docker start -a CONTAINERID actually gives me an error referring to a invalid user:

chown: invalid user: 'app-shell:app-shell'
Agent pid 12
Identity added: /home/app-shell/.ssh/id_rsa (rsa w/o comment)
AH00543: apache2: bad user name app-shell

Proposal: init-themes action

It would be nice to have a init-themes action, that does basically what the init-plugins action does, that is:

  1. the developer places the themes into a themes folder in the root directory of the project
  2. the action creates a symlink in shopware/themes/Frontend for each theme of the folder

At the moment I'm solving this workflow with the following action (place it into dev-ops/common/actions/init-themes.sh): init-themes.txt

Xdebug not configured

Hello,

I installed this Repo for plugin development, but xdebug was not configured correctly.
php -v doesn't show an installation of xdebug

I fixed it with following steps:

Added COPY docker-php-ext-xdebug.ini /usr/local/etc/php/conf.d/ to php7 Dockerfile
Added 'docker-php-ext-xdebug.ini' with line zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so

Reporting it so you could maybe check this out. Took me a while to get to this solution.

Cheers,
Tobias

Extremely slow on Mac

Hola,
thanks for providing these containers. Alas, they work extremely slow on my MacBook Pro.
I am an absolute shopware beginner. Installation went okay with no errors I am aware of.
Login and each operation in Front- and backend last minimum around 30 seks, sometimes minutes.

I did a native installation (without docker) and that is running smooth.

Context as far as I am aware of:

MacBook Pro 15", 2016
macOS Mojave 10.14.2
Docker version 18.09.0, build 4d60db4

What else do you need to know?

Thanks for your attention!
Saludos, Jörg

Connection timeout on mac

Hi people!
Thank you for this wonderful package. Everything looks like pretty good. The container is working, I can ssh in to the container. The only one thing is, I can not connect to the server with the URL http://10.100.111.46/
Maybe somebody has the same issue?

psh.phar

Hello,

where can I find the source code of psh.phar?

Can't change SW_HOST: "localhost:8083"

I try to install shopware-docker on my local server.
If i change the SW_HOST: "localhost:8083" to SW_HOST: "192.168.178.20:8083" in .psh.yaml.dist.
I open the url and it will redirect to localhost:8083.
Also tried to rename .psh.yaml.dist to .psh.yaml

Error: ant: not found

Hello, when installing the development version of Shopware with

$ ./psh.phar init-vcs --sw-branch=5.2

I get the error:

(4/5) Starting
> ant -f shopware/build/build.xml -Ddb.user=app -Ddb.password=app -Ddb.host=mysql -Ddb.name=shopware -Dapp.host=10.100.111.46 build-cache-dir build-config build-database build-generate-attributes build-snippets-deploy build-theme-initialize build-create-admin-account build-install-lock-file build-disable-firstrunwizard install-git-hooks
sh: 1: ant: not found

When I look into the Dockerfile of the php7 container, there is no command to install ant... Is it the correct place to put ant into this container?

Slim Application Error: file_put_contents failed to open stream: Permission denied

I get this error when hitting localhost:8083 after I was able to start up the environment.

Slim Application Error
The application could not run because of the following error:

Details
Type: ErrorException
Code: 2
Message: file_put_contents(/var/www/shopware/shopware/recovery/install/data/uniqueid.txt): failed to open stream: Permission denied
File: /var/www/shopware/shopware/recovery/common/src/Service/UniqueIdGenerator.php
Line: 83
Trace
#0 [internal function]: Slim\Slim::handleErrors(2, 'file_put_conten...', '/var/www/shopwa...', 83, Array)
#1 /var/www/shopware/shopware/recovery/common/src/Service/UniqueIdGenerator.php(83): file_put_contents('/var/www/shopwa...', '2J1crQvtyMnug97...')
#2 /var/www/shopware/shopware/recovery/common/src/Service/UniqueIdGenerator.php(56): Shopware\Recovery\Common\Service\UniqueIdGenerator->saveUniqueId('2J1crQvtyMnug97...')
#3 /var/www/shopware/shopware/recovery/install/src/ContainerProvider.php(209): Shopware\Recovery\Common\Service\UniqueIdGenerator->getUniqueId()
#4 /var/www/shopware/shopware/recovery/common/vendor/pimple/pimple/src/Pimple/Container.php(118): Shopware\Recovery\Install\ContainerProvider->Shopware\Recovery\Install\{closure}(Object(Pimple\Container))
#5 /var/www/shopware/shopware/recovery/install/src/app.php(203): Pimple\Container->offsetGet('shopware.notify')
#6 [internal function]: {closure}()
#7 /var/www/shopware/shopware/recovery/common/vendor/slim/slim/Slim/Route.php(468): call_user_func_array(Object(Closure), Array)
#8 /var/www/shopware/shopware/recovery/common/vendor/slim/slim/Slim/Slim.php(1355): Slim\Route->dispatch()
#9 /var/www/shopware/shopware/recovery/common/vendor/slim/slim/Slim/Middleware/Flash.php(85): Slim\Slim->call()
#10 /var/www/shopware/shopware/recovery/common/vendor/slim/slim/Slim/Middleware/MethodOverride.php(92): Slim\Middleware\Flash->call()
#11 /var/www/shopware/shopware/recovery/common/vendor/slim/slim/Slim/Middleware/PrettyExceptions.php(67): Slim\Middleware\MethodOverride->call()
#12 /var/www/shopware/shopware/recovery/common/vendor/slim/slim/Slim/Slim.php(1300): Slim\Middleware\PrettyExceptions->call()
#13 /var/www/shopware/shopware/recovery/install/index.php(75): Slim\Slim->run()
#14 {main}

Building server-container stops with error message

I am unable to build the containers. There seems to be a problem while locating the package openjdk-8-jre-headless.

Here is the output:
./psh.phar docker:start

###################
Starting Execution of 'docker:start' ('dev-ops/docker/actions/start.sh')


(1/6) Starting
> echo "COMPOSE_PROJECT_NAME: ${COMPOSE_PROJECT_NAME}"
	COMPOSE_PROJECT_NAME:

(2/6) Starting
> dev-ops/docker/containers/scriptcreator.sh
	Created /Users/**/Docker_Projects/shopware-docker/dev-ops/docker/containers/php7/createuser.sh
	Created /Users/**/Docker_Projects/shopware-docker/dev-ops/docker/containers/mysql/createuser.sh

(3/6) Starting
> docker-compose build && docker-compose up -d
	Building app_mysql
	Step 1/9 : FROM mysql:5.7
	 ---> 5195076672a7
	Step 2/9 : RUN apt-get update   && apt-get install --no-install-recommends -y      vim      netcat-openbsd
	 ---> Using cache
	 ---> 9679c83c7e6d
	Step 3/9 : ADD dev.cnf /etc/mysql/conf.d/dev.cnf
	 ---> Using cache
	 ---> e68ea141c6b8
	Step 4/9 : ADD remote-access.cnf /etc/mysql/conf.d/remote-access.cnf
	 ---> Using cache
	 ---> 8754fa8167db
	Step 5/9 : ADD performance-schema.cnf /etc/mysql/conf.d/performance-schema.cnf
	 ---> Using cache
	 ---> a69034e92c68
	Step 6/9 : COPY createuser.sh /tmp/createuser.sh
	 ---> Using cache
	 ---> 8dec1944b3ef
	Step 7/9 : RUN chmod +rwx /tmp/createuser.sh
	 ---> Using cache
	 ---> 1294cbb68649
	Step 8/9 : RUN /tmp/createuser.sh
	 ---> Using cache
	 ---> 4e03d0d1b8be
	Step 9/9 : COPY grant.sql /docker-entrypoint-initdb.d/grant.sql
	 ---> Using cache
	 ---> cc8797b949be
	Successfully built cc8797b949be
	Successfully tagged shopware-docker_app_mysql:latest
	Building app_server
	Step 1/34 : FROM php:7.1-apache
	 ---> 8ba2766b8c34
	Step 2/34 : RUN apt-get update -qq && apt-get install -y -qq apt-utils && mkdir -p /usr/share/man/man1     && apt-get update -qq && apt-get install -y -qq openjdk-8-jre-headless     && apt-get update -qq && apt-get install -y -qq  openjdk-8-jdk && dpkg --configure -a
	 ---> Running in fa2868e595a7
	debconf: delaying package configuration, since apt-utils is not installed
	Selecting previously unselected package libapt-inst1.5:amd64.
(Reading database ... 13425 files and directories currently installed.)
	Preparing to unpack .../libapt-inst1.5_1.0.9.8.4_amd64.deb ...
	Unpacking libapt-inst1.5:amd64 (1.0.9.8.4) ...
	Selecting previously unselected package apt-utils.
	Preparing to unpack .../apt-utils_1.0.9.8.4_amd64.deb ...
	Unpacking apt-utils (1.0.9.8.4) ...
	Setting up libapt-inst1.5:amd64 (1.0.9.8.4) ...
	Setting up apt-utils (1.0.9.8.4) ...
	Processing triggers for libc-bin (2.19-18+deb8u10) ...
	E: Unable to locate package openjdk-8-jre-headless
	Service 'app_server' failed to build: The command '/bin/sh -c apt-get update -qq && apt-get install -y -qq apt-utils && mkdir -p /usr/share/man/man1     && apt-get update -qq && apt-get install -y -qq openjdk-8-jre-headless     && apt-get update -qq && apt-get install -y -qq  openjdk-8-jdk && dpkg --configure -a' returned a non-zero code: 100

Execution aborted, a subcommand failed

Init script failed

Steps down:
Built docker containers
ssh into docker
called ./psh.phar init script
Step 2 Failed:

`(2/2) Starting

./sw.phar install:release -r latest -i ./shopware --db-host mysql --db-user app --db-password app --db-name shopware --shop-host localhost:8083

  [RuntimeException]                                          
  Could not find / create //.local/share/sw-cli-tools/assets  

Execution aborted, a subcommand failed!`

Thanks in advance!

Error on container boot

I try to set up the docker environment on my MAC but alway fail on step 7.

Does anyone have an idea what could cause this error? Here is the complete error message:

Step 7/35 : RUN pear config-set http_proxy $DOCKER_HTTP_PROXY
	 ---> Running in c89ed4ee87da
	config-set expects 2 or 3 parameters
	Service 'app_server' failed to build: The command '/bin/sh -c pear config-set http_proxy $DOCKER_HTTP_PROXY' returned a non-zero code: 1

database creation fails

I'am on fedora 28, Docker version 1.13.1 and try to get this repo working. But I'm stuck while creating database fail inside the ssh session.

app-shell@acbce5b77356:/var/www/shopware$ ./psh.phar init

         [...]
         37376/37393 [===========================>]  99%
         37393/37393 [============================] 100%
         Download finished
        Unzipping archive
        Creating database shopware

                                                                                                                                                                        
          [PDOException]                                                                                                                                                
          SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo failed: Name or service not known                                                                
                                                                                                                                                                        

                                                                                                                                                                        
          [PDOException]                                                                                                                                                
          PDO::__construct(): php_network_getaddresses: getaddrinfo failed: Name or service not known                                                                   
                                                                                                                                                                        

        install:release [-r|--release RELEASE] [-i|--install-dir INSTALL-DIR] [--db-host DB-HOST] [--db-port DB-PORT] [--db-socket DB-SOCKET] [--db-user DB-USER] [--db-password DB-PASSWORD] [--db-name DB-NAME] [--no-skip-import] [--shop-locale SHOP-LOCALE] [--shop-host SHOP-HOST] [-p|--shop-path SHOP-PATH] [--shop-name SHOP-NAME] [--shop-email SHOP-EMAIL] [--shop-currency SHOP-CURRENCY] [--skip-admin-creation] [--admin-username ADMIN-USERNAME] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-locale ADMIN-LOCALE] [--admin-name ADMIN-NAME]


Execution aborted, a subcommand failed!

Cant use grunt locally

Hello,

I followed this documentation to use grunt for local development in Shopware and I want to use it in synergy with shopware-docker.

After installing node and grunt I wanted to clear the cache to generate the config files.
At this step running

cd var/cache/
./clear_cache.sh

I get the error in the terminal:

Clearing caches WARNING! Could not connect to database. Message from SQL Server: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo failed: nodename nor servname provided, or not known in /Users/truasl/work/shopware-docker/shopware/engine/Shopware/Components/DependencyInjection/Bridge/Db.php 

In Container.php line 334:
The "db_connection" service is synthetic, it needs to be set at boot time before it can be used. 

Can anybody help me out with this issue? 🙏🏻

Not working under windows

When trying to run "php psh.phar docker:start" I get the following error:

(1/6) Starting

echo "COMPOSE_PROJECT_NAME: ${COMPOSE_PROJECT_NAME}"
"COMPOSE_PROJECT_NAME: ${COMPOSE_PROJECT_NAME}"

(2/6) Starting

dev-ops/docker/containers/scriptcreator.sh
Der Befehl "dev-ops" ist entweder falsch geschrieben oder
konnte nicht gefunden werden.
(The command dev-ops is either wrong spelled or could not be found)

Fresh "install" on CentOS 7, 2 containers with exitcode 1

Hi there,

I tried using your Docker-Stack on a freshly installed CentOS 7 with PHP7 and SELinux disabled. I've got two containers which aren't able to start (exited (1)). Here is a snippet from my SSH consoles output - any help is appreciated:

[root@dev-shopwaredckr01 shopware-docker]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
29f395e7c8b3 shopwaredocker_app_server "docker-php-entrypoin" 39 seconds ago Exited (1) 24 seconds ago shopwaredocker_app_server_1
33a6328aa1fa shopwaredocker_app_redis "docker-entrypoint.sh" 40 seconds ago Up 38 seconds 6379/tcp shopwaredocker_app_redis_1
9f691f182ac7 shopwaredocker_app_es "/bin/bash bin/es-doc" 40 seconds ago Exited (1) 23 seconds ago shopwaredocker_app_es_1
7a1d1cd8b7c6 shopwaredocker_app_mysql "docker-entrypoint.sh" 40 seconds ago Up 39 seconds 3306/tcp shopwaredocker_app_mysql_1
[root@dev-shopwaredckr01 shopware-docker]# docker logs shopwaredocker_app_server_1
chown: invalid user: 'app-shell:app-shell'
Agent pid 9
Identity added: /home/app-shell/.ssh/id_rsa (rsa w/o comment)
AH00543: apache2: bad user name app-shell
[root@dev-shopwaredckr01 shopware-docker]# docker logs shopwaredocker_app_es_1
[2018-03-15T18:27:06,938][INFO ][o.e.n.Node ] [] initializing ...
[2018-03-15T18:27:06,978][WARN ][o.e.b.ElasticsearchUncaughtExceptionHandler] [] uncaught exception in thread [main]
org.elasticsearch.bootstrap.StartupException: java.lang.IllegalStateException: Failed to create node environment
at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:127) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:114) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:67) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:122) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.cli.Command.main(Command.java:88) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:91) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:84) ~[elasticsearch-5.5.2.jar:5.5.2]
Caused by: java.lang.IllegalStateException: Failed to create node environment
at org.elasticsearch.node.Node.(Node.java:267) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.node.Node.(Node.java:244) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Bootstrap$5.(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:351) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:123) ~[elasticsearch-5.5.2.jar:5.5.2]
... 6 more
Caused by: java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes
at sun.nio.fs.UnixException.translateToIOException(UnixException.java:84) ~[?:?]
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102) ~[?:?]
at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107) ~[?:?]
at sun.nio.fs.UnixFileSystemProvider.createDirectory(UnixFileSystemProvider.java:384) ~[?:?]
at java.nio.file.Files.createDirectory(Files.java:674) ~[?:1.8.0_141]
at java.nio.file.Files.createAndCheckIsDirectory(Files.java:781) ~[?:1.8.0_141]
at java.nio.file.Files.createDirectories(Files.java:767) ~[?:1.8.0_141]
at org.elasticsearch.env.NodeEnvironment.(NodeEnvironment.java:221) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.node.Node.(Node.java:264) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.node.Node.(Node.java:244) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Bootstrap$5.(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:351) ~[elasticsearch-5.5.2.jar:5.5.2]
at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:123) ~[elasticsearch-5.5.2.jar:5.5.2]
... 6 more

Thanks for any advice.

BR, Tim

Docker mysql build process failed

Problem steps:
cloned project
executed: ./psh.phar docker:start
Following error is shown

`E: Package 'openjdk-8-jre-headless' has no installation candidate
Service 'app_server' failed to build: The command '/bin/sh -c apt-get update -qq && apt-get install -y -qq apt-utils && mkdir -p /usr/share/man/man1 && apt-get update -qq && apt-get install -y -qq openjdk-8-jre-headless && apt-get update -qq && apt-get install -y -qq openjdk-8-jdk && dpkg --configure -a' returned a non-zero code: 100

Execution aborted, a subcommand failed!`

https://travis-ci.org/shopwareLabs/shopware-docker

Stack to small?

I created 20k articles via API to test ES on performance - since then the frontend does not work anymore and throws this exception:

`( ! ) Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 1436 Thread stack overrun: 246152 bytes used of a 262144 byte stack, and 16000 bytes needed. Use 'mysqld --thread_stack=#' to specify a bigger stack. in /var/www/shopware/shopware/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php on line 131

( ! ) Doctrine\DBAL\DBALException: An exception occurred while executing 'INSERT IGNORE INTO s_search_index (keywordID, elementID, fieldID)`

Build fails on openjdk-8-jdk and openjdk-8-jre-headless

Seems like debian jessie does not have openjdk-8-jre-headless and openjdk-8-jdk

Error

E: Unable to locate package openjdk-8-jre-headless
Service 'app_server' failed to build: The command '/bin/sh -c apt-get update -qq && apt-get install -y -qq apt-utils && mkdir -p /usr/share/man/man1 && apt-get update -qq && apt-get install -y -qq openjdk-8-jre-headless && apt-get update -qq && apt-get install -y -qq openjdk-8-jdk && dpkg --configure -a' returned a non-zero code: 100

Execution aborted, a subcommand failed!

Boot stuck on step 8

Hi,

is just wanted to build the repository. I cloned, cd into the cloned project and build it with ./psh.phar docker:start .

But at this point, nothing else is happening and it seems like the build is stuck:
Step 8/9 : RUN /tmp/createuser.sh
---> Running in 003803d86123
Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully

Access to backend works but access to frontend always results in redirect (301) to localhost.

I successfully installed shopware-docker as described.

I installed it on a separate Debian based machine in my network. There is no problem to access the backend via <MACHINE_IP>:8083/backend by clients within the network.

But when I try to call <MACHINE_IP>:8083 there always happens a redirect to localhost:8083 which ends up in a refused connection for the clients because there is no server running from their point of view.

The Server Log looks like that: There you can see the the 301 (redirect).

docker.vm:80 192.168.12.77 - - [07/Oct/2019:11:45:14 +0000] "GET / HTTP/1.1" 301 614 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Firefox/68.0" [httpd:access] 172.23.16.70:80 - - 192.168.12.77 - - [07/Oct/2019:11:45:14 +0000] "GET / HTTP/1.1" 301 bytesIn:791 bytesOut:614 reqTime:0 127.0.0.1 - 07/Oct/2019:11:45:14 +0000 "GET /shopware.php" 301 /var/www/shopware/shopware/shopware.php cpu:82.29% mem:2 reqTime:0.134

I searched the docker-compose.yml and the .htaccess files to find out where the redirect happens but was not able to find something useful.

Can you please help me? Do you know why the access to the backend is not redirected while the access to the frontend is?

DevOps Docker Destroy Action

Hi! I decided to try out the Docker installation of Shopware too experiment with it without tinkering with my local development environment too much, and I already run most things in Docker containers (I kinda love them more than... Puppies? 🐶).

Problem
./psh.phar docker:start gave me an error when it tried to bind port 9200 for ElasticSearch, the app_es service in the docker-compose.yml it seems.

I realised that I still had my own ElasticSearch container running so I first stopped the running ElasticSearch container and also ran ./psh.phar docker:destroy to make sure that the error didn't cause any hiccups when I'd ran ./psh.phar docker:start again, but...

I expected the destroy action to destroy all the containers that were created by the services in the docker-compose.yml, which is also used in the start action. The stop action gave me the impression that it'd only run a docker-compose stop instead of docker-compose down, so I decided to use the destroy action.

After all this I looked at my containers and images, and they were all gone.

Solution?
I'm mostly blaming myself for this because I should've looked more careful at the commands I was using and not make the assumptions I made.

At the same time I feel like a Docker installation like this shouldn't have commands that have an effect outside the scope that was instantiated when the installation was set up (./psh.phar docker:start).

A warning might've prevented this, but at the same time, when using "stop" as the term in relation to Docker (./psh.phar docker:stop), it should not use docker-compose down which actually destroys all the resources that were created by the Docker Compose YAML.

In case of ./psh.phar docker:destroy, in my opinion it shouldn't affect resources (Docker containers, images, volumes, etc in this case) outside the scope that I described a few sentences previously.

I'd love to hear from you guys and your opinions you on this matter! 🚀

Can not write log file

Checked out on Ubuntu 16.04 following the README.

Can not connect to localhost:8083.

docker logs gives:

2019-10-28 19:36:02,204 INFO exited: apached (exit status 1; not expected)
2019-10-28 19:36:03,210 INFO spawned: 'apached' with pid 775
-> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
2019-10-28 19:36:03,231 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
(13)Permission denied: AH00091: apache2: could not open error log file /docker.stderr.
AH00015: Unable to open logs

Theme configuration dump does nothing

When I call the theme config dump via SW-Console, nothing happens. Every other SW-Console command seems to work.

I don't get any error messages, it just doesn't do anything.

app-shell@30887f5e35f2:/var/www/shopware/shopware$ bin/console sw:theme:dump:configuration
app-shell@30887f5e35f2:/var/www/shopware/shopware$ ll web/cache/    
total 2.5M
drwxr-xr-x 2 app-shell app-shell 4.0K Jun 11 12:57 .
drwxr-xr-x 3 app-shell app-shell 4.0K Mar  8 14:36 ..
-rw-r--r-- 1 app-shell app-shell    0 Mar  8 14:36 .gitkeep
-rw-r--r-- 1 app-shell app-shell 422K Jun 11 12:57 1528716125_1ed412c4596dbed5dee5075479bb9bf2.css
-rw-r--r-- 1 app-shell app-shell 484K Jun 11 12:57 1528716125_1ed412c4596dbed5dee5075479bb9bf2.js
-rw-r--r-- 1 app-shell app-shell    0 Jun 11 12:57 1528721822_f646bc7b648e10c1e4440fdf29315fce.css
-rw-r--r-- 1 app-shell app-shell 673K Jun 11 12:57 1528721865_28f031f61b2776875c4194880185792e.css
-rw-r--r-- 1 app-shell app-shell 565K Jun 11 12:57 1528721865_28f031f61b2776875c4194880185792e.js
-rw-r--r-- 1 app-shell app-shell 333K Jun 11 12:57 css.source.map
app-shell@30887f5e35f2:/var/www/shopware/shopware$  

Can anyone help?

app-shell@30887f5e35f2:/var/www/shopware/shopware$ php -v
PHP 7.1.18 (cli) (built: Jun  6 2018 19:45:24) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
    with Xdebug v2.6.0, Copyright (c) 2002-2018, by Derick Rethans

What was the intention to use a psh stuff for that?

In my opinion this docker implementation is fine for you guys ;-)

But with that psh stuff, this is not portable ;-) You first has to install psh to run a docker container ;-) hmmmm

So the idea behind docker is to integrate all fancy, crazy stuff into that docker container.
That current implementation is not really helpfull. So there are tons well integrated builder to create docker-images, and hey you are using docker-compose to do so.

And if you need to install or add something then let do it inside the container not outside. ;-) Or use a simple shell script ;-)

So the intention was good, but the solution wont, my mind. Are there any plans to create well supported and working docker images for docker hub ? Without fancy psh stuff ?

SW-Console, DB connection has no driver

I set up a shopware environment like described in the read me and got my shop successfully runnig so thats fine :)

But when I want to use the SW-Console, like for generating theme configurations, I get the following error:

./bin/console sw:theme:dump:configuration
 WARNING! Could not connect to database. Message from SQL Server: could not find driver in /home/mw/docker/shopware-docker/shopware/engine/Shopware/Components/DependencyInjection/Bridge/Db.php 
                                                                                                              
  [Symfony\Component\DependencyInjection\Exception\RuntimeException]                                              
  You have requested a synthetic service ("db_connection"). The DIC does not know how to construct this service. 

Same with command ./bin/console sw:snippets:to:db and I guess with every other database command.

How to fix this?

Cannot write cache

After make a fresh install* of this repo, start and init the server/Shopware I don't get a response from the system:

curl -I http://localhost:8083/backend
HTTP/1.1 500 Internal Server Error
Date: Fri, 16 Aug 2019 08:46:38 GMT
Server: Apache/2.4.25 (Debian)
X-Frame-Options: SAMEORIGIN
Connection: close
Content-Type: text/html; charset=UTF-8

checking the logs $ sudo docker logs -f docker-rob-shopware_app_server_1 brings up:

[16-Aug-2019 09:01:26] WARNING: [pool www] child 169 said into stderr: "NOTICE: PHP message: PHP Fatal error: Uncaught RuntimeException: Unable to create the store directory (/var/www/shopware/shopware/var/cache/production_201908091314/html). in /var/www/shopware/shopware/vendor/symfony/http-kernel/HttpCache/Store.php:40"

Giving it 777 make it work:

shopware/var/cache $ sudo chmod -R 777 production_201908091314

I think the install scripts should be modified to do this or something similar.

Addendum:
I'am sorry, i've forgot something. The command above is not enough, the files folder have to be set also:

sudo chmod 777 -R shopware/files

(*) standard install do not work for me, because PHP Version was outdated -> #44

Install not working on OsX Mojave

I am trying to install shopware the first time. I have followed the install instructions like described in this repository.

git clone https://github.com/shopwareLabs/shopware-docker backend
cd backend
./psh.phar docker:start
./psh.phar docker:ssh
./psh.phar init

The docker:start command works correctly. Starting web server at localhost:8083.

The init command exits with error:

###################
Starting Execution of 'init' ('dev-ops/common/actions/init.sh')


(1/2) Starting
> rm -rf ./shopware

(2/2) Starting
> ./sw.phar install:release -r latest -i ./shopware --db-host mysql --db-user app --db-password app --db-name shopware --shop-host localhost:8083

                                                                      
          [RuntimeException]                                          
          Could not find / create //.local/share/sw-cli-tools/assets  
                                                                      


Execution aborted, a subcommand failed!

Does it has something to do with version 6?

Website not accessible (always timeout)

Hi, I tried to run the project in order to test how it works. It's unfortunately not possible. http://10.100.111.46/ always times out. No way to load the website. I've followed the README in order to setup and install the software but I wasn't able to succesfuly run it.

➜  shopware-docker git:(master) docker-compose up
shopware-docker_app_es_1 is up-to-date
shopware-docker_app_mysql_1 is up-to-date
shopware-docker_app_redis_1 is up-to-date
shopware-docker_app_server_1 is up-to-date
Attaching to shopware-docker_app_es_1, shopware-docker_app_mysql_1, shopware-docker_app_redis_1, shopware-docker_app_server_1
app_es_1      | [2018-08-30T16:54:51,077][INFO ][o.e.n.Node               ] [] initializing ...
app_es_1      | [2018-08-30T16:54:51,951][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] using [1] data paths, mounts [[/usr/share/elasticsearch/data (osxfs)]], net usable_space [11.8gb], net total_space [112.1gb], spins? [possibly], types [fuse.osxfs]
app_es_1      | [2018-08-30T16:54:51,953][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] heap size [247.5mb], compressed ordinary object pointers [true]
app_es_1      | [2018-08-30T16:54:52,006][INFO ][o.e.n.Node               ] node name [shjyG5r] derived from node ID [shjyG5rXRreM0sGkYZF11A]; set [node.name] to override
app_es_1      | [2018-08-30T16:54:52,008][INFO ][o.e.n.Node               ] version[5.5.2], pid[1], build[b2f0c09/2017-08-14T12:33:14.154Z], OS[Linux/4.9.93-linuxkit-aufs/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/1.8.0_141/25.141-b16]
app_es_1      | [2018-08-30T16:54:52,010][INFO ][o.e.n.Node               ] JVM arguments [-Xms2g, -Xmx2g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -Djdk.io.permissionsUseCanonicalPath=true, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j.skipJansi=true, -XX:+HeapDumpOnOutOfMemoryError, -Des.cgroups.hierarchy.override=/, -Xmx256m, -Xms256m, -Des.path.home=/usr/share/elasticsearch]
app_es_1      | [2018-08-30T16:54:59,878][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [aggs-matrix-stats]
app_es_1      | [2018-08-30T16:54:59,880][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [ingest-common]
app_es_1      | [2018-08-30T16:54:59,881][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-expression]
app_es_1      | [2018-08-30T16:54:59,882][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-groovy]
app_es_1      | [2018-08-30T16:54:59,882][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-mustache]
app_es_1      | [2018-08-30T16:54:59,883][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-painless]
app_es_1      | [2018-08-30T16:54:59,883][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [parent-join]
app_es_1      | [2018-08-30T16:54:59,885][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [percolator]
app_es_1      | [2018-08-30T16:54:59,885][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [reindex]
app_es_1      | [2018-08-30T16:54:59,886][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty3]
app_es_1      | [2018-08-30T16:54:59,886][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty4]
app_es_1      | [2018-08-30T16:54:59,887][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-geoip]
app_es_1      | [2018-08-30T16:54:59,888][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-user-agent]
app_es_1      | [2018-08-30T16:54:59,889][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [x-pack]
app_es_1      | [2018-08-30T16:55:16,985][INFO ][o.e.d.DiscoveryModule    ] [shjyG5r] using discovery type [single-node]
app_es_1      | [2018-08-30T16:55:20,142][INFO ][o.e.n.Node               ] initialized
app_es_1      | [2018-08-30T16:55:20,142][INFO ][o.e.n.Node               ] [shjyG5r] starting ...
app_es_1      | [2018-08-30T16:55:20,546][INFO ][o.e.t.TransportService   ] [shjyG5r] publish_address {10.100.111.48:9300}, bound_addresses {0.0.0.0:9300}
app_es_1      | [2018-08-30T16:55:20,693][INFO ][o.e.c.s.ClusterService   ] [shjyG5r] new_master {shjyG5r}{shjyG5rXRreM0sGkYZF11A}{Wne80IgEQhOHbN7weFwJrQ}{10.100.111.48}{10.100.111.48:9300}, reason: single-node-start-initial-join[{shjyG5r}{shjyG5rXRreM0sGkYZF11A}{Wne80IgEQhOHbN7weFwJrQ}{10.100.111.48}{10.100.111.48:9300}]
app_es_1      | [2018-08-30T16:55:20,771][INFO ][o.e.h.n.Netty4HttpServerTransport] [shjyG5r] publish_address {10.100.111.48:9200}, bound_addresses {0.0.0.0:9200}
app_es_1      | [2018-08-30T16:55:20,772][INFO ][o.e.n.Node               ] [shjyG5r] started
app_es_1      | [2018-08-30T16:55:20,867][INFO ][o.e.g.GatewayService     ] [shjyG5r] recovered [0] indices into cluster_state
app_es_1      | [2018-08-30T16:55:21,028][INFO ][o.e.l.LicenseService     ] [shjyG5r] license [4878886e-83f6-43a3-99da-62757e01e3ea] mode [trial] - valid
app_es_1      | [2018-08-30T16:55:50,735][WARN ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] high disk watermark [90%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 10.8gb[9.6%], shards will be relocated away from this node
app_es_1      | [2018-08-30T16:55:50,737][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] rerouting shards: [high disk watermark exceeded on one or more nodes]
app_es_1      | [2018-08-30T16:56:20,759][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.9gb[12.4%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T16:56:50,734][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.9gb[12.4%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T16:57:20,743][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.9gb[12.4%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T16:57:50,718][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.9gb[12.3%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T16:58:20,694][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.8gb[12.3%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T16:58:50,675][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.8gb[12.3%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T16:59:20,656][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T16:59:50,644][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:00:20,622][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:00:50,630][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:01:20,604][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:01:50,581][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:02:20,565][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:02:50,542][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:03:20,517][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:03:50,521][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.7gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:04:20,504][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.6gb[12.2%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:04:50,488][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.5gb[12%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:05:20,494][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.5gb[12%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:05:50,499][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.4gb[11.9%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:06:20,479][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.4gb[11.9%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:06:50,474][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.3gb[11.9%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:07:20,515][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 13.3gb[11.9%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:07:50,541][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 14.3gb[12.8%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:08:20,553][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 14.3gb[12.7%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:08:50,526][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 14.3gb[12.7%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:09:20,500][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 14.3gb[12.7%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:09:50,476][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.3gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:10:20,449][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.3gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:10:50,433][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.3gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:11:20,409][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.3gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:11:50,391][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.3gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:12:20,369][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:12:29,587][INFO ][o.e.n.Node               ] [shjyG5r] stopping ...
app_es_1      | [2018-08-30T17:12:29,702][INFO ][o.e.n.Node               ] [shjyG5r] stopped
app_es_1      | [2018-08-30T17:12:29,703][INFO ][o.e.n.Node               ] [shjyG5r] closing ...
app_es_1      | [2018-08-30T17:12:29,790][INFO ][o.e.n.Node               ] [shjyG5r] closed
app_es_1      | [2018-08-30T17:12:55,446][INFO ][o.e.n.Node               ] [] initializing ...
app_es_1      | [2018-08-30T17:12:55,809][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] using [1] data paths, mounts [[/usr/share/elasticsearch/data (osxfs)]], net usable_space [15.2gb], net total_space [112.1gb], spins? [possibly], types [fuse.osxfs]
app_es_1      | [2018-08-30T17:12:55,810][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] heap size [247.5mb], compressed ordinary object pointers [true]
app_es_1      | [2018-08-30T17:12:55,835][INFO ][o.e.n.Node               ] node name [shjyG5r] derived from node ID [shjyG5rXRreM0sGkYZF11A]; set [node.name] to override
app_es_1      | [2018-08-30T17:12:55,836][INFO ][o.e.n.Node               ] version[5.5.2], pid[1], build[b2f0c09/2017-08-14T12:33:14.154Z], OS[Linux/4.9.93-linuxkit-aufs/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/1.8.0_141/25.141-b16]
app_es_1      | [2018-08-30T17:12:55,838][INFO ][o.e.n.Node               ] JVM arguments [-Xms2g, -Xmx2g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -Djdk.io.permissionsUseCanonicalPath=true, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j.skipJansi=true, -XX:+HeapDumpOnOutOfMemoryError, -Des.cgroups.hierarchy.override=/, -Xmx256m, -Xms256m, -Des.path.home=/usr/share/elasticsearch]
app_es_1      | [2018-08-30T17:12:58,988][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [aggs-matrix-stats]
app_es_1      | [2018-08-30T17:12:58,989][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [ingest-common]
app_es_1      | [2018-08-30T17:12:58,990][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-expression]
app_es_1      | [2018-08-30T17:12:58,991][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-groovy]
app_es_1      | [2018-08-30T17:12:58,992][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-mustache]
app_es_1      | [2018-08-30T17:12:58,993][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-painless]
app_es_1      | [2018-08-30T17:12:58,994][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [parent-join]
app_es_1      | [2018-08-30T17:12:58,995][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [percolator]
app_es_1      | [2018-08-30T17:12:58,996][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [reindex]
app_es_1      | [2018-08-30T17:12:58,997][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty3]
app_es_1      | [2018-08-30T17:12:58,998][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty4]
app_es_1      | [2018-08-30T17:12:59,000][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-geoip]
app_es_1      | [2018-08-30T17:12:59,001][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-user-agent]
app_es_1      | [2018-08-30T17:12:59,001][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [x-pack]
app_es_1      | [2018-08-30T17:13:03,108][INFO ][o.e.d.DiscoveryModule    ] [shjyG5r] using discovery type [single-node]
app_es_1      | [2018-08-30T17:13:04,294][INFO ][o.e.n.Node               ] initialized
app_es_1      | [2018-08-30T17:13:04,295][INFO ][o.e.n.Node               ] [shjyG5r] starting ...
app_es_1      | [2018-08-30T17:13:04,604][INFO ][o.e.t.TransportService   ] [shjyG5r] publish_address {10.100.111.48:9300}, bound_addresses {0.0.0.0:9300}
app_es_1      | [2018-08-30T17:13:04,688][INFO ][o.e.c.s.ClusterService   ] [shjyG5r] new_master {shjyG5r}{shjyG5rXRreM0sGkYZF11A}{nx4w9P7eSm6uZ92ycQ4WUA}{10.100.111.48}{10.100.111.48:9300}, reason: single-node-start-initial-join[{shjyG5r}{shjyG5rXRreM0sGkYZF11A}{nx4w9P7eSm6uZ92ycQ4WUA}{10.100.111.48}{10.100.111.48:9300}]
app_es_1      | [2018-08-30T17:13:04,755][INFO ][o.e.h.n.Netty4HttpServerTransport] [shjyG5r] publish_address {10.100.111.48:9200}, bound_addresses {0.0.0.0:9200}
app_es_1      | [2018-08-30T17:13:04,755][INFO ][o.e.n.Node               ] [shjyG5r] started
app_es_1      | [2018-08-30T17:13:04,917][INFO ][o.e.l.LicenseService     ] [shjyG5r] license [4878886e-83f6-43a3-99da-62757e01e3ea] mode [trial] - valid
app_es_1      | [2018-08-30T17:13:04,919][INFO ][o.e.g.GatewayService     ] [shjyG5r] recovered [0] indices into cluster_state
app_es_1      | [2018-08-30T17:13:34,724][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:14:04,726][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.5%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:14:34,725][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.5%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:15:04,708][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:15:34,720][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:16:04,701][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:16:34,683][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:17:04,686][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:17:34,663][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:18:04,664][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:18:07,442][INFO ][o.e.n.Node               ] [shjyG5r] stopping ...
app_es_1      | [2018-08-30T17:18:07,530][INFO ][o.e.n.Node               ] [shjyG5r] stopped
app_es_1      | [2018-08-30T17:18:07,530][INFO ][o.e.n.Node               ] [shjyG5r] closing ...
app_es_1      | [2018-08-30T17:18:07,577][INFO ][o.e.n.Node               ] [shjyG5r] closed
app_es_1      | [2018-08-30T17:19:10,350][INFO ][o.e.n.Node               ] [] initializing ...
app_es_1      | [2018-08-30T17:19:10,702][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] using [1] data paths, mounts [[/usr/share/elasticsearch/data (osxfs)]], net usable_space [15.2gb], net total_space [112.1gb], spins? [possibly], types [fuse.osxfs]
app_es_1      | [2018-08-30T17:19:10,703][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] heap size [247.5mb], compressed ordinary object pointers [true]
app_es_1      | [2018-08-30T17:19:10,720][INFO ][o.e.n.Node               ] node name [shjyG5r] derived from node ID [shjyG5rXRreM0sGkYZF11A]; set [node.name] to override
app_es_1      | [2018-08-30T17:19:10,721][INFO ][o.e.n.Node               ] version[5.5.2], pid[1], build[b2f0c09/2017-08-14T12:33:14.154Z], OS[Linux/4.9.93-linuxkit-aufs/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/1.8.0_141/25.141-b16]
app_es_1      | [2018-08-30T17:19:10,723][INFO ][o.e.n.Node               ] JVM arguments [-Xms2g, -Xmx2g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -Djdk.io.permissionsUseCanonicalPath=true, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j.skipJansi=true, -XX:+HeapDumpOnOutOfMemoryError, -Des.cgroups.hierarchy.override=/, -Xmx256m, -Xms256m, -Des.path.home=/usr/share/elasticsearch]
app_es_1      | [2018-08-30T17:19:14,005][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [aggs-matrix-stats]
app_es_1      | [2018-08-30T17:19:14,007][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [ingest-common]
app_es_1      | [2018-08-30T17:19:14,009][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-expression]
app_es_1      | [2018-08-30T17:19:14,010][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-groovy]
app_es_1      | [2018-08-30T17:19:14,041][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-mustache]
app_es_1      | [2018-08-30T17:19:14,042][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-painless]
app_es_1      | [2018-08-30T17:19:14,042][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [parent-join]
app_es_1      | [2018-08-30T17:19:14,042][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [percolator]
app_es_1      | [2018-08-30T17:19:14,042][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [reindex]
app_es_1      | [2018-08-30T17:19:14,042][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty3]
app_es_1      | [2018-08-30T17:19:14,042][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty4]
app_es_1      | [2018-08-30T17:19:14,043][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-geoip]
app_es_1      | [2018-08-30T17:19:14,043][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-user-agent]
app_es_1      | [2018-08-30T17:19:14,043][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [x-pack]
app_es_1      | [2018-08-30T17:19:20,234][INFO ][o.e.d.DiscoveryModule    ] [shjyG5r] using discovery type [single-node]
app_es_1      | [2018-08-30T17:19:22,124][INFO ][o.e.n.Node               ] initialized
app_es_1      | [2018-08-30T17:19:22,127][INFO ][o.e.n.Node               ] [shjyG5r] starting ...
app_es_1      | [2018-08-30T17:19:23,093][INFO ][o.e.t.TransportService   ] [shjyG5r] publish_address {10.100.111.48:9300}, bound_addresses {0.0.0.0:9300}
app_es_1      | [2018-08-30T17:19:23,333][INFO ][o.e.c.s.ClusterService   ] [shjyG5r] new_master {shjyG5r}{shjyG5rXRreM0sGkYZF11A}{HXUbPfw7RNi8OZISCBtPcA}{10.100.111.48}{10.100.111.48:9300}, reason: single-node-start-initial-join[{shjyG5r}{shjyG5rXRreM0sGkYZF11A}{HXUbPfw7RNi8OZISCBtPcA}{10.100.111.48}{10.100.111.48:9300}]
app_es_1      | [2018-08-30T17:19:23,547][INFO ][o.e.h.n.Netty4HttpServerTransport] [shjyG5r] publish_address {10.100.111.48:9200}, bound_addresses {0.0.0.0:9200}
app_es_1      | [2018-08-30T17:19:23,547][INFO ][o.e.n.Node               ] [shjyG5r] started
app_es_1      | [2018-08-30T17:19:23,868][INFO ][o.e.l.LicenseService     ] [shjyG5r] license [4878886e-83f6-43a3-99da-62757e01e3ea] mode [trial] - valid
app_es_1      | [2018-08-30T17:19:23,880][INFO ][o.e.g.GatewayService     ] [shjyG5r] recovered [0] indices into cluster_state
app_es_1      | [2018-08-30T17:19:53,422][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.6%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:20:23,405][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.5%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:20:53,380][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.5%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:21:23,371][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.5%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:21:28,453][INFO ][o.e.n.Node               ] [shjyG5r] stopping ...
app_es_1      | [2018-08-30T17:21:28,558][INFO ][o.e.n.Node               ] [shjyG5r] stopped
app_es_1      | [2018-08-30T17:21:28,559][INFO ][o.e.n.Node               ] [shjyG5r] closing ...
app_es_1      | [2018-08-30T17:21:28,589][INFO ][o.e.n.Node               ] [shjyG5r] closed
app_es_1      | [2018-08-30T17:21:42,540][INFO ][o.e.n.Node               ] [] initializing ...
app_es_1      | [2018-08-30T17:21:42,994][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] using [1] data paths, mounts [[/usr/share/elasticsearch/data (osxfs)]], net usable_space [15.1gb], net total_space [112.1gb], spins? [possibly], types [fuse.osxfs]
app_es_1      | [2018-08-30T17:21:42,997][INFO ][o.e.e.NodeEnvironment    ] [shjyG5r] heap size [247.5mb], compressed ordinary object pointers [true]
app_es_1      | [2018-08-30T17:21:43,041][INFO ][o.e.n.Node               ] node name [shjyG5r] derived from node ID [shjyG5rXRreM0sGkYZF11A]; set [node.name] to override
app_es_1      | [2018-08-30T17:21:43,042][INFO ][o.e.n.Node               ] version[5.5.2], pid[1], build[b2f0c09/2017-08-14T12:33:14.154Z], OS[Linux/4.9.93-linuxkit-aufs/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/1.8.0_141/25.141-b16]
app_es_1      | [2018-08-30T17:21:43,043][INFO ][o.e.n.Node               ] JVM arguments [-Xms2g, -Xmx2g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -Djdk.io.permissionsUseCanonicalPath=true, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j.skipJansi=true, -XX:+HeapDumpOnOutOfMemoryError, -Des.cgroups.hierarchy.override=/, -Xmx256m, -Xms256m, -Des.path.home=/usr/share/elasticsearch]
app_es_1      | [2018-08-30T17:21:48,790][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [aggs-matrix-stats]
app_es_1      | [2018-08-30T17:21:48,791][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [ingest-common]
app_es_1      | [2018-08-30T17:21:48,792][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-expression]
app_es_1      | [2018-08-30T17:21:48,793][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-groovy]
app_es_1      | [2018-08-30T17:21:48,800][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-mustache]
app_es_1      | [2018-08-30T17:21:48,805][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [lang-painless]
app_es_1      | [2018-08-30T17:21:48,806][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [parent-join]
app_es_1      | [2018-08-30T17:21:48,807][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [percolator]
app_es_1      | [2018-08-30T17:21:48,808][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [reindex]
app_es_1      | [2018-08-30T17:21:48,809][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty3]
app_es_1      | [2018-08-30T17:21:48,810][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded module [transport-netty4]
app_es_1      | [2018-08-30T17:21:48,816][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-geoip]
app_es_1      | [2018-08-30T17:21:48,817][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [ingest-user-agent]
app_es_1      | [2018-08-30T17:21:48,818][INFO ][o.e.p.PluginsService     ] [shjyG5r] loaded plugin [x-pack]
app_es_1      | [2018-08-30T17:21:54,745][INFO ][o.e.d.DiscoveryModule    ] [shjyG5r] using discovery type [single-node]
app_es_1      | [2018-08-30T17:21:56,487][INFO ][o.e.n.Node               ] initialized
app_es_1      | [2018-08-30T17:21:56,488][INFO ][o.e.n.Node               ] [shjyG5r] starting ...
app_es_1      | [2018-08-30T17:21:56,876][INFO ][o.e.t.TransportService   ] [shjyG5r] publish_address {10.100.111.48:9300}, bound_addresses {0.0.0.0:9300}
app_es_1      | [2018-08-30T17:21:57,017][INFO ][o.e.c.s.ClusterService   ] [shjyG5r] new_master {shjyG5r}{shjyG5rXRreM0sGkYZF11A}{AxqRWd5aS8GIMMFPopxnrQ}{10.100.111.48}{10.100.111.48:9300}, reason: single-node-start-initial-join[{shjyG5r}{shjyG5rXRreM0sGkYZF11A}{AxqRWd5aS8GIMMFPopxnrQ}{10.100.111.48}{10.100.111.48:9300}]
app_es_1      | [2018-08-30T17:21:57,105][INFO ][o.e.h.n.Netty4HttpServerTransport] [shjyG5r] publish_address {10.100.111.48:9200}, bound_addresses {0.0.0.0:9200}
app_es_1      | [2018-08-30T17:21:57,107][INFO ][o.e.n.Node               ] [shjyG5r] started
app_es_1      | [2018-08-30T17:21:57,362][INFO ][o.e.l.LicenseService     ] [shjyG5r] license [4878886e-83f6-43a3-99da-62757e01e3ea] mode [trial] - valid
app_es_1      | [2018-08-30T17:21:57,367][INFO ][o.e.g.GatewayService     ] [shjyG5r] recovered [0] indices into cluster_state
app_es_1      | [2018-08-30T17:22:27,062][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.2gb[13.5%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:22:57,043][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.1gb[13.5%], replicas will not be assigned to this node
app_mysql_1   | Initializing database
app_mysql_1   | 2018-08-30T16:54:40.900850Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2018-08-30T16:54:40.926789Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   | 2018-08-30T16:54:40.942456Z 0 [ERROR] InnoDB: Failed to create check sector file, errno:22 Please confirm O_DIRECT is supported and remove the file ./check_sector_size if it exists.
app_mysql_1   |  100 200 300 400 500
app_mysql_1   |  100 200 300 400 500
app_mysql_1   | 2018-08-30T16:55:09.008678Z 0 [Warning] InnoDB: New log files created, LSN=45790
app_mysql_1   | 2018-08-30T16:55:09.390281Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
app_mysql_1   | 2018-08-30T16:55:09.588134Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 74398e9e-ac75-11e8-9fdb-02420a646f2f.
app_mysql_1   | 2018-08-30T16:55:09.638961Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
app_mysql_1   | 2018-08-30T16:55:09.679409Z 1 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
app_mysql_1   | 2018-08-30T16:55:18.707264Z 1 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:18.707333Z 1 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:18.707352Z 1 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:18.708694Z 1 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:18.708739Z 1 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:18.709336Z 1 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:18.710061Z 1 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:18.710106Z 1 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | Database initialized
app_mysql_1   | Initializing certificates
app_mysql_1   | Generating a 2048 bit RSA private key
app_mysql_1   | ...........................+++
app_mysql_1   | .......................................................................................................................................+++
app_mysql_1   | unable to write 'random state'
app_mysql_1   | writing new private key to 'ca-key.pem'
app_mysql_1   | -----
app_mysql_1   | Generating a 2048 bit RSA private key
app_mysql_1   | ............................................................................................................................................................+++
app_mysql_1   | ......................+++
app_mysql_1   | unable to write 'random state'
app_mysql_1   | writing new private key to 'server-key.pem'
app_mysql_1   | -----
app_mysql_1   | Generating a 2048 bit RSA private key
app_mysql_1   | ......+++
app_mysql_1   | .................+++
app_mysql_1   | unable to write 'random state'
app_mysql_1   | writing new private key to 'client-key.pem'
app_mysql_1   | -----
app_mysql_1   | Certificates initialized
app_mysql_1   | MySQL init process in progress...
app_mysql_1   | 2018-08-30T16:55:23.143926Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2018-08-30T16:55:23.148424Z 0 [Note] mysqld (mysqld 5.7.23) starting as process 92 ...
app_mysql_1   | 2018-08-30T16:55:23.155642Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   | 2018-08-30T16:55:23.155829Z 0 [Note] InnoDB: PUNCH HOLE support available
app_mysql_1   | 2018-08-30T16:55:23.155977Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
app_mysql_1   | 2018-08-30T16:55:23.156090Z 0 [Note] InnoDB: Uses event mutexes
app_mysql_1   | 2018-08-30T16:55:23.156190Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
app_mysql_1   | 2018-08-30T16:55:23.156253Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.3
app_mysql_1   | 2018-08-30T16:55:23.156289Z 0 [Note] InnoDB: Using Linux native AIO
app_mysql_1   | 2018-08-30T16:55:23.160313Z 0 [Note] InnoDB: Number of pools: 1
app_mysql_1   | 2018-08-30T16:55:23.160703Z 0 [Note] InnoDB: Using CPU crc32 instructions
app_mysql_1   | 2018-08-30T16:55:23.161916Z 0 [ERROR] InnoDB: Failed to create check sector file, errno:22 Please confirm O_DIRECT is supported and remove the file ./check_sector_size if it exists.
app_mysql_1   | 2018-08-30T16:55:23.163411Z 0 [Note] InnoDB: Initializing buffer pool, total size = 2G, instances = 8, chunk size = 128M
app_mysql_1   | 2018-08-30T16:55:23.333035Z 0 [Note] InnoDB: Completed initialization of buffer pool
app_mysql_1   | 2018-08-30T16:55:23.362156Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
app_mysql_1   | 2018-08-30T16:55:23.392735Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
app_mysql_1   | 2018-08-30T16:55:23.625226Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
app_mysql_1   | 2018-08-30T16:55:23.626275Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
app_mysql_1   | 2018-08-30T16:55:23.744041Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
app_mysql_1   | 2018-08-30T16:55:23.751710Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T16:55:23.751737Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T16:55:23.752203Z 0 [Note] InnoDB: Waiting for purge to start
app_mysql_1   | 2018-08-30T16:55:23.804050Z 0 [Note] InnoDB: 5.7.23 started; log sequence number 2590443
app_mysql_1   | 2018-08-30T16:55:23.804520Z 0 [Note] Plugin 'FEDERATED' is disabled.
app_mysql_1   | 2018-08-30T16:55:23.806412Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2018-08-30T16:55:23.856132Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
app_mysql_1   | 2018-08-30T16:55:23.868635Z 0 [Warning] CA certificate ca.pem is self signed.
app_mysql_1   | 2018-08-30T16:55:23.878985Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
app_mysql_1   | 2018-08-30T16:55:23.892503Z 0 [Note] InnoDB: Buffer pool(s) load completed at 180830 16:55:23
app_mysql_1   | 2018-08-30T16:55:23.916848Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:23.917129Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:23.917366Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:23.918115Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:23.918344Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:23.919009Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:23.957494Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:23.957772Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:24.175481Z 0 [Note] Event Scheduler: Loaded 0 events
app_mysql_1   | 2018-08-30T16:55:24.176654Z 0 [Note] mysqld: ready for connections.
app_mysql_1   | Version: '5.7.23'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  MySQL Community Server (GPL)
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it.
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it.
app_mysql_1   | 2018-08-30T16:55:34.378145Z 0 [Note] InnoDB: page_cleaner: 1000ms intended loop took 5011ms. The settings might not be optimal. (flushed=182 and evicted=0, during the time.)
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it.
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/zone1970.tab' as time zone. Skipping it.
app_mysql_1   | 2018-08-30T16:55:34.722912Z 4 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.723181Z 4 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.723360Z 4 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.723755Z 4 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.723902Z 4 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.724399Z 4 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.724671Z 4 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.724836Z 4 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | mysql: [Warning] Using a password on the command line interface can be insecure.
app_mysql_1   | mysql: [Warning] Using a password on the command line interface can be insecure.
app_mysql_1   | 2018-08-30T16:55:34.765034Z 6 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.765161Z 6 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.765260Z 6 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.765946Z 6 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.766026Z 6 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.767821Z 6 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.776352Z 6 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:34.776635Z 6 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   |
app_mysql_1   | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/grant.sql
app_mysql_1   | mysql: [Warning] Using a password on the command line interface can be insecure.
app_mysql_1   |
app_mysql_1   |
app_mysql_1   | 2018-08-30T16:55:34.804684Z 0 [Note] Giving 0 client threads a chance to die gracefully
app_mysql_1   | 2018-08-30T16:55:34.804738Z 0 [Note] Shutting down slave threads
app_mysql_1   | 2018-08-30T16:55:34.804747Z 0 [Note] Forcefully disconnecting 0 remaining clients
app_mysql_1   | 2018-08-30T16:55:34.804756Z 0 [Note] Event Scheduler: Purging the queue. 0 events
app_mysql_1   | 2018-08-30T16:55:34.805637Z 0 [Note] Binlog end
app_mysql_1   | 2018-08-30T16:55:34.812481Z 0 [Note] Shutting down plugin 'ngram'
app_mysql_1   | 2018-08-30T16:55:34.812808Z 0 [Note] Shutting down plugin 'partition'
app_mysql_1   | 2018-08-30T16:55:34.812886Z 0 [Note] Shutting down plugin 'BLACKHOLE'
app_mysql_1   | 2018-08-30T16:55:34.812914Z 0 [Note] Shutting down plugin 'ARCHIVE'
app_mysql_1   | 2018-08-30T16:55:34.813038Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
app_mysql_1   | 2018-08-30T16:55:34.813214Z 0 [Note] Shutting down plugin 'MRG_MYISAM'
app_mysql_1   | 2018-08-30T16:55:34.813324Z 0 [Note] Shutting down plugin 'MyISAM'
app_mysql_1   | 2018-08-30T16:55:34.813459Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL'
app_mysql_1   | 2018-08-30T16:55:34.813586Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
app_mysql_1   | 2018-08-30T16:55:34.813736Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
app_mysql_1   | 2018-08-30T16:55:34.813855Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
app_mysql_1   | 2018-08-30T16:55:34.813957Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
app_mysql_1   | 2018-08-30T16:55:34.814106Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
app_mysql_1   | 2018-08-30T16:55:34.814216Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
app_mysql_1   | 2018-08-30T16:55:34.814322Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
app_mysql_1   | 2018-08-30T16:55:34.814427Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
app_mysql_1   | 2018-08-30T16:55:34.814447Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
app_mysql_1   | 2018-08-30T16:55:34.814474Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
app_mysql_1   | 2018-08-30T16:55:34.814570Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
app_mysql_1   | 2018-08-30T16:55:34.814677Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
app_mysql_1   | 2018-08-30T16:55:34.814794Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
app_mysql_1   | 2018-08-30T16:55:34.814907Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED'
app_mysql_1   | 2018-08-30T16:55:34.815019Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
app_mysql_1   | 2018-08-30T16:55:34.815123Z 0 [Note] Shutting down plugin 'INNODB_METRICS'
app_mysql_1   | 2018-08-30T16:55:34.815253Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO'
app_mysql_1   | 2018-08-30T16:55:34.815313Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
app_mysql_1   | 2018-08-30T16:55:34.815606Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
app_mysql_1   | 2018-08-30T16:55:34.815717Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
app_mysql_1   | 2018-08-30T16:55:34.815840Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
app_mysql_1   | 2018-08-30T16:55:34.815954Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
app_mysql_1   | 2018-08-30T16:55:34.815978Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
app_mysql_1   | 2018-08-30T16:55:34.815998Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM'
app_mysql_1   | 2018-08-30T16:55:34.816131Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET'
app_mysql_1   | 2018-08-30T16:55:34.816248Z 0 [Note] Shutting down plugin 'INNODB_CMP'
app_mysql_1   | 2018-08-30T16:55:34.816360Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
app_mysql_1   | 2018-08-30T16:55:34.816504Z 0 [Note] Shutting down plugin 'INNODB_LOCKS'
app_mysql_1   | 2018-08-30T16:55:34.816622Z 0 [Note] Shutting down plugin 'INNODB_TRX'
app_mysql_1   | 2018-08-30T16:55:34.816733Z 0 [Note] Shutting down plugin 'InnoDB'
app_mysql_1   | 2018-08-30T16:55:34.816928Z 0 [Note] InnoDB: FTS optimize thread exiting.
app_mysql_1   | 2018-08-30T16:55:34.817244Z 0 [Note] InnoDB: Starting shutdown...
app_mysql_1   | 2018-08-30T16:55:34.921253Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2018-08-30T16:55:34.925969Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 180830 16:55:34
app_mysql_1   | 2018-08-30T16:55:37.978649Z 0 [Note] InnoDB: Shutdown completed; log sequence number 12360875
app_mysql_1   | 2018-08-30T16:55:38.021826Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
app_mysql_1   | 2018-08-30T16:55:38.026642Z 0 [Note] Shutting down plugin 'MEMORY'
app_mysql_1   | 2018-08-30T16:55:38.026683Z 0 [Note] Shutting down plugin 'CSV'
app_mysql_1   | 2018-08-30T16:55:38.026692Z 0 [Note] Shutting down plugin 'sha256_password'
app_mysql_1   | 2018-08-30T16:55:38.026721Z 0 [Note] Shutting down plugin 'mysql_native_password'
app_mysql_1   | 2018-08-30T16:55:38.027004Z 0 [Note] Shutting down plugin 'binlog'
app_mysql_1   | 2018-08-30T16:55:38.121738Z 0 [Note] mysqld: Shutdown complete
app_mysql_1   |
app_mysql_1   |
app_mysql_1   | MySQL init process done. Ready for start up.
app_mysql_1   |
app_mysql_1   | 2018-08-30T16:55:39.707591Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2018-08-30T16:55:39.738731Z 0 [Note] mysqld (mysqld 5.7.23) starting as process 1 ...
app_mysql_1   | 2018-08-30T16:55:39.784605Z 0 [Warning] Setting lower_case_table_names=2 because file system for /var/lib/mysql/ is case insensitive
app_mysql_1   | 2018-08-30T16:55:39.791475Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   | 2018-08-30T16:55:39.791935Z 0 [Note] InnoDB: PUNCH HOLE support available
app_mysql_1   | 2018-08-30T16:55:39.791975Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
app_mysql_1   | 2018-08-30T16:55:39.791988Z 0 [Note] InnoDB: Uses event mutexes
app_mysql_1   | 2018-08-30T16:55:39.791997Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
app_mysql_1   | 2018-08-30T16:55:39.792048Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.3
app_mysql_1   | 2018-08-30T16:55:39.792059Z 0 [Note] InnoDB: Using Linux native AIO
app_mysql_1   | 2018-08-30T16:55:40.062706Z 0 [Note] InnoDB: Number of pools: 1
app_mysql_1   | 2018-08-30T16:55:40.063268Z 0 [Note] InnoDB: Using CPU crc32 instructions
app_mysql_1   | 2018-08-30T16:55:40.076418Z 0 [ERROR] InnoDB: Failed to create check sector file, errno:22 Please confirm O_DIRECT is supported and remove the file ./check_sector_size if it exists.
app_mysql_1   | 2018-08-30T16:55:40.078473Z 0 [Note] InnoDB: Initializing buffer pool, total size = 2G, instances = 8, chunk size = 128M
app_mysql_1   | 2018-08-30T16:55:41.334609Z 0 [Note] InnoDB: Completed initialization of buffer pool
app_mysql_1   | 2018-08-30T16:55:41.484427Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
app_mysql_1   | 2018-08-30T16:55:41.830760Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
app_mysql_1   | 2018-08-30T16:55:42.749698Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
app_mysql_1   | 2018-08-30T16:55:42.757054Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
app_mysql_1   | 2018-08-30T16:55:43.276483Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
app_mysql_1   | 2018-08-30T16:55:43.560752Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T16:55:43.560850Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T16:55:43.564498Z 0 [Note] InnoDB: Waiting for purge to start
app_mysql_1   | 2018-08-30T16:55:43.620162Z 0 [Note] InnoDB: 5.7.23 started; log sequence number 12360875
app_mysql_1   | 2018-08-30T16:55:43.627091Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2018-08-30T16:55:43.631051Z 0 [Note] Plugin 'FEDERATED' is disabled.
app_mysql_1   | 2018-08-30T16:55:44.102213Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
app_mysql_1   | 2018-08-30T16:55:44.137481Z 0 [Warning] CA certificate ca.pem is self signed.
app_mysql_1   | 2018-08-30T16:55:44.144607Z 0 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
app_mysql_1   | 2018-08-30T16:55:44.144686Z 0 [Note]   - '0.0.0.0' resolves to '0.0.0.0';
app_mysql_1   | 2018-08-30T16:55:44.144793Z 0 [Note] Server socket created on IP: '0.0.0.0'.
app_mysql_1   | 2018-08-30T16:55:44.163026Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
app_mysql_1   | 2018-08-30T16:55:44.308133Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:44.308592Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:44.308754Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:44.313869Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:44.313988Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:44.315904Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:44.317112Z 0 [Note] InnoDB: Buffer pool(s) load completed at 180830 16:55:44
app_mysql_1   | 2018-08-30T16:55:44.808928Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:44.808983Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T16:55:46.688016Z 0 [Note] Event Scheduler: Loaded 0 events
app_mysql_1   | 2018-08-30T16:55:46.702279Z 0 [Note] mysqld: ready for connections.
app_mysql_1   | Version: '5.7.23'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server (GPL)
app_mysql_1   | 2018-08-30T17:12:40.290358Z 0 [Note] Giving 0 client threads a chance to die gracefully
app_mysql_1   | 2018-08-30T17:12:40.290391Z 0 [Note] Shutting down slave threads
app_mysql_1   | 2018-08-30T17:12:40.290423Z 0 [Note] Forcefully disconnecting 0 remaining clients
app_mysql_1   | 2018-08-30T17:12:40.290483Z 0 [Note] Event Scheduler: Purging the queue. 0 events
app_mysql_1   | 2018-08-30T17:12:40.290706Z 0 [Note] Binlog end
app_mysql_1   | 2018-08-30T17:12:40.618094Z 0 [Note] Shutting down plugin 'ngram'
app_mysql_1   | 2018-08-30T17:12:40.618190Z 0 [Note] Shutting down plugin 'partition'
app_mysql_1   | 2018-08-30T17:12:40.618201Z 0 [Note] Shutting down plugin 'BLACKHOLE'
app_mysql_1   | 2018-08-30T17:12:40.618210Z 0 [Note] Shutting down plugin 'ARCHIVE'
app_mysql_1   | 2018-08-30T17:12:40.618219Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
app_mysql_1   | 2018-08-30T17:12:40.618364Z 0 [Note] Shutting down plugin 'MRG_MYISAM'
app_mysql_1   | 2018-08-30T17:12:40.618407Z 0 [Note] Shutting down plugin 'MyISAM'
app_mysql_1   | 2018-08-30T17:12:40.618465Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL'
app_mysql_1   | 2018-08-30T17:12:40.618473Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
app_mysql_1   | 2018-08-30T17:12:40.618478Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
app_mysql_1   | 2018-08-30T17:12:40.618485Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
app_mysql_1   | 2018-08-30T17:12:40.618491Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
app_mysql_1   | 2018-08-30T17:12:40.618495Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
app_mysql_1   | 2018-08-30T17:12:40.618502Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
app_mysql_1   | 2018-08-30T17:12:40.618507Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
app_mysql_1   | 2018-08-30T17:12:40.618515Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
app_mysql_1   | 2018-08-30T17:12:40.618520Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
app_mysql_1   | 2018-08-30T17:12:40.618527Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
app_mysql_1   | 2018-08-30T17:12:40.618536Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
app_mysql_1   | 2018-08-30T17:12:40.618541Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
app_mysql_1   | 2018-08-30T17:12:40.618549Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
app_mysql_1   | 2018-08-30T17:12:40.618557Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED'
app_mysql_1   | 2018-08-30T17:12:40.618580Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
app_mysql_1   | 2018-08-30T17:12:40.618588Z 0 [Note] Shutting down plugin 'INNODB_METRICS'
app_mysql_1   | 2018-08-30T17:12:40.618594Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO'
app_mysql_1   | 2018-08-30T17:12:40.618601Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
app_mysql_1   | 2018-08-30T17:12:40.618623Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
app_mysql_1   | 2018-08-30T17:12:40.618631Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
app_mysql_1   | 2018-08-30T17:12:40.618639Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
app_mysql_1   | 2018-08-30T17:12:40.618647Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
app_mysql_1   | 2018-08-30T17:12:40.618654Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
app_mysql_1   | 2018-08-30T17:12:40.618677Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM'
app_mysql_1   | 2018-08-30T17:12:40.618685Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET'
app_mysql_1   | 2018-08-30T17:12:40.618693Z 0 [Note] Shutting down plugin 'INNODB_CMP'
app_mysql_1   | 2018-08-30T17:12:40.618702Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
app_mysql_1   | 2018-08-30T17:12:40.618714Z 0 [Note] Shutting down plugin 'INNODB_LOCKS'
app_mysql_1   | 2018-08-30T17:12:40.618719Z 0 [Note] Shutting down plugin 'INNODB_TRX'
app_mysql_1   | 2018-08-30T17:12:40.618727Z 0 [Note] Shutting down plugin 'InnoDB'
app_mysql_1   | 2018-08-30T17:12:40.619003Z 0 [Note] InnoDB: FTS optimize thread exiting.
app_mysql_1   | 2018-08-30T17:12:40.619483Z 0 [Note] InnoDB: Starting shutdown...
app_mysql_1   | 2018-08-30T17:12:40.723647Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2018-08-30T17:12:40.728443Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 180830 17:12:40
app_mysql_1   | 2018-08-30T17:12:42.174444Z 0 [Note] InnoDB: Shutdown completed; log sequence number 20562796
app_mysql_1   | 2018-08-30T17:12:42.177660Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
app_mysql_1   | 2018-08-30T17:12:42.177718Z 0 [Note] Shutting down plugin 'MEMORY'
app_mysql_1   | 2018-08-30T17:12:42.177727Z 0 [Note] Shutting down plugin 'CSV'
app_mysql_1   | 2018-08-30T17:12:42.177757Z 0 [Note] Shutting down plugin 'sha256_password'
app_mysql_1   | 2018-08-30T17:12:42.177982Z 0 [Note] Shutting down plugin 'mysql_native_password'
app_mysql_1   | 2018-08-30T17:12:42.178333Z 0 [Note] Shutting down plugin 'binlog'
app_mysql_1   | 2018-08-30T17:12:42.194175Z 0 [Note] mysqld: Shutdown complete
app_mysql_1   |
app_mysql_1   | 2018-08-30T17:12:52.509562Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2018-08-30T17:12:52.516269Z 0 [Note] mysqld (mysqld 5.7.23) starting as process 1 ...
app_mysql_1   | 2018-08-30T17:12:52.528585Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   | 2018-08-30T17:12:52.528695Z 0 [Note] InnoDB: PUNCH HOLE support available
app_mysql_1   | 2018-08-30T17:12:52.528831Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
app_mysql_1   | 2018-08-30T17:12:52.529885Z 0 [Note] InnoDB: Uses event mutexes
app_mysql_1   | 2018-08-30T17:12:52.529916Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
app_mysql_1   | 2018-08-30T17:12:52.529930Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.3
app_mysql_1   | 2018-08-30T17:12:52.529941Z 0 [Note] InnoDB: Using Linux native AIO
app_mysql_1   | 2018-08-30T17:12:52.535717Z 0 [Note] InnoDB: Number of pools: 1
app_mysql_1   | 2018-08-30T17:12:52.536652Z 0 [Note] InnoDB: Using CPU crc32 instructions
app_mysql_1   | 2018-08-30T17:12:52.538355Z 0 [ERROR] InnoDB: Failed to create check sector file, errno:22 Please confirm O_DIRECT is supported and remove the file ./check_sector_size if it exists.
app_mysql_1   | 2018-08-30T17:12:52.540054Z 0 [Note] InnoDB: Initializing buffer pool, total size = 2G, instances = 8, chunk size = 128M
app_mysql_1   | 2018-08-30T17:12:52.969987Z 0 [Note] InnoDB: Completed initialization of buffer pool
app_mysql_1   | 2018-08-30T17:12:53.000554Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
app_mysql_1   | 2018-08-30T17:12:53.095913Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
app_mysql_1   | 2018-08-30T17:12:54.284772Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
app_mysql_1   | 2018-08-30T17:12:54.285685Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
app_mysql_1   | 2018-08-30T17:12:54.414121Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
app_mysql_1   | 2018-08-30T17:12:54.428178Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T17:12:54.428280Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T17:12:54.435457Z 0 [Note] InnoDB: Waiting for purge to start
app_mysql_1   | 2018-08-30T17:12:54.505755Z 0 [Note] InnoDB: 5.7.23 started; log sequence number 20562796
app_mysql_1   | 2018-08-30T17:12:54.507970Z 0 [Note] Plugin 'FEDERATED' is disabled.
app_mysql_1   | 2018-08-30T17:12:54.529749Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2018-08-30T17:12:54.629437Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
app_mysql_1   | 2018-08-30T17:12:54.663116Z 0 [Warning] CA certificate ca.pem is self signed.
app_mysql_1   | 2018-08-30T17:12:54.666087Z 0 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
app_mysql_1   | 2018-08-30T17:12:54.666155Z 0 [Note]   - '0.0.0.0' resolves to '0.0.0.0';
app_mysql_1   | 2018-08-30T17:12:54.667402Z 0 [Note] Server socket created on IP: '0.0.0.0'.
app_mysql_1   | 2018-08-30T17:12:54.701929Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
app_mysql_1   | 2018-08-30T17:12:54.826309Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:54.826898Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:54.827279Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:54.830682Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:54.831475Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:54.834660Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:55.159912Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:55.160180Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:12:55.611513Z 0 [Note] Event Scheduler: Loaded 0 events
app_mysql_1   | 2018-08-30T17:12:55.612737Z 0 [Note] mysqld: ready for connections.
app_mysql_1   | Version: '5.7.23'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server (GPL)
app_mysql_1   | 2018-08-30T17:12:56.114740Z 0 [Note] InnoDB: Buffer pool(s) load completed at 180830 17:12:56
app_mysql_1   | 2018-08-30T17:18:18.055744Z 0 [Note] Giving 0 client threads a chance to die gracefully
app_mysql_1   | 2018-08-30T17:18:18.055789Z 0 [Note] Shutting down slave threads
app_mysql_1   | 2018-08-30T17:18:18.055820Z 0 [Note] Forcefully disconnecting 0 remaining clients
app_mysql_1   | 2018-08-30T17:18:18.055832Z 0 [Note] Event Scheduler: Purging the queue. 0 events
app_mysql_1   | 2018-08-30T17:18:18.055971Z 0 [Note] Binlog end
app_mysql_1   | 2018-08-30T17:18:18.064325Z 0 [Note] Shutting down plugin 'ngram'
app_mysql_1   | 2018-08-30T17:18:18.064388Z 0 [Note] Shutting down plugin 'partition'
app_mysql_1   | 2018-08-30T17:18:18.064402Z 0 [Note] Shutting down plugin 'BLACKHOLE'
app_mysql_1   | 2018-08-30T17:18:18.064414Z 0 [Note] Shutting down plugin 'ARCHIVE'
app_mysql_1   | 2018-08-30T17:18:18.064424Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
app_mysql_1   | 2018-08-30T17:18:18.064717Z 0 [Note] Shutting down plugin 'MRG_MYISAM'
app_mysql_1   | 2018-08-30T17:18:18.064760Z 0 [Note] Shutting down plugin 'MyISAM'
app_mysql_1   | 2018-08-30T17:18:18.064797Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL'
app_mysql_1   | 2018-08-30T17:18:18.064980Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
app_mysql_1   | 2018-08-30T17:18:18.064994Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
app_mysql_1   | 2018-08-30T17:18:18.065002Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
app_mysql_1   | 2018-08-30T17:18:18.065010Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
app_mysql_1   | 2018-08-30T17:18:18.065018Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
app_mysql_1   | 2018-08-30T17:18:18.065025Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
app_mysql_1   | 2018-08-30T17:18:18.065050Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
app_mysql_1   | 2018-08-30T17:18:18.065058Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
app_mysql_1   | 2018-08-30T17:18:18.065064Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
app_mysql_1   | 2018-08-30T17:18:18.065072Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
app_redis_1   | 1:C 30 Aug 16:54:39.875 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
app_redis_1   | 1:C 30 Aug 16:54:39.877 # Redis version=4.0.11, bits=64, commit=00000000, modified=0, pid=1, just started
app_redis_1   | 1:C 30 Aug 16:54:39.877 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
app_redis_1   | 1:M 30 Aug 16:54:39.884 * Running mode=standalone, port=6379.
app_redis_1   | 1:M 30 Aug 16:54:39.885 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
app_redis_1   | 1:M 30 Aug 16:54:39.886 # Server initialized
app_redis_1   | 1:M 30 Aug 16:54:39.886 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
app_redis_1   | 1:M 30 Aug 16:54:39.888 * Ready to accept connections
app_redis_1   | 1:signal-handler (1535649149) Received SIGTERM scheduling shutdown...
app_redis_1   | 1:M 30 Aug 17:12:29.616 # User requested shutdown...
app_redis_1   | 1:M 30 Aug 17:12:29.632 * Saving the final RDB snapshot before exiting.
app_redis_1   | 1:M 30 Aug 17:12:29.639 * DB saved on disk
app_redis_1   | 1:M 30 Aug 17:12:29.641 # Redis is now ready to exit, bye bye...
app_redis_1   | 1:C 30 Aug 17:12:50.054 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
app_redis_1   | 1:C 30 Aug 17:12:50.054 # Redis version=4.0.11, bits=64, commit=00000000, modified=0, pid=1, just started
app_redis_1   | 1:C 30 Aug 17:12:50.054 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
app_redis_1   | 1:M 30 Aug 17:12:50.060 * Running mode=standalone, port=6379.
app_redis_1   | 1:M 30 Aug 17:12:50.060 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
app_redis_1   | 1:M 30 Aug 17:12:50.060 # Server initialized
app_redis_1   | 1:M 30 Aug 17:12:50.060 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
app_redis_1   | 1:M 30 Aug 17:12:50.080 * DB loaded from disk: 0.020 seconds
app_redis_1   | 1:M 30 Aug 17:12:50.081 * Ready to accept connections
app_redis_1   | 1:signal-handler (1535649487) Received SIGTERM scheduling shutdown...
app_redis_1   | 1:M 30 Aug 17:18:07.550 # User requested shutdown...
app_redis_1   | 1:M 30 Aug 17:18:07.550 * Saving the final RDB snapshot before exiting.
app_redis_1   | 1:M 30 Aug 17:18:07.561 * DB saved on disk
app_redis_1   | 1:M 30 Aug 17:18:07.561 # Redis is now ready to exit, bye bye...
app_redis_1   | 1:C 30 Aug 17:19:04.415 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
app_redis_1   | 1:C 30 Aug 17:19:04.415 # Redis version=4.0.11, bits=64, commit=00000000, modified=0, pid=1, just started
app_redis_1   | 1:C 30 Aug 17:19:04.415 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
app_redis_1   | 1:M 30 Aug 17:19:04.426 * Running mode=standalone, port=6379.
app_redis_1   | 1:M 30 Aug 17:19:04.426 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
app_redis_1   | 1:M 30 Aug 17:19:04.426 # Server initialized
app_redis_1   | 1:M 30 Aug 17:19:04.427 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
app_redis_1   | 1:M 30 Aug 17:19:04.457 * DB loaded from disk: 0.031 seconds
app_redis_1   | 1:M 30 Aug 17:19:04.457 * Ready to accept connections
app_redis_1   | 1:signal-handler (1535649688) Received SIGTERM scheduling shutdown...
app_redis_1   | 1:M 30 Aug 17:21:28.531 # User requested shutdown...
app_redis_1   | 1:M 30 Aug 17:21:28.531 * Saving the final RDB snapshot before exiting.
app_redis_1   | 1:M 30 Aug 17:21:28.547 * DB saved on disk
app_redis_1   | 1:M 30 Aug 17:21:28.547 # Redis is now ready to exit, bye bye...
app_redis_1   | 1:C 30 Aug 17:21:37.557 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
app_redis_1   | 1:C 30 Aug 17:21:37.557 # Redis version=4.0.11, bits=64, commit=00000000, modified=0, pid=1, just started
app_redis_1   | 1:C 30 Aug 17:21:37.557 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
app_redis_1   | 1:M 30 Aug 17:21:37.559 * Running mode=standalone, port=6379.
app_redis_1   | 1:M 30 Aug 17:21:37.559 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
app_redis_1   | 1:M 30 Aug 17:21:37.559 # Server initialized
app_redis_1   | 1:M 30 Aug 17:21:37.559 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
app_redis_1   | 1:M 30 Aug 17:21:37.566 * DB loaded from disk: 0.007 seconds
app_redis_1   | 1:M 30 Aug 17:21:37.566 * Ready to accept connections
app_mysql_1   | 2018-08-30T17:18:18.065095Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
app_mysql_1   | 2018-08-30T17:18:18.065103Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
app_mysql_1   | 2018-08-30T17:18:18.065110Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
app_mysql_1   | 2018-08-30T17:18:18.065118Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED'
app_mysql_1   | 2018-08-30T17:18:18.065125Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
app_mysql_1   | 2018-08-30T17:18:18.065133Z 0 [Note] Shutting down plugin 'INNODB_METRICS'
app_mysql_1   | 2018-08-30T17:18:18.065138Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO'
app_mysql_1   | 2018-08-30T17:18:18.065145Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
app_mysql_1   | 2018-08-30T17:18:18.065152Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
app_mysql_1   | 2018-08-30T17:18:18.065158Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
app_mysql_1   | 2018-08-30T17:18:18.065163Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
app_mysql_1   | 2018-08-30T17:18:18.065169Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
app_mysql_1   | 2018-08-30T17:18:18.065177Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
app_mysql_1   | 2018-08-30T17:18:18.065193Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM'
app_mysql_1   | 2018-08-30T17:18:18.065199Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET'
app_mysql_1   | 2018-08-30T17:18:18.065207Z 0 [Note] Shutting down plugin 'INNODB_CMP'
app_mysql_1   | 2018-08-30T17:18:18.065213Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
app_mysql_1   | 2018-08-30T17:18:18.065220Z 0 [Note] Shutting down plugin 'INNODB_LOCKS'
app_mysql_1   | 2018-08-30T17:18:18.065242Z 0 [Note] Shutting down plugin 'INNODB_TRX'
app_mysql_1   | 2018-08-30T17:18:18.065250Z 0 [Note] Shutting down plugin 'InnoDB'
app_mysql_1   | 2018-08-30T17:18:18.065539Z 0 [Note] InnoDB: FTS optimize thread exiting.
app_mysql_1   | 2018-08-30T17:18:18.066137Z 0 [Note] InnoDB: Starting shutdown...
app_mysql_1   | 2018-08-30T17:18:18.169104Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2018-08-30T17:18:18.176721Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 180830 17:18:18
app_mysql_1   | 2018-08-30T17:18:19.546306Z 0 [Note] InnoDB: Shutdown completed; log sequence number 20567438
app_mysql_1   | 2018-08-30T17:18:19.549179Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
app_mysql_1   | 2018-08-30T17:18:19.549273Z 0 [Note] Shutting down plugin 'MEMORY'
app_mysql_1   | 2018-08-30T17:18:19.549286Z 0 [Note] Shutting down plugin 'CSV'
app_mysql_1   | 2018-08-30T17:18:19.549296Z 0 [Note] Shutting down plugin 'sha256_password'
app_mysql_1   | 2018-08-30T17:18:19.549305Z 0 [Note] Shutting down plugin 'mysql_native_password'
app_mysql_1   | 2018-08-30T17:18:19.549889Z 0 [Note] Shutting down plugin 'binlog'
app_mysql_1   | 2018-08-30T17:18:19.558237Z 0 [Note] mysqld: Shutdown complete
app_mysql_1   |
app_mysql_1   | 2018-08-30T17:19:07.008380Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2018-08-30T17:19:07.014884Z 0 [Note] mysqld (mysqld 5.7.23) starting as process 1 ...
app_mysql_1   | 2018-08-30T17:19:07.026843Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   | 2018-08-30T17:19:07.027393Z 0 [Note] InnoDB: PUNCH HOLE support available
app_mysql_1   | 2018-08-30T17:19:07.027437Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
app_mysql_1   | 2018-08-30T17:19:07.027448Z 0 [Note] InnoDB: Uses event mutexes
app_mysql_1   | 2018-08-30T17:19:07.027458Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
app_mysql_1   | 2018-08-30T17:19:07.027468Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.3
app_mysql_1   | 2018-08-30T17:19:07.027477Z 0 [Note] InnoDB: Using Linux native AIO
app_mysql_1   | 2018-08-30T17:19:07.032645Z 0 [Note] InnoDB: Number of pools: 1
app_mysql_1   | 2018-08-30T17:19:07.033301Z 0 [Note] InnoDB: Using CPU crc32 instructions
app_mysql_1   | 2018-08-30T17:19:07.035596Z 0 [ERROR] InnoDB: Failed to create check sector file, errno:22 Please confirm O_DIRECT is supported and remove the file ./check_sector_size if it exists.
app_mysql_1   | 2018-08-30T17:19:07.038011Z 0 [Note] InnoDB: Initializing buffer pool, total size = 2G, instances = 8, chunk size = 128M
app_mysql_1   | 2018-08-30T17:19:07.257631Z 0 [Note] InnoDB: Completed initialization of buffer pool
app_mysql_1   | 2018-08-30T17:19:07.271376Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
app_mysql_1   | 2018-08-30T17:19:07.392478Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
app_mysql_1   | 2018-08-30T17:19:08.707029Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
app_mysql_1   | 2018-08-30T17:19:08.708011Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
app_mysql_1   | 2018-08-30T17:19:08.883406Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
app_mysql_1   | 2018-08-30T17:19:08.893770Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T17:19:08.893825Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
app_mysql_1   | 2018-08-30T17:19:08.895290Z 0 [Note] InnoDB: Waiting for purge to start
app_mysql_1   | 2018-08-30T17:19:08.946731Z 0 [Note] InnoDB: 5.7.23 started; log sequence number 20567438
app_mysql_1   | 2018-08-30T17:19:08.948651Z 0 [Note] Plugin 'FEDERATED' is disabled.
app_mysql_1   | 2018-08-30T17:19:08.955665Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2018-08-30T17:19:09.203199Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
app_mysql_1   | 2018-08-30T17:19:09.237074Z 0 [Warning] CA certificate ca.pem is self signed.
app_mysql_1   | 2018-08-30T17:19:09.241680Z 0 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
app_mysql_1   | 2018-08-30T17:19:09.241736Z 0 [Note]   - '0.0.0.0' resolves to '0.0.0.0';
app_mysql_1   | 2018-08-30T17:19:09.241768Z 0 [Note] Server socket created on IP: '0.0.0.0'.
app_mysql_1   | 2018-08-30T17:19:09.253305Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
app_mysql_1   | 2018-08-30T17:19:09.472565Z 0 [Warning] 'user' entry 'root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:09.473390Z 0 [Warning] 'user' entry 'mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:09.473444Z 0 [Warning] 'user' entry 'mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:09.476087Z 0 [Warning] 'db' entry 'performance_schema mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:09.476123Z 0 [Warning] 'db' entry 'sys mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:09.477994Z 0 [Warning] 'proxies_priv' entry '@ root@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:09.695527Z 0 [Warning] 'tables_priv' entry 'user mysql.session@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:09.695642Z 0 [Warning] 'tables_priv' entry 'sys_config mysql.sys@localhost' ignored in --skip-name-resolve mode.
app_mysql_1   | 2018-08-30T17:19:10.013717Z 0 [Note] InnoDB: Buffer pool(s) load completed at 180830 17:19:10
app_mysql_1   | 2018-08-30T17:19:10.372980Z 0 [Note] Event Scheduler: Loaded 0 events
app_mysql_1   | 2018-08-30T17:19:10.374406Z 0 [Note] mysqld: ready for connections.
app_mysql_1   | Version: '5.7.23'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server (GPL)
app_server_1  | Agent pid 11
app_server_1  | Identity added: /home/app-shell/.ssh/id_rsa (/home/app-shell/.ssh/id_rsa)
app_server_1  | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.100.111.46. Set the 'ServerName' directive globally to suppress this message
app_server_1  | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.100.111.46. Set the 'ServerName' directive globally to suppress this message
app_server_1  | [Thu Aug 30 17:21:41.947259 2018] [mpm_prefork:notice] [pid 13] AH00163: Apache/2.4.25 (Debian) PHP/7.1.21 configured -- resuming normal operations
app_server_1  | [Thu Aug 30 17:21:41.947370 2018] [core:notice] [pid 13] AH00094: Command line: 'apache2 -D FOREGROUND'
app_es_1      | [2018-08-30T17:23:27,057][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.1gb[13.5%], replicas will not be assigned to this node
app_es_1      | [2018-08-30T17:23:57,036][INFO ][o.e.c.r.a.DiskThresholdMonitor] [shjyG5r] low disk watermark [85%] exceeded on [shjyG5rXRreM0sGkYZF11A][shjyG5r][/usr/share/elasticsearch/data/nodes/0] free: 15.1gb[13.5%], replicas will not be assigned to this node

app_server is not starting

I've installed shopware like this:

$ git clone https://github.com/shopwareLabs/shopware-docker.git shopware-test
Cloning into 'shopware-test'...
remote: Enumerating objects: 32, done.
remote: Counting objects: 100% (32/32), done.
remote: Compressing objects: 100% (23/23), done.
remote: Total 343 (delta 10), reused 24 (delta 9), pack-reused 311
Receiving objects: 100% (343/343), 2.03 MiB | 526.00 KiB/s, done.
Resolving deltas: 100% (147/147), done.
$ ./psh.phar docker:start
###################
Starting Execution of 'docker:start' ('dev-ops/docker/actions/start.sh')
(1/6) Starting
> echo "COMPOSE_PROJECT_NAME: ${COMPOSE_PROJECT_NAME}"
COMPOSE_PROJECT_NAME:
(2/6) Starting
> dev-ops/docker/containers/scriptcreator.sh
Created /home/dieter/shopware-test/dev-ops/docker/containers/php7/createuser.sh
Created /home/dieter/shopware-test/dev-ops/docker/containers/mysql/createuser.sh
(3/6) Starting
> docker-compose build && docker-compose up -d
Building app_mysql
Step 1/9 : FROM mysql:5.7
5.7: Pulling from library/mysql
Digest: sha256:f7985e36c668bb862a0e506f4ef9acdd1254cdf690469816f99633898895f7fa
Status: Downloaded newer image for mysql:5.7
---> 383867b75fd2
Step 2/9 : RUN apt-get update
&& apt-get install --no-install-recommends -y
vim
netcat-openbsd
---> Running in 7f9b903f5862
Get:1 http://repo.mysql.com/apt/debian stretch InRelease [21.6 kB]
Get:2 http://security-cdn.debian.org/debian-security stretch/updates InRelease [94.3 kB]
Get:4 http://repo.mysql.com/apt/debian stretch/mysql-5.7 amd64 Packages [5695 B]
Get:5 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 Packages [506 kB]
Ign:3 http://cdn-fastly.deb.debian.org/debian stretch InRelease
Get:6 http://cdn-fastly.deb.debian.org/debian stretch-updates InRelease [91.0 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian stretch-updates/main amd64 Packages [27.4 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian stretch Release [118 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian stretch Release.gpg [2365 B]
Get:10 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 Packages [7086 kB]
Fetched 7952 kB in 2s (3100 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
libbsd0 vim-common vim-runtime xxd
Suggested packages:
ctags vim-doc vim-scripts
The following NEW packages will be installed:
libbsd0 netcat-openbsd vim vim-common vim-runtime xxd
0 upgraded, 6 newly installed, 0 to remove and 1 not upgraded.
Need to get 6856 kB of archives.
After this operation, 31.4 MB of additional disk space will be used.
Get:1 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 xxd amd64 2:8.0.0197-4+deb9u3 [132 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 vim-common all 2:8.0.0197-4+deb9u3 [159 kB]
Get:3 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 libbsd0 amd64 0.8.3-1 [83.0 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 netcat-openbsd amd64 1.130-3 [38.2 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 vim-runtime all 2:8.0.0197-4+deb9u3 [5409 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 vim amd64 2:8.0.0197-4+deb9u3 [1034 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 6856 kB in 1s (5986 kB/s)
Selecting previously unselected package xxd.
(Reading database ... 8908 files and directories currently installed.)
Preparing to unpack .../0-xxd_2%3a8.0.0197-4+deb9u3_amd64.deb ...
Unpacking xxd (2:8.0.0197-4+deb9u3) ...
Selecting previously unselected package vim-common.
Preparing to unpack .../1-vim-common_2%3a8.0.0197-4+deb9u3_all.deb ...
Unpacking vim-common (2:8.0.0197-4+deb9u3) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../2-libbsd0_0.8.3-1_amd64.deb ...
Unpacking libbsd0:amd64 (0.8.3-1) ...
Selecting previously unselected package netcat-openbsd.
Preparing to unpack .../3-netcat-openbsd_1.130-3_amd64.deb ...
Unpacking netcat-openbsd (1.130-3) ...
Selecting previously unselected package vim-runtime.
Preparing to unpack .../4-vim-runtime_2%3a8.0.0197-4+deb9u3_all.deb ...
Adding 'diversion of /usr/share/vim/vim80/doc/help.txt to /usr/share/vim/vim80/doc/help.txt.vim-tiny by vim-runtime'
Adding 'diversion of /usr/share/vim/vim80/doc/tags to /usr/share/vim/vim80/doc/tags.vim-tiny by vim-runtime'
Unpacking vim-runtime (2:8.0.0197-4+deb9u3) ...
Selecting previously unselected package vim.
Preparing to unpack .../5-vim_2%3a8.0.0197-4+deb9u3_amd64.deb ...
Unpacking vim (2:8.0.0197-4+deb9u3) ...
Setting up xxd (2:8.0.0197-4+deb9u3) ...
Setting up libbsd0:amd64 (0.8.3-1) ...
Setting up netcat-openbsd (1.130-3) ...
update-alternatives: using /bin/nc.openbsd to provide /bin/nc (nc) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/nc.1.gz because associated file /usr/share/man/man1/nc_openbsd.1.gz (of link group nc) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/netcat.1.gz because associated file /usr/share/man/man1/nc_openbsd.1.gz (of link group nc) doesn't exist
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Setting up vim-common (2:8.0.0197-4+deb9u3) ...
Setting up vim-runtime (2:8.0.0197-4+deb9u3) ...
Setting up vim (2:8.0.0197-4+deb9u3) ...
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vim (vim) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vimdiff (vimdiff) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rvim (rvim) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/rview (rview) in auto mode
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/vi (vi) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/vi.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group vi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/it/man1/vi.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group vi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/pl/man1/vi.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group vi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ru/man1/vi.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group vi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ja/man1/vi.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group vi) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/vi.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group vi) doesn't exist
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/view (view) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/view.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group view) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/it/man1/view.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group view) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/pl/man1/view.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group view) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ru/man1/view.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group view) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ja/man1/view.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group view) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/view.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group view) doesn't exist
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/ex (ex) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/ex.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group ex) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/it/man1/ex.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group ex) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/pl/man1/ex.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group ex) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ru/man1/ex.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group ex) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ja/man1/ex.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group ex) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/ex.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group ex) doesn't exist
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/editor.1.gz because associated file /usr/share/man/fr/man1/vim.1.gz (of link group editor) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/it/man1/editor.1.gz because associated file /usr/share/man/it/man1/vim.1.gz (of link group editor) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/pl/man1/editor.1.gz because associated file /usr/share/man/pl/man1/vim.1.gz (of link group editor) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ru/man1/editor.1.gz because associated file /usr/share/man/ru/man1/vim.1.gz (of link group editor) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/ja/man1/editor.1.gz because associated file /usr/share/man/ja/man1/vim.1.gz (of link group editor) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/editor.1.gz because associated file /usr/share/man/man1/vim.1.gz (of link group editor) doesn't exist
Removing intermediate container 7f9b903f5862
---> 3cd42f43b6eb
Step 3/9 : ADD dev.cnf /etc/mysql/conf.d/dev.cnf
---> 91929259464b
Step 4/9 : ADD remote-access.cnf /etc/mysql/conf.d/remote-access.cnf
---> 0e7e42cdb6ef
Step 5/9 : ADD performance-schema.cnf /etc/mysql/conf.d/performance-schema.cnf
---> 8b0c26b34314
Step 6/9 : COPY createuser.sh /tmp/createuser.sh
---> 800ec5580589
Step 7/9 : RUN chmod +rwx /tmp/createuser.sh
---> Running in d763af42ae51
Removing intermediate container d763af42ae51
---> 2b9139f8acd7
Step 8/9 : RUN /tmp/createuser.sh
---> Running in 1d12cf72b1dc
Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully
Removing intermediate container 1d12cf72b1dc
---> 70e4b00bb3df
Step 9/9 : COPY grant.sql /docker-entrypoint-initdb.d/grant.sql
---> 8697d7e6d203
Successfully built 8697d7e6d203
Successfully tagged shopware-test_app_mysql:latest
Building app_redis
Step 1/1 : FROM redis:4
---> 969e92fbf946
Successfully built 969e92fbf946
Successfully tagged shopware-test_app_redis:latest
Building app_es
Step 1/1 : FROM docker.elastic.co/elasticsearch/elasticsearch:5.5.2
---> ca27036dd5e7
Successfully built ca27036dd5e7
Successfully tagged shopware-test_app_es:latest
Building app_server
Step 1/11 : FROM webdevops/php-apache-dev:7.2
---> 15daa32332b6
Step 2/11 : ENV COMPOSER_HOME=/.composer
---> Running in ec1cdb28fcc5
Removing intermediate container ec1cdb28fcc5
---> ed81f7b0ded7
Step 3/11 : ENV WEB_DOCUMENT_ROOT=/var/www/shopware/shopware
---> Running in 8496dca6b9ec
Removing intermediate container 8496dca6b9ec
---> b77ebc4e2c89
Step 4/11 : COPY wait-for-it.sh /usr/local/bin/
---> 0785057a2790
Step 5/11 : COPY php-config.ini /usr/local/etc/php/conf.d/
---> e5abc252fec9
Step 6/11 : COPY xdebug.ini /usr/local/etc/php/conf.d/
---> 4deda05ae07c
Step 7/11 : COPY createuser.sh /addExternalUser
---> cac1032f661a
Step 8/11 : RUN mkdir -p /usr/share/man/man1
---> Running in 408722eedc4c
Removing intermediate container 408722eedc4c
---> 10eb70951aa1
Step 9/11 : RUN apt-get update && apt-get install -y ant mysql-client
---> Running in fbb4a7cf33ce
Get:1 http://security.debian.org/debian-security stretch/updates InRelease [94.3 kB]
Ign:2 http://deb.debian.org/debian stretch InRelease
Get:3 http://deb.debian.org/debian stretch-updates InRelease [91.0 kB]
Get:4 http://security.debian.org/debian-security buster/updates InRelease [39.1 kB]
Get:5 http://deb.debian.org/debian buster InRelease [122 kB]
Get:6 http://deb.debian.org/debian buster-updates InRelease [49.3 kB]
Get:7 http://deb.debian.org/debian stretch Release [118 kB]
Get:8 http://security.debian.org/debian-security stretch/updates/main amd64 Packages [506 kB]
Get:9 http://deb.debian.org/debian stretch Release.gpg [2365 B]
Get:10 http://security.debian.org/debian-security buster/updates/main amd64 Packages [91.3 kB]
Get:11 http://deb.debian.org/debian stretch-updates/main amd64 Packages [27.4 kB]
Get:12 http://deb.debian.org/debian buster/main amd64 Packages [7899 kB]
Get:13 http://deb.debian.org/debian buster-updates/main amd64 Packages [3352 B]
Get:14 http://deb.debian.org/debian stretch/contrib amd64 Packages [50.9 kB]
Get:15 http://deb.debian.org/debian stretch/main amd64 Packages [7086 kB]
Get:16 https://packages.blackfire.io/debian any InRelease [23.2 kB]
Get:17 http://deb.debian.org/debian stretch/non-free amd64 Packages [78.3 kB]
Get:18 https://packages.blackfire.io/debian any/main amd64 Packages [1200 B]
Fetched 16.3 MB in 3s (4791 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
ant-optional ca-certificates-java default-jre-headless default-mysql-client
java-common libaio1 libconfig-inifiles-perl libdbd-mysql-perl libdbi-perl
libjemalloc1 libmariadbclient18 libpcsclite1 libreadline5
libterm-readkey-perl libxi6 libxtst6 mariadb-client-10.1
mariadb-client-core-10.1 mariadb-common mysql-common openjdk-8-jre-headless
Suggested packages:
ant-doc ant-gcj default-jdk | java-compiler | java-sdk ant-optional-gcj
antlr javacc junit junit4 jython libbcel-java libbsf-java
libcommons-logging-java libcommons-net-java libmail-java libjaxp1.3-java
libjdepend-java libjsch-java liblog4j1.2-java liboro-java libregexp-java
libxalan2-java libxml-commons-resolver1.1-java default-jre libclone-perl
libmldbm-perl libnet-daemon-perl libsql-statement-perl pcscd libnss-mdns
fonts-dejavu-extra fonts-ipafont-gothic fonts-ipafont-mincho
fonts-wqy-microhei fonts-wqy-zenhei fonts-indic
The following NEW packages will be installed:
ant ant-optional ca-certificates-java default-jre-headless
default-mysql-client java-common libaio1 libconfig-inifiles-perl
libdbd-mysql-perl libdbi-perl libjemalloc1 libmariadbclient18 libpcsclite1
libreadline5 libterm-readkey-perl libxi6 libxtst6 mariadb-client-10.1
mariadb-client-core-10.1 mariadb-common mysql-client mysql-common
openjdk-8-jre-headless
0 upgraded, 23 newly installed, 0 to remove and 2 not upgraded.
Need to get 42.8 MB of archives.
After this operation, 183 MB of additional disk space will be used.
Get:1 http://security.debian.org/debian-security stretch/updates/main amd64 ant all 1.9.9-1+deb9u1 [1923 kB]
Get:2 http://deb.debian.org/debian stretch/main amd64 ca-certificates-java all 20170929~deb9u3 [15.1 kB]
Get:3 http://deb.debian.org/debian stretch/main amd64 java-common all 0.58+deb9u1 [13.6 kB]
Get:4 http://deb.debian.org/debian stretch/main amd64 libpcsclite1 amd64 1.8.20-1 [56.5 kB]
Get:5 http://deb.debian.org/debian stretch/main amd64 libxi6 amd64 2:1.7.9-1 [82.6 kB]
Get:6 http://deb.debian.org/debian stretch/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB]
Get:7 http://deb.debian.org/debian stretch/main amd64 openjdk-8-jre-headless amd64 8u222-b10-1~deb9u1 [27.3 MB]
Get:8 http://deb.debian.org/debian stretch/main amd64 default-jre-headless amd64 2:1.8-58+deb9u1 [10.1 kB]
Get:9 http://deb.debian.org/debian stretch/main amd64 mysql-common all 5.8+1.0.2 [5608 B]
Get:10 http://deb.debian.org/debian stretch/main amd64 mariadb-common all 10.1.41-0+deb9u1 [28.5 kB]
Get:11 http://deb.debian.org/debian stretch/main amd64 libaio1 amd64 0.3.110-3 [9412 B]
Get:12 http://deb.debian.org/debian stretch/main amd64 libreadline5 amd64 5.2+dfsg-3+b1 [119 kB]
Get:13 http://deb.debian.org/debian stretch/main amd64 mariadb-client-core-10.1 amd64 10.1.41-0+deb9u1 [5132 kB]
Get:14 http://deb.debian.org/debian stretch/main amd64 libconfig-inifiles-perl all 2.94-1 [53.4 kB]
Get:15 http://deb.debian.org/debian stretch/main amd64 libjemalloc1 amd64 3.6.0-9.1 [89.8 kB]
Get:16 http://deb.debian.org/debian stretch/main amd64 mariadb-client-10.1 amd64 10.1.41-0+deb9u1 [5930 kB]
Get:17 http://deb.debian.org/debian stretch/main amd64 default-mysql-client all 1.0.2 [3050 B]
Get:18 http://deb.debian.org/debian stretch/main amd64 libdbi-perl amd64 1.636-1+b1 [766 kB]
Get:19 http://deb.debian.org/debian stretch/main amd64 libmariadbclient18 amd64 10.1.41-0+deb9u1 [782 kB]
Get:20 http://deb.debian.org/debian stretch/main amd64 libdbd-mysql-perl amd64 4.041-2 [114 kB]
Get:21 http://deb.debian.org/debian stretch/main amd64 libterm-readkey-perl amd64 2.37-1 [27.2 kB]
Get:22 http://deb.debian.org/debian stretch/main amd64 mysql-client amd64 5.5.9999+default [1698 B]
Get:23 http://security.debian.org/debian-security stretch/updates/main amd64 ant-optional all 1.9.9-1+deb9u1 [350 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 42.8 MB in 4s (9617 kB/s)
Selecting previously unselected package ca-certificates-java.
(Reading database ... 29374 files and directories currently installed.)
Preparing to unpack .../00-ca-certificates-java_20170929~deb9u3_all.deb ...
Unpacking ca-certificates-java (20170929~deb9u3) ...
Selecting previously unselected package java-common.
Preparing to unpack .../01-java-common_0.58+deb9u1_all.deb ...
Unpacking java-common (0.58+deb9u1) ...
Selecting previously unselected package libpcsclite1:amd64.
Preparing to unpack .../02-libpcsclite1_1.8.20-1_amd64.deb ...
Unpacking libpcsclite1:amd64 (1.8.20-1) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../03-libxi6_2%3a1.7.9-1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.7.9-1) ...
Selecting previously unselected package libxtst6:amd64.
Preparing to unpack .../04-libxtst6_2%3a1.2.3-1_amd64.deb ...
Unpacking libxtst6:amd64 (2:1.2.3-1) ...
Selecting previously unselected package openjdk-8-jre-headless:amd64.
Preparing to unpack .../05-openjdk-8-jre-headless_8u222-b10-1~deb9u1_amd64.deb ...
Unpacking openjdk-8-jre-headless:amd64 (8u222-b10-1~deb9u1) ...
Selecting previously unselected package default-jre-headless.
Preparing to unpack .../06-default-jre-headless_2%3a1.8-58+deb9u1_amd64.deb ...
Unpacking default-jre-headless (2:1.8-58+deb9u1) ...
Selecting previously unselected package ant.
Preparing to unpack .../07-ant_1.9.9-1+deb9u1_all.deb ...
Unpacking ant (1.9.9-1+deb9u1) ...
Selecting previously unselected package ant-optional.
Preparing to unpack .../08-ant-optional_1.9.9-1+deb9u1_all.deb ...
Unpacking ant-optional (1.9.9-1+deb9u1) ...
Selecting previously unselected package mysql-common.
Preparing to unpack .../09-mysql-common_5.8+1.0.2_all.deb ...
Unpacking mysql-common (5.8+1.0.2) ...
Selecting previously unselected package mariadb-common.
Preparing to unpack .../10-mariadb-common_10.1.41-0+deb9u1_all.deb ...
Unpacking mariadb-common (10.1.41-0+deb9u1) ...
Selecting previously unselected package libaio1:amd64.
Preparing to unpack .../11-libaio1_0.3.110-3_amd64.deb ...
Unpacking libaio1:amd64 (0.3.110-3) ...
Selecting previously unselected package libreadline5:amd64.
Preparing to unpack .../12-libreadline5_5.2+dfsg-3+b1_amd64.deb ...
Unpacking libreadline5:amd64 (5.2+dfsg-3+b1) ...
Selecting previously unselected package mariadb-client-core-10.1.
Preparing to unpack .../13-mariadb-client-core-10.1_10.1.41-0+deb9u1_amd64.deb ...
Unpacking mariadb-client-core-10.1 (10.1.41-0+deb9u1) ...
Selecting previously unselected package libconfig-inifiles-perl.
Preparing to unpack .../14-libconfig-inifiles-perl_2.94-1_all.deb ...
Unpacking libconfig-inifiles-perl (2.94-1) ...
Selecting previously unselected package libjemalloc1.
Preparing to unpack .../15-libjemalloc1_3.6.0-9.1_amd64.deb ...
Unpacking libjemalloc1 (3.6.0-9.1) ...
Selecting previously unselected package mariadb-client-10.1.
Preparing to unpack .../16-mariadb-client-10.1_10.1.41-0+deb9u1_amd64.deb ...
Unpacking mariadb-client-10.1 (10.1.41-0+deb9u1) ...
Selecting previously unselected package default-mysql-client.
Preparing to unpack .../17-default-mysql-client_1.0.2_all.deb ...
Unpacking default-mysql-client (1.0.2) ...
Selecting previously unselected package libdbi-perl.
Preparing to unpack .../18-libdbi-perl_1.636-1+b1_amd64.deb ...
Unpacking libdbi-perl (1.636-1+b1) ...
Selecting previously unselected package libmariadbclient18:amd64.
Preparing to unpack .../19-libmariadbclient18_10.1.41-0+deb9u1_amd64.deb ...
Unpacking libmariadbclient18:amd64 (10.1.41-0+deb9u1) ...
Selecting previously unselected package libdbd-mysql-perl.
Preparing to unpack .../20-libdbd-mysql-perl_4.041-2_amd64.deb ...
Unpacking libdbd-mysql-perl (4.041-2) ...
Selecting previously unselected package libterm-readkey-perl.
Preparing to unpack .../21-libterm-readkey-perl_2.37-1_amd64.deb ...
Unpacking libterm-readkey-perl (2.37-1) ...
Selecting previously unselected package mysql-client.
Preparing to unpack .../22-mysql-client_5.5.9999+default_amd64.deb ...
Unpacking mysql-client (5.5.9999+default) ...
Setting up libxi6:amd64 (2:1.7.9-1) ...
Setting up libconfig-inifiles-perl (2.94-1) ...
Setting up libjemalloc1 (3.6.0-9.1) ...
Setting up libpcsclite1:amd64 (1.8.20-1) ...
Setting up mysql-common (5.8+1.0.2) ...
update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Setting up java-common (0.58+deb9u1) ...
Setting up libmariadbclient18:amd64 (10.1.41-0+deb9u1) ...
Setting up libterm-readkey-perl (2.37-1) ...
Setting up libxtst6:amd64 (2:1.2.3-1) ...
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Setting up libaio1:amd64 (0.3.110-3) ...
Setting up libreadline5:amd64 (5.2+dfsg-3+b1) ...
Processing triggers for ca-certificates (20161130+nmu1+deb9u1) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Setting up libdbi-perl (1.636-1+b1) ...
Setting up mariadb-common (10.1.41-0+deb9u1) ...
update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
Setting up mariadb-client-core-10.1 (10.1.41-0+deb9u1) ...
Setting up libdbd-mysql-perl (4.041-2) ...
Setting up mariadb-client-10.1 (10.1.41-0+deb9u1) ...
Setting up default-mysql-client (1.0.2) ...
Setting up mysql-client (5.5.9999+default) ...
Setting up openjdk-8-jre-headless:amd64 (8u222-b10-1~deb9u1) ...
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/clhsdb to provide /usr/bin/clhsdb (clhsdb) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java to provide /usr/bin/java (java) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/hsdb to provide /usr/bin/hsdb (hsdb) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/jjs to provide /usr/bin/jjs (jjs) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/orbd to provide /usr/bin/orbd (orbd) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/servertool to provide /usr/bin/servertool (servertool) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/tnameserv to provide /usr/bin/tnameserv (tnameserv) in auto mode
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode
Setting up ca-certificates-java (20170929~deb9u3) ...
Adding debian:ssl-cert-snakeoil.pem
Adding debian:Certum_Root_CA.pem
Adding debian:Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem
Adding debian:Atos_TrustedRoot_2011.pem
Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem
Adding debian:AffirmTrust_Commercial.pem
Adding debian:TÜRKTRUST_Elektronik_Sertifika_Hizmet_Sağlayıcısı_H5.pem
Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem
Adding debian:GlobalSign_Root_CA.pem
Adding debian:Staat_der_Nederlanden_EV_Root_CA.pem
Adding debian:DST_Root_CA_X3.pem
Adding debian:Secure_Global_CA.pem
Adding debian:TeliaSonera_Root_CA_v1.pem
Adding debian:Network_Solutions_Certificate_Authority.pem
Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem
Adding debian:EE_Certification_Centre_Root_CA.pem
Adding debian:DigiCert_Trusted_Root_G4.pem
Adding debian:Security_Communication_RootCA2.pem
Adding debian:AddTrust_External_Root.pem
Adding debian:EC-ACC.pem
Adding debian:CA_Disig_Root_R2.pem
Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem
Adding debian:AC_Raíz_Certicámara_S.A..pem
Adding debian:LuxTrust_Global_Root_2.pem
Adding debian:USERTrust_RSA_Certification_Authority.pem
Adding debian:SSL.com_Root_Certification_Authority_ECC.pem
Adding debian:Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem
Adding debian:SecureTrust_CA.pem
Adding debian:IdenTrust_Commercial_Root_CA_1.pem
Adding debian:Actalis_Authentication_Root_CA.pem
Adding debian:Certplus_Root_CA_G2.pem
Adding debian:thawte_Primary_Root_CA_-_G2.pem
Adding debian:Certum_Trusted_Network_CA.pem
Adding debian:Sonera_Class_2_Root_CA.pem
Adding debian:Trustis_FPS_Root_CA.pem
Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
Adding debian:OpenTrust_Root_CA_G1.pem
Adding debian:Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem
Adding debian:Certigna.pem
Adding debian:Camerfirma_Global_Chambersign_Root.pem
Adding debian:Buypass_Class_3_Root_CA.pem
Adding debian:Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem
Adding debian:T-TeleSec_GlobalRoot_Class_2.pem
Adding debian:AffirmTrust_Premium_ECC.pem
Adding debian:GeoTrust_Universal_CA_2.pem
Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem
Adding debian:OpenTrust_Root_CA_G2.pem
Adding debian:SwissSign_Platinum_CA_-_G2.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem
Adding debian:OpenTrust_Root_CA_G3.pem
Adding debian:certSIGN_ROOT_CA.pem
Adding debian:Staat_der_Nederlanden_Root_CA_-_G2.pem
Adding debian:QuoVadis_Root_CA.pem
Adding debian:GeoTrust_Primary_Certification_Authority_-_G3.pem
Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem
Adding debian:Staat_der_Nederlanden_Root_CA_-_G3.pem
Adding debian:UTN_USERFirst_Email_Root_CA.pem
Adding debian:Symantec_Class_1_Public_Primary_Certification_Authority_-_G4.pem
Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem
Adding debian:DigiCert_Global_Root_CA.pem
Adding debian:QuoVadis_Root_CA_1_G3.pem
Adding debian:Swisscom_Root_CA_2.pem
Adding debian:SwissSign_Silver_CA_-_G2.pem
Adding debian:SwissSign_Gold_CA_-_G2.pem
Adding debian:thawte_Primary_Root_CA.pem
Adding debian:Camerfirma_Chambers_of_Commerce_Root.pem
Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem
Adding debian:USERTrust_ECC_Certification_Authority.pem
Adding debian:AC_RAIZ_FNMT-RCM.pem
Adding debian:Comodo_AAA_Services_root.pem
Adding debian:AddTrust_Low-Value_Services_Root.pem
Adding debian:ComSign_CA.pem
Adding debian:Entrust_Root_Certification_Authority.pem
Adding debian:GeoTrust_Global_CA.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem
Adding debian:Taiwan_GRCA.pem
Adding debian:Amazon_Root_CA_3.pem
Adding debian:E-Tugra_Certification_Authority.pem
Adding debian:Certplus_Root_CA_G1.pem
Adding debian:Certum_Trusted_Network_CA_2.pem
Adding debian:COMODO_Certification_Authority.pem
Adding debian:Amazon_Root_CA_4.pem
Adding debian:Certinomis_-_Root_CA.pem
Adding debian:COMODO_RSA_Certification_Authority.pem
Adding debian:TrustCor_RootCert_CA-1.pem
Adding debian:AffirmTrust_Premium.pem
Adding debian:T-TeleSec_GlobalRoot_Class_3.pem
Adding debian:TWCA_Root_Certification_Authority.pem
Adding debian:Deutsche_Telekom_Root_CA_2.pem
Adding debian:Izenpe.com.pem
Adding debian:D-TRUST_Root_CA_3_2013.pem
Adding debian:ePKI_Root_Certification_Authority.pem
Adding debian:TWCA_Global_Root_CA.pem
Adding debian:Chambers_of_Commerce_Root_-_2008.pem
Adding debian:GeoTrust_Primary_Certification_Authority.pem
Adding debian:Cybertrust_Global_Root.pem
Adding debian:Amazon_Root_CA_2.pem
Adding debian:Visa_eCommerce_Root.pem
Adding debian:TrustCor_RootCert_CA-2.pem
Adding debian:Entrust_Root_Certification_Authority_-_G2.pem
Adding debian:CFCA_EV_ROOT.pem
Adding debian:GlobalSign_Root_CA_-_R2.pem
Adding debian:Starfield_Class_2_CA.pem
Adding debian:OISTE_WISeKey_Global_Root_GA_CA.pem
Adding debian:TC_TrustCenter_Class_3_CA_II.pem
Adding debian:TrustCor_ECA-1.pem
Adding debian:Certplus_Class_2_Primary_CA.pem
Adding debian:thawte_Primary_Root_CA_-_G3.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
Adding debian:Go_Daddy_Class_2_CA.pem
Adding debian:GlobalSign_Root_CA_-_R3.pem
Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem
Adding debian:GeoTrust_Primary_Certification_Authority_-_G2.pem
Adding debian:Security_Communication_Root_CA.pem
Adding debian:DigiCert_Assured_ID_Root_G2.pem
Adding debian:Buypass_Class_2_Root_CA.pem
Adding debian:ACCVRAIZ1.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem
Adding debian:S-TRUST_Universal_Root_CA.pem
Adding debian:QuoVadis_Root_CA_2_G3.pem
Adding debian:QuoVadis_Root_CA_2.pem
Adding debian:GDCA_TrustAUTH_R5_ROOT.pem
Adding debian:SZAFIR_ROOT_CA2.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem
Adding debian:Hongkong_Post_Root_CA_1.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
Adding debian:Global_Chambersign_Root_-_2008.pem
Adding debian:Baltimore_CyberTrust_Root.pem
Adding debian:Microsec_e-Szigno_Root_CA_2009.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
Adding debian:SSL.com_Root_Certification_Authority_RSA.pem
Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem
Adding debian:VeriSign_Universal_Root_Certification_Authority.pem
Adding debian:SecureSign_RootCA11.pem
Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
Adding debian:COMODO_ECC_Certification_Authority.pem
Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem
Adding debian:Amazon_Root_CA_1.pem
Adding debian:DigiCert_Global_Root_G2.pem
Adding debian:VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem
Adding debian:XRamp_Global_CA_Root.pem
Adding debian:DigiCert_Global_Root_G3.pem
Adding debian:AffirmTrust_Networking.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem
Adding debian:ISRG_Root_X1.pem
Adding debian:DigiCert_Assured_ID_Root_CA.pem
Adding debian:QuoVadis_Root_CA_3.pem
Adding debian:GeoTrust_Universal_CA.pem
Adding debian:QuoVadis_Root_CA_3_G3.pem
Adding debian:Symantec_Class_2_Public_Primary_Certification_Authority_-_G4.pem
Adding debian:DigiCert_Assured_ID_Root_G3.pem
done.
Setting up ant (1.9.9-1+deb9u1) ...
Setting up default-jre-headless (2:1.8-58+deb9u1) ...
Setting up ant-optional (1.9.9-1+deb9u1) ...
Processing triggers for libc-bin (2.24-11+deb9u4) ...
Processing triggers for ca-certificates (20161130+nmu1+deb9u1) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
done.
Removing intermediate container fbb4a7cf33ce
---> 8857ca050ec3
Step 10/11 : RUN chmod +x /usr/local/bin/wait-for-it.sh && ln -s /app/psh.phar /bin/psh
---> Running in 070ce9e79a51
Removing intermediate container 070ce9e79a51
---> 30168186a53a
Step 11/11 : WORKDIR /var/www/shopware
---> Running in d58b18daee69
Removing intermediate container d58b18daee69
---> 64ab1249913c
Successfully built 64ab1249913c
Successfully tagged shopware-test_app_server:latest
Creating network "shopware-test_default" with the default driver
Creating shopware-test_app_redis_1  ... done
Creating shopware-test_app_mysql_1 ... done
Creating shopware-test_app_es_1
... done
Creating shopware-test_app_server_1 ... done
(4/6) Starting
> wait
(5/6) Starting
> echo "All containers started successfully"
All containers started successfully
(6/6) Starting
> echo "Web server IP: http://localhost:8083"
Web server IP: http://localhost:8083
Duration: 1m 10s
All commands successfully executed!
$ ./psh.phar docker:ssh
###################
Starting Execution of 'docker:ssh' ('dev-ops/docker/actions/ssh.sh')
(1/1) Starting
> docker exec -i -u 1000:1004 -t 9563666a2df113260d2684af4c8220a91aa8f886fb49ab50e2d25aff654b8f3c bash
application@9563666a2df1:/var/www/shopware$ ./psh.phar init
###################
Starting Execution of 'init' ('dev-ops/common/actions/init.sh')
(1/2) Starting
> rm -rf ./shopware
(2/2) Starting
> ./sw.phar install:release -r latest -i ./shopware --db-host mysql --db-user app --db-password app --db-name shopware --shop-host localhost:8083
Downloading release
PHP Warning:  count(): Parameter must be an array or an object that implements Countable in phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php on line 67
PHP Stack trace:
PHP 1. {main}() /var/www/shopware/sw.phar:0
PHP 2. require() /var/www/shopware/sw.phar:11
PHP 3. ShopwareCli\Application->run() phar:///var/www/shopware/sw.phar/bin/sw:18
PHP 4. ShopwareCli\Application->doRun() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Application.php:122
PHP 5. ShopwareCli\Application->doRun() phar:///var/www/shopware/sw.phar/src/Application.php:65
PHP 6. ShopwareCli\Application->doRunCommand() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Application.php:191
PHP 7. Shopware\Install\Command\ShopwareInstallReleaseCommand->run() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Application.php:846
PHP 8. Shopware\Install\Command\ShopwareInstallReleaseCommand->execute() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Command/Command.php:267
PHP 9. Shopware\Install\Services\Install\Release->installShopware() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Command/ShopwareInstallReleaseCommand.php:116
PHP  10. Shopware\Install\Services\ReleaseDownloader->downloadRelease() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/Install/Release.php:111
PHP  11. Shopware\Install\Services\ReleaseDownloader->downloadFromUpdateApi() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:69
PHP  12. Shopware\Install\Services\ReleaseDownloader->getIndexedReleasesList() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:87
PHP  13. GuzzleHttp\Client->get() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:130
PHP  14. GuzzleHttp\Client->__call() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:130
PHP  15. GuzzleHttp\Client->request() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:87
PHP  16. GuzzleHttp\Client->requestAsync() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:129
PHP  17. GuzzleHttp\Client->transfer() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:123
PHP  18. GuzzleHttp\HandlerStack->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:275
Warning: count(): Parameter must be an array or an object that implements Countable in phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php on line 67
Call Stack:
0.0089
1017336
1. {main}() /var/www/shopware/sw.phar:0
0.0090
1013408
2. require('phar:///var/www/shopware/sw.phar/bin/sw') /var/www/shopware/sw.phar:11
0.0203
2792016
3. ShopwareCli\Application->run() phar:///var/www/shopware/sw.phar/bin/sw:18
0.0222
3002472
4. ShopwareCli\Application->doRun() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Application.php:122
0.0492
4612768
5. ShopwareCli\Application->doRun() phar:///var/www/shopware/sw.phar/src/Application.php:65
0.0493
4612768
6. ShopwareCli\Application->doRunCommand() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Application.php:191
0.0493
4612768
7. Shopware\Install\Command\ShopwareInstallReleaseCommand->run() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Application.php:846
0.0497
4616736
8. Shopware\Install\Command\ShopwareInstallReleaseCommand->execute() phar:///var/www/shopware/sw.phar/vendor/symfony/console/Command/Command.php:267
0.0528
4918192
9. Shopware\Install\Services\Install\Release->installShopware() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Command/ShopwareInstallReleaseCommand.php:116
0.0528
4918192  10. Shopware\Install\Services\ReleaseDownloader->downloadRelease() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/Install/Release.php:111
0.0529
4918248  11. Shopware\Install\Services\ReleaseDownloader->downloadFromUpdateApi() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:69
0.0529
4918248  12. Shopware\Install\Services\ReleaseDownloader->getIndexedReleasesList() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:87
0.0557
5353480  13. GuzzleHttp\Client->get() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:130
0.0557
5353856  14. GuzzleHttp\Client->__call() phar:///var/www/shopware/sw.phar/src/Extensions/Shopware/Install/Services/ReleaseDownloader.php:130
0.0557
5353856  15. GuzzleHttp\Client->request() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:87
0.0558
5357728  16. GuzzleHttp\Client->requestAsync() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:129
0.0568
5474824  17. GuzzleHttp\Client->transfer() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:123
0.0572
5512272  18. GuzzleHttp\HandlerStack->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Client.php:275
0.0573
5528680  19. GuzzleHttp\Middleware::GuzzleHttp\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:55-68}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/HandlerStack.php:67
0.0574
5528680  20. GuzzleHttp\RedirectMiddleware->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:59
0.0574
5529432  21. GuzzleHttp\Middleware::GuzzleHttp\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:28-42}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php:68
0.0574
5529432  22. GuzzleHttp\PrepareBodyMiddleware->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:30
0.0574
5529432  23. GuzzleHttp\Handler\Proxy::GuzzleHttp\Handler\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:49-53}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php:42
0.0574
5529432  24. GuzzleHttp\Handler\Proxy::GuzzleHttp\Handler\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:25-29}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:51
0.0574
5529432  25. GuzzleHttp\Handler\CurlHandler->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:28
0.3460
5584944  26. GuzzleHttp\Handler\CurlFactory::finish() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php:43
0.3460
5584944  27. GuzzleHttp\Handler\CurlFactory->release() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php:107
0.3460
5584944  28. count() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php:67
PHP  19. GuzzleHttp\Middleware::GuzzleHttp\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:55-68}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/HandlerStack.php:67
PHP  20. GuzzleHttp\RedirectMiddleware->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:59
PHP  21. GuzzleHttp\Middleware::GuzzleHttp\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:28-42}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php:68
PHP  22. GuzzleHttp\PrepareBodyMiddleware->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Middleware.php:30
PHP  23. GuzzleHttp\Handler\Proxy::GuzzleHttp\Handler\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:49-53}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php:42
PHP  24. GuzzleHttp\Handler\Proxy::GuzzleHttp\Handler\{closure:phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:25-29}() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:51
PHP  25. GuzzleHttp\Handler\CurlHandler->__invoke() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php:28
PHP  26. GuzzleHttp\Handler\CurlFactory::finish() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php:43
PHP  27. GuzzleHttp\Handler\CurlFactory->release() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php:107
PHP  28. count() phar:///var/www/shopware/sw.phar/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php:67
0/44107 [>---------------------------] 0%
513/44107 [>---------------------------] 1%
1026/44107 [>---------------------------] 2%
...
43520/44107 [===========================>]  98%
44036/44107 [===========================>]  99%
Download finished
44107/44107 [============================] 100%Unzipping archive
Creating database shopware
Writing config.php
=== Import Database ===
0/2406 [>---------------------------] 0%
...
2406/2406 [============================] 100%
=== Import Snippets ===
0/1593 [>---------------------------] 0%
...
1593/1593 [============================] 100%
Running post release scripts
Themes initialized
Running license import
Successfully refreshed
Successfully refreshed
Plugin by name "SwagLicense" was not found.
Skipping license import: Command failed. Error Output:
Clearing the cache
Clearing caches
Install completed
Duration: 37s
All commands successfully executed!

If I look at the logs, they say this:

$ docker-compose logs -f
Mysql
app_mysql_1   | Initializing database
app_mysql_1   | 2019-09-21T13:48:39.090078Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 50000)
app_mysql_1   | 2019-09-21T13:48:39.090265Z 0 [Warning] Changed limits: max_connections: 214 (requested 10000)
app_mysql_1   | 2019-09-21T13:48:39.090777Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2019-09-21T13:48:39.100247Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   |  100 200 300 400 500
app_mysql_1   |  100 200 300 400 500
app_mysql_1   | 2019-09-21T13:48:41.966079Z 0 [Warning] InnoDB: New log files created, LSN=45790
app_mysql_1   | 2019-09-21T13:48:42.361385Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
app_mysql_1   | 2019-09-21T13:48:42.426872Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 86057a9e-dc76-11e9-89ce-0242ac1a0002.
app_mysql_1   | 2019-09-21T13:48:42.435764Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
app_mysql_1   | 2019-09-21T13:48:42.436390Z 1 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
app_mysql_1   | Database initialized
app_mysql_1   | Initializing certificates
app_mysql_1   | Generating a RSA private key
app_mysql_1   | ..........................+++++
app_mysql_1   | ......+++++
app_mysql_1   | unable to write 'random state'
app_mysql_1   | writing new private key to 'ca-key.pem'
app_mysql_1   | -----
app_mysql_1   | Generating a RSA private key
app_mysql_1   | ............................+++++
app_mysql_1   | ...........................+++++
app_mysql_1   | unable to write 'random state'
app_mysql_1   | writing new private key to 'server-key.pem'
app_mysql_1   | -----
app_mysql_1   | Generating a RSA private key
app_mysql_1   | ..................................................................................................................+++++
app_mysql_1   | .............................................+++++
app_mysql_1   | unable to write 'random state'
app_mysql_1   | writing new private key to 'client-key.pem'
app_mysql_1   | -----
app_mysql_1   | Certificates initialized
app_mysql_1   | MySQL init process in progress...
app_mysql_1   | 2019-09-21T13:48:49.135698Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 50000)
app_mysql_1   | 2019-09-21T13:48:49.135754Z 0 [Warning] Changed limits: max_connections: 214 (requested 10000)
app_mysql_1   | 2019-09-21T13:48:49.295231Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2019-09-21T13:48:49.296565Z 0 [Note] mysqld (mysqld 5.7.27) starting as process 95 ...
app_mysql_1   | 2019-09-21T13:48:49.298981Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   | 2019-09-21T13:48:49.299033Z 0 [Note] InnoDB: PUNCH HOLE support available
app_mysql_1   | 2019-09-21T13:48:49.299040Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
app_mysql_1   | 2019-09-21T13:48:49.299043Z 0 [Note] InnoDB: Uses event mutexes
app_mysql_1   | 2019-09-21T13:48:49.299046Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
app_mysql_1   | 2019-09-21T13:48:49.299048Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
app_mysql_1   | 2019-09-21T13:48:49.299051Z 0 [Note] InnoDB: Using Linux native AIO
app_mysql_1   | 2019-09-21T13:48:49.299260Z 0 [Note] InnoDB: Number of pools: 1
app_mysql_1   | 2019-09-21T13:48:49.299347Z 0 [Note] InnoDB: Using CPU crc32 instructions
app_mysql_1   | 2019-09-21T13:48:49.302145Z 0 [Note] InnoDB: Initializing buffer pool, total size = 2G, instances = 8, chunk size = 128M
app_mysql_1   | 2019-09-21T13:48:49.399788Z 0 [Note] InnoDB: Completed initialization of buffer pool
app_mysql_1   | 2019-09-21T13:48:49.421894Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
app_mysql_1   | 2019-09-21T13:48:49.438757Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
app_mysql_1   | 2019-09-21T13:48:49.513863Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
app_mysql_1   | 2019-09-21T13:48:49.513923Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
app_mysql_1   | 2019-09-21T13:48:49.543173Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
app_mysql_1   | 2019-09-21T13:48:49.545277Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
app_mysql_1   | 2019-09-21T13:48:49.545302Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
app_mysql_1   | 2019-09-21T13:48:49.546190Z 0 [Note] InnoDB: Waiting for purge to start
app_mysql_1   | 2019-09-21T13:48:49.599321Z 0 [Note] InnoDB: 5.7.27 started; log sequence number 2625879
app_mysql_1   | 2019-09-21T13:48:49.599717Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2019-09-21T13:48:49.600106Z 0 [Note] Plugin 'FEDERATED' is disabled.
app_mysql_1   | 2019-09-21T13:48:49.623104Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
app_mysql_1   | 2019-09-21T13:48:49.625081Z 0 [Warning] CA certificate ca.pem is self signed.
app_mysql_1   | 2019-09-21T13:48:49.626027Z 0 [Note] InnoDB: Buffer pool(s) load completed at 190921 13:48:49
app_mysql_1   | 2019-09-21T13:48:49.641997Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
app_mysql_1   | 2019-09-21T13:48:49.671133Z 0 [Note] Event Scheduler: Loaded 0 events
app_mysql_1   | 2019-09-21T13:48:49.671463Z 0 [Note] mysqld: ready for connections.
app_mysql_1   | Version: '5.7.27'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  MySQL Community Server (GPL)
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it.
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it.
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it.
app_mysql_1   | Warning: Unable to load '/usr/share/zoneinfo/zone1970.tab' as time zone. Skipping it.
app_mysql_1   | mysql: [Warning] Using a password on the command line interface can be insecure.
app_mysql_1   | mysql: [Warning] Using a password on the command line interface can be insecure.
app_mysql_1   |
app_mysql_1   | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/grant.sql
app_mysql_1   | mysql: [Warning] Using a password on the command line interface can be insecure.
app_mysql_1   |
app_mysql_1   | 2019-09-21T13:48:51.878905Z 0 [Note] Giving 0 client threads a chance to die gracefully
app_mysql_1   | 2019-09-21T13:48:51.878919Z 0 [Note] Shutting down slave threads
app_mysql_1   | 2019-09-21T13:48:51.878922Z 0 [Note] Forcefully disconnecting 0 remaining clients
app_mysql_1   | 2019-09-21T13:48:51.878926Z 0 [Note] Event Scheduler: Purging the queue. 0 events
app_mysql_1   | 2019-09-21T13:48:51.879379Z 0 [Note] Binlog end
app_mysql_1   | 2019-09-21T13:48:51.879637Z 0 [Note] Shutting down plugin 'ngram'
app_mysql_1   | 2019-09-21T13:48:51.879642Z 0 [Note] Shutting down plugin 'partition'
app_mysql_1   | 2019-09-21T13:48:51.879645Z 0 [Note] Shutting down plugin 'BLACKHOLE'
app_mysql_1   | 2019-09-21T13:48:51.879647Z 0 [Note] Shutting down plugin 'ARCHIVE'
app_mysql_1   | 2019-09-21T13:48:51.879649Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
app_mysql_1   | 2019-09-21T13:48:51.879665Z 0 [Note] Shutting down plugin 'MRG_MYISAM'
app_mysql_1   | 2019-09-21T13:48:51.879667Z 0 [Note] Shutting down plugin 'MyISAM'
app_mysql_1   | 2019-09-21T13:48:51.879672Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL'
app_mysql_1   | 2019-09-21T13:48:51.879674Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
app_mysql_1   | 2019-09-21T13:48:51.879676Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
app_mysql_1   | 2019-09-21T13:48:51.879677Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
app_mysql_1   | 2019-09-21T13:48:51.879679Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
app_mysql_1   | 2019-09-21T13:48:51.879681Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
app_mysql_1   | 2019-09-21T13:48:51.879682Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
app_mysql_1   | 2019-09-21T13:48:51.879684Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
app_mysql_1   | 2019-09-21T13:48:51.879685Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
app_mysql_1   | 2019-09-21T13:48:51.879687Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
app_mysql_1   | 2019-09-21T13:48:51.879688Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
app_mysql_1   | 2019-09-21T13:48:51.879690Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
app_mysql_1   | 2019-09-21T13:48:51.879692Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
app_mysql_1   | 2019-09-21T13:48:51.879693Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
app_mysql_1   | 2019-09-21T13:48:51.879695Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED'
app_mysql_1   | 2019-09-21T13:48:51.879696Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
app_mysql_1   | 2019-09-21T13:48:51.879698Z 0 [Note] Shutting down plugin 'INNODB_METRICS'
app_mysql_1   | 2019-09-21T13:48:51.879699Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO'
app_mysql_1   | 2019-09-21T13:48:51.879701Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
app_mysql_1   | 2019-09-21T13:48:51.879703Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
app_mysql_1   | 2019-09-21T13:48:51.879704Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
app_mysql_1   | 2019-09-21T13:48:51.879706Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
app_mysql_1   | 2019-09-21T13:48:51.879708Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
app_mysql_1   | 2019-09-21T13:48:51.879709Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
app_mysql_1   | 2019-09-21T13:48:51.879711Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM'
app_mysql_1   | 2019-09-21T13:48:51.879713Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET'
app_mysql_1   | 2019-09-21T13:48:51.879714Z 0 [Note] Shutting down plugin 'INNODB_CMP'
app_mysql_1   | 2019-09-21T13:48:51.879716Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
app_mysql_1   | 2019-09-21T13:48:51.879717Z 0 [Note] Shutting down plugin 'INNODB_LOCKS'
app_mysql_1   | 2019-09-21T13:48:51.879719Z 0 [Note] Shutting down plugin 'INNODB_TRX'
app_mysql_1   | 2019-09-21T13:48:51.879721Z 0 [Note] Shutting down plugin 'InnoDB'
app_mysql_1   | 2019-09-21T13:48:51.879779Z 0 [Note] InnoDB: FTS optimize thread exiting.
app_mysql_1   | 2019-09-21T13:48:51.879865Z 0 [Note] InnoDB: Starting shutdown...
app_mysql_1   | 2019-09-21T13:48:51.980080Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2019-09-21T13:48:51.980297Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 190921 13:48:51
app_mysql_1   | 2019-09-21T13:48:53.535553Z 0 [Note] InnoDB: Shutdown completed; log sequence number 12434490
app_mysql_1   | 2019-09-21T13:48:53.535627Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
app_mysql_1   | 2019-09-21T13:48:53.535638Z 0 [Note] Shutting down plugin 'MEMORY'
app_mysql_1   | 2019-09-21T13:48:53.535643Z 0 [Note] Shutting down plugin 'CSV'
app_mysql_1   | 2019-09-21T13:48:53.535647Z 0 [Note] Shutting down plugin 'sha256_password'
app_mysql_1   | 2019-09-21T13:48:53.535649Z 0 [Note] Shutting down plugin 'mysql_native_password'
app_mysql_1   | 2019-09-21T13:48:53.535751Z 0 [Note] Shutting down plugin 'binlog'
app_mysql_1   | 2019-09-21T13:48:53.535980Z 0 [Note] mysqld: Shutdown complete
app_mysql_1   |
app_mysql_1   |
app_mysql_1   | MySQL init process done. Ready for start up.
app_mysql_1   |
app_mysql_1   | 2019-09-21T13:48:53.594493Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 50000)
app_mysql_1   | 2019-09-21T13:48:53.594546Z 0 [Warning] Changed limits: max_connections: 214 (requested 10000)
app_mysql_1   | 2019-09-21T13:48:53.743421Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
app_mysql_1   | 2019-09-21T13:48:53.744759Z 0 [Note] mysqld (mysqld 5.7.27) starting as process 1 ...
app_mysql_1   | 2019-09-21T13:48:53.747122Z 0 [Warning] InnoDB: Setting innodb_checksums to OFF is DEPRECATED. This option may be removed in future releases. You should set innodb_checksum_algorithm=NONE instead.
app_mysql_1   | 2019-09-21T13:48:53.747168Z 0 [Note] InnoDB: PUNCH HOLE support available
app_mysql_1   | 2019-09-21T13:48:53.747175Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
app_mysql_1   | 2019-09-21T13:48:53.747178Z 0 [Note] InnoDB: Uses event mutexes
app_mysql_1   | 2019-09-21T13:48:53.747180Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
app_mysql_1   | 2019-09-21T13:48:53.747182Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
app_mysql_1   | 2019-09-21T13:48:53.747185Z 0 [Note] InnoDB: Using Linux native AIO
app_mysql_1   | 2019-09-21T13:48:53.747393Z 0 [Note] InnoDB: Number of pools: 1
app_mysql_1   | 2019-09-21T13:48:53.747482Z 0 [Note] InnoDB: Using CPU crc32 instructions
app_mysql_1   | 2019-09-21T13:48:53.749766Z 0 [Note] InnoDB: Initializing buffer pool, total size = 2G, instances = 8, chunk size = 128M
app_mysql_1   | 2019-09-21T13:48:53.848422Z 0 [Note] InnoDB: Completed initialization of buffer pool
app_mysql_1   | 2019-09-21T13:48:53.870460Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
app_mysql_1   | 2019-09-21T13:48:53.886828Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
app_mysql_1   | 2019-09-21T13:48:53.961716Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
app_mysql_1   | 2019-09-21T13:48:53.961783Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
app_mysql_1   | 2019-09-21T13:48:53.991515Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
app_mysql_1   | 2019-09-21T13:48:53.993631Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
app_mysql_1   | 2019-09-21T13:48:53.993658Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
app_mysql_1   | 2019-09-21T13:48:53.994584Z 0 [Note] InnoDB: Waiting for purge to start
app_mysql_1   | 2019-09-21T13:48:54.047343Z 0 [Note] InnoDB: 5.7.27 started; log sequence number 12434490
app_mysql_1   | 2019-09-21T13:48:54.047503Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
app_mysql_1   | 2019-09-21T13:48:54.047616Z 0 [Note] Plugin 'FEDERATED' is disabled.
app_mysql_1   | 2019-09-21T13:48:54.053834Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
app_mysql_1   | 2019-09-21T13:48:54.054035Z 0 [Warning] CA certificate ca.pem is self signed.
app_mysql_1   | 2019-09-21T13:48:54.056005Z 0 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
app_mysql_1   | 2019-09-21T13:48:54.056035Z 0 [Note]   - '0.0.0.0' resolves to '0.0.0.0';
app_mysql_1   | 2019-09-21T13:48:54.056053Z 0 [Note] Server socket created on IP: '0.0.0.0'.
app_mysql_1   | 2019-09-21T13:48:54.058586Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
app_mysql_1   | 2019-09-21T13:48:54.072543Z 0 [Note] InnoDB: Buffer pool(s) load completed at 190921 13:48:54
app_mysql_1   | 2019-09-21T13:48:54.074542Z 0 [Note] Event Scheduler: Loaded 0 events
app_mysql_1   | 2019-09-21T13:48:54.074658Z 0 [Note] mysqld: ready for connections.
app_mysql_1   | Version: '5.7.27'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server (GPL)
Redis
app_redis_1   | 1:C 21 Sep 13:48:39.755 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
app_redis_1   | 1:C 21 Sep 13:48:39.756 # Redis version=4.0.12, bits=64, commit=00000000, modified=0, pid=1, just started
app_redis_1   | 1:C 21 Sep 13:48:39.756 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
app_redis_1   | 1:M 21 Sep 13:48:39.757 # You requested maxclients of 10000 requiring at least 10032 max file descriptors.
app_redis_1   | 1:M 21 Sep 13:48:39.757 # Server can't set maximum open files to 10032 because of OS error: Operation not permitted.
app_redis_1   | 1:M 21 Sep 13:48:39.757 # Current maximum open files is 4096. maxclients has been reduced to 4064 to compensate for low ulimit. If you need higher maxclients increase 'ulimit -n'.
app_redis_1   | 1:M 21 Sep 13:48:39.759 * Running mode=standalone, port=6379.
app_redis_1   | 1:M 21 Sep 13:48:39.759 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
app_redis_1   | 1:M 21 Sep 13:48:39.759 # Server initialized
app_redis_1   | 1:M 21 Sep 13:48:39.759 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
app_redis_1   | 1:M 21 Sep 13:48:39.759 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
app_redis_1   | 1:M 21 Sep 13:48:39.759 * Ready to accept connections
App Server
app_server_1  | -> Executing /opt/docker/provision/entrypoint.d/05-permissions.sh
app_server_1  | -> Executing /opt/docker/provision/entrypoint.d/10-php-debugger.sh
app_server_1  | PHP-Debugger: not specified - default is xdebug
app_server_1  |  - Removing PHP module blackfire
app_server_1  | -> Executing /opt/docker/provision/entrypoint.d/20-apache-dev.sh
app_server_1  | -> Executing /opt/docker/provision/entrypoint.d/20-apache.sh
app_server_1  | -> Executing /opt/docker/provision/entrypoint.d/20-php-fpm.sh
app_server_1  | -> Executing /opt/docker/provision/entrypoint.d/20-php.sh
app_server_1  | -> Executing /opt/docker/bin/service.d/supervisor.d//10-init.sh
app_server_1  | 2019-09-21 13:48:43,357 CRIT Set uid to user 0
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/apache.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/blackfire-agent.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/cron.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/dnsmasq.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/php-fpm.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/postfix.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/ssh.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,357 INFO Included extra file "/opt/docker/etc/supervisor.d/syslog.conf" during parsing
app_server_1  | 2019-09-21 13:48:43,368 INFO RPC interface 'supervisor' initialized
app_server_1  | 2019-09-21 13:48:43,368 INFO supervisord started with pid 1
app_server_1  | 2019-09-21 13:48:44,370 INFO spawned: 'syslogd' with pid 80
app_server_1  | 2019-09-21 13:48:44,372 INFO spawned: 'php-fpmd' with pid 81
app_server_1  | 2019-09-21 13:48:44,373 INFO spawned: 'apached' with pid 82
app_server_1  | 2019-09-21 13:48:44,374 INFO spawned: 'crond' with pid 83
app_server_1  | 2019-09-21 13:48:44,375 INFO spawned: 'postfixd' with pid 84
app_server_1  | 2019-09-21 13:48:44,376 INFO spawned: 'sshd' with pid 85
app_server_1  | -> Executing /opt/docker/bin/service.d/syslog-ng.d//10-init.sh
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  | 2019-09-21 13:48:44,400 INFO success: php-fpmd entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | 2019-09-21 13:48:44,400 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | 2019-09-21 13:48:44,400 INFO success: crond entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | 2019-09-21 13:48:44,400 INFO success: postfixd entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | 2019-09-21 13:48:44,400 INFO success: sshd entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | -> Executing /opt/docker/bin/service.d/php-fpm.d//10-init.sh
app_server_1  | -> Executing /opt/docker/bin/service.d/cron.d//10-init.sh
app_server_1  | -> Executing /opt/docker/bin/service.d/ssh.d//10-init.sh
app_server_1  | -> Executing /opt/docker/bin/service.d/postfix.d//10-init.sh
app_server_1  | Setting php-fpm user to application
app_server_1  |
app_server_1  | [WARNING] WEB_DOCUMENT_ROOT does not exists with path "/var/www/shopware/shopware"!
app_server_1  |
app_server_1  | Error: No files specified
app_server_1  | Command: go-replace --mode=line --regex -s ^[\s]*myhostname[\s]*=.* -r myhostname = 9563666a2df1
app_server_1  | ssh-keygen: generating new host keys: DSA
app_server_1  | AH00526: Syntax error on line 6 of /opt/docker/etc/httpd/conf.d/10-server.conf:
app_server_1  | DocumentRoot '/var/www/shopware/shopware' is not a directory, or is not readable
app_server_1  | 2019-09-21 13:48:45,303 INFO exited: apached (exit status 1; not expected)
app_server_1  | 2019-09-21 13:48:45,594 INFO success: syslogd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
app_server_1  | 2019-09-21 13:48:45,596 INFO spawned: 'apached' with pid 125
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  | 2019-09-21 13:48:45,606 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  |
app_server_1  | [WARNING] WEB_DOCUMENT_ROOT does not exists with path "/var/www/shopware/shopware"!
app_server_1  |
app_server_1  | [21-Sep-2019 13:48:45] NOTICE: fpm is running, pid 81
app_server_1  | [21-Sep-2019 13:48:45] NOTICE: ready to handle connections
app_server_1  | AH00526: Syntax error on line 6 of /opt/docker/etc/httpd/conf.d/10-server.conf:
app_server_1  | DocumentRoot '/var/www/shopware/shopware' is not a directory, or is not readable
app_server_1  | 2019-09-21 13:48:45,649 INFO exited: apached (exit status 1; not expected)
app_server_1  | 2019-09-21 13:48:46,652 INFO spawned: 'apached' with pid 146
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  | 2019-09-21 13:48:46,664 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  |
app_server_1  | [WARNING] WEB_DOCUMENT_ROOT does not exists with path "/var/www/shopware/shopware"!
app_server_1  |
app_server_1  | AH00526: Syntax error on line 6 of /opt/docker/etc/httpd/conf.d/10-server.conf:
app_server_1  | DocumentRoot '/var/www/shopware/shopware' is not a directory, or is not readable
app_server_1  | 2019-09-21 13:48:46,707 INFO exited: apached (exit status 1; not expected)
app_server_1  | 2019-09-21 13:48:47,711 INFO spawned: 'apached' with pid 231
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  |
app_server_1  | [WARNING] WEB_DOCUMENT_ROOT does not exists with path "/var/www/shopware/shopware"!
app_server_1  | 2019-09-21 13:48:47,719 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | at sun.nio.fs.UnixException.translateToIOException(UnixException.java:84) ~[?:?]
app_server_1  | AH00526: Syntax error on line 6 of /opt/docker/etc/httpd/conf.d/10-server.conf: at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102) ~[?:?]
app_server_1  | DocumentRoot '/var/www/shopware/shopware' is not a directory, or is not readable at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107) ~[?:?]
app_server_1  | 2019-09-21 13:48:47,758 INFO exited: apached (exit status 1; not expected) at sun.nio.fs.UnixFileSystemProvider.createDirectory(UnixFileSystemProvider.java:384) ~[?:?]
app_server_1  | 2019-09-21 13:48:48,760 INFO spawned: 'apached' with pid 233 at java.nio.file.Files.createDirectory(Files.java:674) ~[?:1.8.0_141]
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh at java.nio.file.Files.createAndCheckIsDirectory(Files.java:781) ~[?:1.8.0_141]
app_server_1  | at java.nio.file.Files.createDirectories(Files.java:767) ~[?:1.8.0_141]
app_server_1  | 2019-09-21 13:48:48,765 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | [WARNING] WEB_DOCUMENT_ROOT does not exists with path "/var/www/shopware/shopware"!
app_server_1  |
app_server_1  | AH00526: Syntax error on line 6 of /opt/docker/etc/httpd/conf.d/10-server.conf:
app_server_1  | DocumentRoot '/var/www/shopware/shopware' is not a directory, or is not readable
app_server_1  | 2019-09-21 13:48:48,801 INFO exited: apached (exit status 1; not expected)
app_server_1  | 2019-09-21 13:48:49,805 INFO spawned: 'apached' with pid 235
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  |
app_server_1  | 2019-09-21 13:48:49,814 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | [WARNING] WEB_DOCUMENT_ROOT does not exists with path "/var/www/shopware/shopware"!
app_server_1  |

Ok, this error above seems pretty normal since ./psh.phar init has not installed shopware yet... Let's wait until it's installed:

app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  | 2019-09-21 14:06:36,513 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | (13)Permission denied: AH00091: apache2: could not open error log file /docker.stderr.
app_server_1  | AH00015: Unable to open logs
app_server_1  | 2019-09-21 14:06:36,549 INFO exited: apached (exit status 1; not expected)
app_server_1  | 2019-09-21 14:06:37,553 INFO spawned: 'apached' with pid 2993
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  | 2019-09-21 14:06:37,562 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | (13)Permission denied: AH00091: apache2: could not open error log file /docker.stderr.
app_server_1  | AH00015: Unable to open logs
app_server_1  | 2019-09-21 14:06:37,599 INFO exited: apached (exit status 1; not expected)
app_server_1  | 2019-09-21 14:06:38,602 INFO spawned: 'apached' with pid 2995
app_server_1  | -> Executing /opt/docker/bin/service.d/httpd.d//10-init.sh
app_server_1  | 2019-09-21 14:06:38,611 INFO success: apached entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
app_server_1  | (13)Permission denied: AH00091: apache2: could not open error log file /docker.stderr.
app_server_1  | AH00015: Unable to open logs
app_server_1  | 2019-09-21 14:06:38,650 INFO exited: apached (exit status 1; not expected)
app_server_1  | 2019-09-21 14:06:39,653 INFO spawned: 'apached' with pid 2997
...
this repeats forever
Elastic Search
app_es_1      | [2019-09-21T13:48:44,309][INFO ][o.e.n.Node] [] initializing ...
app_es_1      | [2019-09-21T13:48:44,331][WARN ][o.e.b.ElasticsearchUncaughtExceptionHandler] [] uncaught exception in thread [main]
app_es_1      | org.elasticsearch.bootstrap.StartupException: java.lang.IllegalStateException: Failed to create node environment
app_es_1      | at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:127) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:114) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:67) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:122) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.cli.Command.main(Command.java:88) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:91) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:84) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | Caused by: java.lang.IllegalStateException: Failed to create node environment
app_es_1      | at org.elasticsearch.node.Node.<init>(Node.java:267) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.node.Node.<init>(Node.java:244) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Bootstrap$5.<init>(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:351) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:123) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      |
app_es_1      | Caused by: java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes
app_es_1      |
app_es_1      | at org.elasticsearch.env.NodeEnvironment.<init>(NodeEnvironment.java:221) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.node.Node.<init>(Node.java:264) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.node.Node.<init>(Node.java:244) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Bootstrap$5.<init>(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:232) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:351) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:123) ~[elasticsearch-5.5.2.jar:5.5.2]
app_es_1      | ... 6 more
shopware-test_app_es_1 exited with code 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.