wodby / docker4drupal

Docker-based Drupal stack
https://wodby.com/docker4drupal
MIT License
1.23k stars 533 forks source link

Version 2.4 - Drupal 6 - Cannot start traefik #415

Open vietlubu opened 4 years ago

vietlubu commented 4 years ago

Codebase Mounted codebase

Describe your issue Got error message when run docker-compose up docker-compose up

traefik_1    | 2020/01/18 06:43:21 command traefik error: failed to decode configuration from flags: field not found, node: c

I try to run only traefik docker-compose up traefik

Starting drupalexport_traefik_1 ... done
Attaching to drupalexport_traefik_1
traefik_1    | 2020/01/18 06:39:37 command traefik error: failed to decode configuration from flags: field not found, node: c
drupalexport_traefik_1 exited with code 1

Output of docker info MacOS 10.14.6

Client:
 Debug Mode: false

Server:
 Containers: 17
  Running: 1
  Paused: 0
  Stopped: 16
 Images: 26
 Server Version: 19.03.5
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
 runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
 init version: fec3683
 Security Options:
  seccomp
   Profile: default
 Kernel Version: 4.9.184-linuxkit
 Operating System: Docker Desktop
 OSType: linux
 Architecture: x86_64
 CPUs: 2
 Total Memory: 1.952GiB
 Name: docker-desktop
 ID: 5C7I:MF4F:UIUO:UKKO:66BP:3SMV:4ANS:MUKA:AFOO:HJQB:ROUF:4CZO
 Docker Root Dir: /var/lib/docker
 Debug Mode: true
  File Descriptors: 31
  Goroutines: 47
  System Time: 2020-01-18T06:46:21.2855766Z
  EventsListeners: 2
 HTTP Proxy: gateway.docker.internal:3128
 HTTPS Proxy: gateway.docker.internal:3129
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false
 Product License: Community Engine

Contents of your docker-compose.yml

version: "2"

services:
  mariadb:
    image: wodby/mariadb:10.1-2.3.5
    environment:
      MYSQL_ROOT_PASSWORD: password
      MYSQL_DATABASE: drupal
      MYSQL_USER: drupal
      MYSQL_PASSWORD: drupal
#    volumes:
#      - ./mariadb-init:/docker-entrypoint-initdb.d # Place init .sql file(s) here.
#      - /path/to/mariadb/data/on/host:/var/lib/mysql # I want to manage volumes manually.

  php:
# 1. Images with vanilla Drupal – wodby/drupal:[DRUPAL_VERSION]-[PHP_VERSION]-[STABILITY_TAG].
    # image: wodby/drupal:8-7.1-3.0.0
#    image: wodby/drupal:8-7.0-3.0.0
#    image: wodby/drupal:7-7.1-3.0.0
#    image: wodby/drupal:7-7.0-3.0.0
#    image: wodby/drupal:7-5.6-3.0.0
#    image: wodby/drupal:6-5.6-3.0.0
   # image: wodby/drupal:6-5.3-3.0.0
# 2. Images without Drupal – wodby/drupal-php:[PHP_VERSION]-[STABILITY_TAG].
#    image: wodby/drupal-php:7.1-3.0.0
#    image: wodby/drupal-php:7.0-3.0.0
   # image: wodby/drupal-php:5.6-3.0.0
    image: wodby/drupal-php:5.3-3.0.0
    environment:
      PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S mailhog:1025
      PHP_FPM_CLEAR_ENV: "no"
      DB_HOST: mariadb
      DB_USER: drupal
      DB_PASSWORD: drupal
      DB_NAME: drupal
      DB_DRIVER: mysql
#      PHP_XDEBUG: 1
#      PHP_XDEBUG_DEFAULT_ENABLE: 1
#      PHP_XDEBUG_REMOTE_CONNECT_BACK: 0
#      PHP_XDEBUG_REMOTE_HOST: "10.254.254.254"
#      PHP_XDEBUG_PROFILER_OUTPUT_DIR: /mnt/files/xdebug/profiler
#      PHP_XDEBUG_TRACE_OUTPUT_DIR: /mnt/files/xdebug/traces
    volumes:
      - ./:/var/www/html
## Options for macOS users (https://docker4drupal.readthedocs.io/en/latest/macos)
#      - codebase:/var/www/html:cached # User-guided caching
#      - docker-sync:/var/www/html # Docker-sync
## For Xdebug profiler files
#      - files:/mnt/files

  nginx:
# wodby/drupal-nginx:[DRUPAL_VERSION]-[NGINX_VERSION]-[STABILITY_TAG].
    # image: wodby/drupal-nginx:8-1.13-3.0.1
#    image: wodby/drupal-nginx:7-1.13-3.0.1
   # image: wodby/drupal-nginx:6-1.13-3.0.1
#    image: wodby/drupal-nginx:8-1.12-3.0.1
#    image: wodby/drupal-nginx:7-1.12-3.0.1
    image: wodby/drupal-nginx:6-1.12-3.0.1
    depends_on:
      - php
    environment:
      NGINX_STATIC_CONTENT_OPEN_FILE_CACHE: "off"
      NGINX_ERROR_LOG_LEVEL: debug
      NGINX_BACKEND_HOST: php
      NGINX_SERVER_ROOT: /var/www/html
    volumes:
      - ./:/var/www/html
# Options for macOS users (https://docker4drupal.readthedocs.io/en/latest/macos)
#      - codebase:/var/www/html:cached # User-guided caching
#      - docker-sync:/var/www/html # Docker-sync
    labels:
      - 'traefik.backend=nginx'
      - 'traefik.port=80'
      - 'traefik.frontend.rule=Host:drupal.docker.localhost'

#  apache:
#    image: wodby/php-apache:2.4-2.0.0
#    depends_on:
#      - php
#    environment:
#      APACHE_LOG_LEVEL: debug
#      APACHE_BACKEND_HOST: php
#      APACHE_SERVER_ROOT: /var/www/html/web
#    volumes:
#      - codebase:/var/www/html
## Options for macOS users (https://docker4drupal.readthedocs.io/en/latest/macos)
##      - codebase:/var/www/html:cached # User-guided caching
##      - docker-sync:/var/www/html # Docker-sync
#    labels:
#      - 'traefik.backend=apache'
#      - 'traefik.port=80'
#      - 'traefik.frontend.rule=Host:drupal.docker.localhost'

#  varnish:
#    image: wodby/drupal-varnish:4.1-2.2.0
#    depends_on:
#      - nginx
#    environment:
#      VARNISH_SECRET: secret
#      VARNISH_BACKEND_HOST: nginx
#      VARNISH_BACKEND_PORT: 80
#    labels:
#      - 'traefik.backend=varnish'
#      - 'traefik.port=6081'
#      - 'traefik.frontend.rule=Host:varnish.drupal.docker.localhost'

#  redis:
#    image: wodby/redis:3.2-2.1.3
##    image: wodby/redis:4.0-2.1.3

#  adminer:
#    image: wodby/adminer:4.3-1.1.0
#    environment:
#      ADMINER_SALT: adminer-salt
#    labels:
#      - 'traefik.backend=adminer'
#      - 'traefik.port=9000'
#      - 'traefik.frontend.rule=Host:adminer.drupal.docker.localhost'

#  pma:
#    image: phpmyadmin/phpmyadmin
#    environment:
#      PMA_HOST: mariadb
#      PMA_USER: drupal
#      PMA_PASSWORD: drupal
#      PHP_UPLOAD_MAX_FILESIZE: 1G
#      PHP_MAX_INPUT_VARS: 1G
#    labels:
#      - 'traefik.backend=pma'
#      - 'traefik.port=80'
#      - 'traefik.frontend.rule=Host:pma.drupal.docker.localhost'

#  solr:
## wodby/drupal-solr:[DRUPAL_VERSION]-[SOLR_VERSION]-[STABILITY_TAG].
#    image: wodby/drupal-solr:8-6.6-2.2.0
##    image: wodby/drupal-solr:8-6.5-2.2.0
##    image: wodby/drupal-solr:8-6.4-2.2.0
##    image: wodby/drupal-solr:8-6.3-2.2.0
##    image: wodby/drupal-solr:8-5.5-2.2.0
##    image: wodby/drupal-solr:7-5.4-2.2.0
#    environment:
#      SOLR_HEAP: 1024m
#    labels:
#      - 'traefik.backend=solr'
#      - 'traefik.port=8983'
#      - 'traefik.frontend.rule=Host:solr.drupal.docker.localhost'

  mailhog:
    image: mailhog/mailhog
    labels:
      - 'traefik.backend=mailhog'
      - 'traefik.port=8025'
      - 'traefik.frontend.rule=Host:mailhog.drupal.docker.localhost'

#  nodejs:
#    image: wodby/drupal-node:1.0-1.0.0
#    environment:
#       NODE_SERVICE_KEY: node-service-key
#    labels:
#      - 'traefik.backend=nodejs'
#      - 'traefik.port=8080'
#      - 'traefik.frontend.rule=Host:nodejs.drupal.docker.localhost'
#    volumes:
#      - ./path/to/your/single-page-app:/app
#    command: sh -c 'npm install && npm run start'

#  node:
#    image: node:alpine
#    working_dir: /app
#    labels:
#      - 'traefik.backend=node'
#      - 'traefik.port=3000'
#      - 'traefik.frontend.rule=Host:front.drupal.docker.localhost'
#    expose:
#      - "3000"
#    volumes:
#      - ./path/to/your/single-page-app:/app
#    command: sh -c 'npm install && npm run start'

#  memcached:
#    image: wodby/memcached:1.4-2.0.0

#  rsyslog:
#    image: wodby/rsyslog

#  athenapdf:
#    image: arachnysdocker/athenapdf-service:2.10.0
#    environment:
#      WEAVER_AUTH_KEY: weaver-auth-key
#      WEAVER_ATHENA_CMD: "athenapdf -S"
#      WEAVER_MAX_WORKERS: 10
#      WEAVER_MAX_CONVERSION_QUEUE: 50
#      WEAVER_WORKER_TIMEOUT: 90
#      WEAVER_CONVERSION_FALLBACK: false

#  blackfire:
#    image: blackfire/blackfire
#    environment:
#      BLACKFIRE_SERVER_ID: XXXXX
#      BLACKFIRE_SERVER_TOKEN: YYYYY

#  webgrind:
#    image: wodby/webgrind:1.5-1.0.0
#    environment:
#      WEBGRIND_PROFILER_DIR: /mnt/files/xdebug/profiler
#    labels:
#      - 'traefik.backend=webgrind'
#      - 'traefik.port=8080'
#      - 'traefik.frontend.rule=Host:webgrind.drupal.docker.localhost'
#    volumes:
#      - files:/mnt/files

  portainer:
    image: portainer/portainer
    command: --no-auth -H unix:///var/run/docker.sock
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    labels:
      - 'traefik.backend=portainer'
      - 'traefik.port=9000'
      - 'traefik.frontend.rule=Host:portainer.drupal.docker.localhost'

  traefik:
    image: traefik
    command: -c /dev/null --web --docker --logLevel=INFO
    ports:
      - '8000:80'
      - '8080:8080' # Dashboard
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock

volumes:
  codebase:
## Docker-sync for macOS users
#  docker-sync:
#    external: true
## For Xdebug profiler
#  files:

Contents of your .env

Nothing here

Logs output docker-compose logs

Attaching to drupalexport_nginx_1, drupalexport_traefik_1, drupalexport_php_1, drupalexport_mailhog_1, drupalexport_portainer_1, drupalexport_mariadb_1
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: using the "epoll" event method
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: nginx/1.12.1
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: built by gcc 6.3.0 (Alpine 6.3.0) 
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: OS: Linux 4.9.184-linuxkit
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: start worker processes
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: start worker process 25
nginx_1      | 2020/01/18 06:36:42 [notice] 1#1: start worker process 26
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: using the "epoll" event method
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: nginx/1.12.1
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: built by gcc 6.3.0 (Alpine 6.3.0) 
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: OS: Linux 4.9.184-linuxkit
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: start worker processes
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: start worker process 25
nginx_1      | 2020/01/18 06:43:21 [notice] 1#1: start worker process 26
traefik_1    | 2020/01/18 06:35:49 command traefik error: failed to decode configuration from flags: field not found, node: c
traefik_1    | 2020/01/18 06:36:11 command traefik error: failed to decode configuration from flags: field not found, node: c
traefik_1    | 2020/01/18 06:36:42 command traefik error: failed to decode configuration from flags: field not found, node: c
traefik_1    | 2020/01/18 06:39:37 command traefik error: failed to decode configuration from flags: field not found, node: c
traefik_1    | 2020/01/18 06:43:21 command traefik error: failed to decode configuration from flags: field not found, node: c
php_1        | [18-Jan-2020 03:15:37] NOTICE: fpm is running, pid 1
php_1        | [18-Jan-2020 03:15:37] NOTICE: ready to handle connections
php_1        | [18-Jan-2020 06:35:32] NOTICE: Terminating ...
php_1        | [18-Jan-2020 06:35:32] NOTICE: exiting, bye-bye!
php_1        | [18-Jan-2020 06:35:48] NOTICE: fpm is running, pid 1
php_1        | [18-Jan-2020 06:35:48] NOTICE: ready to handle connections
php_1        | [18-Jan-2020 06:36:01] NOTICE: Terminating ...
php_1        | [18-Jan-2020 06:36:01] NOTICE: exiting, bye-bye!
php_1        | [18-Jan-2020 06:36:11] NOTICE: fpm is running, pid 1
php_1        | [18-Jan-2020 06:36:11] NOTICE: ready to handle connections
php_1        | [18-Jan-2020 06:43:20] NOTICE: fpm is running, pid 1
php_1        | [18-Jan-2020 06:43:20] NOTICE: ready to handle connections
portainer_1  | 2020/01/18 03:15:39 Starting Portainer 1.23.0 on :9000
portainer_1  | 2020/01/18 03:15:39 server: Reverse tunnelling enabled
portainer_1  | 2020/01/18 03:15:39 server: Fingerprint 62:2b:a3:df:6d:c6:1a:14:01:79:e5:1b:1f:f3:28:57
portainer_1  | 2020/01/18 03:15:39 server: Listening on 0.0.0.0:8000...
portainer_1  | 2020/01/18 03:15:39 [DEBUG] [chisel, monitoring] [check_interval_seconds: 10.000000] [message: starting tunnel management process]
portainer_1  | 2020/01/18 06:35:49 Templates already registered inside the database. Skipping template import.
portainer_1  | 2020/01/18 06:35:49 server: Reverse tunnelling enabled
portainer_1  | 2020/01/18 06:35:49 server: Fingerprint 62:2b:a3:df:6d:c6:1a:14:01:79:e5:1b:1f:f3:28:57
portainer_1  | 2020/01/18 06:35:49 server: Listening on 0.0.0.0:8000...
portainer_1  | 2020/01/18 06:35:49 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
portainer_1  | 2020/01/18 06:35:49 Starting Portainer 1.23.0 on :9000
portainer_1  | 2020/01/18 06:35:49 [DEBUG] [chisel, monitoring] [check_interval_seconds: 10.000000] [message: starting tunnel management process]
portainer_1  | 2020/01/18 06:36:12 Templates already registered inside the database. Skipping template import.
portainer_1  | 2020/01/18 06:36:12 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
portainer_1  | 2020/01/18 06:36:12 server: Reverse tunnelling enabled
portainer_1  | 2020/01/18 06:36:12 server: Fingerprint 62:2b:a3:df:6d:c6:1a:14:01:79:e5:1b:1f:f3:28:57
portainer_1  | 2020/01/18 06:36:12 server: Listening on 0.0.0.0:8000...
portainer_1  | 2020/01/18 06:36:12 Starting Portainer 1.23.0 on :9000
portainer_1  | 2020/01/18 06:36:12 [DEBUG] [chisel, monitoring] [check_interval_seconds: 10.000000] [message: starting tunnel management process]
portainer_1  | 2020/01/18 06:43:21 Templates already registered inside the database. Skipping template import.
portainer_1  | 2020/01/18 06:43:21 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
portainer_1  | 2020/01/18 06:43:21 Starting Portainer 1.23.0 on :9000
portainer_1  | 2020/01/18 06:43:21 server: Reverse tunnelling enabled
portainer_1  | 2020/01/18 06:43:21 server: Fingerprint 62:2b:a3:df:6d:c6:1a:14:01:79:e5:1b:1f:f3:28:57
portainer_1  | 2020/01/18 06:43:21 server: Listening on 0.0.0.0:8000...
portainer_1  | 2020/01/18 06:43:21 [DEBUG] [chisel, monitoring] [check_interval_seconds: 10.000000] [message: starting tunnel management process]
mariadb_1    | Initializing database
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] /usr/bin/mysqld (mysqld 10.1.26-MariaDB) starting as process 52 ...
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  3:15:37 140676029090632 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  3:15:38 140676029090632 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  3:15:38 140676029090632 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
mariadb_1    | 2020-01-18  3:15:38 140676029090632 [Note] InnoDB: Setting file ./ibdata1 size to 10 MB
mariadb_1    | 2020-01-18  3:15:38 140676029090632 [Note] InnoDB: Setting log file ./ib_logfile101 size to 128 MB
mariadb_1    | 2020-01-18  3:15:39 140676029090632 [Note] InnoDB: Setting log file ./ib_logfile1 size to 128 MB
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Warning] InnoDB: New log files created, LSN=45883
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: Doublewrite buffer not found: creating new
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: Doublewrite buffer created
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: 128 rollback segment(s) are active.
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Warning] InnoDB: Creating foreign key constraint system tables.
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: Foreign key constraint system tables created
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: Creating tablespace and datafile system tables.
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: Tablespace and datafile system tables created.
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  3:15:41 140676029090632 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 0
mariadb_1    | 2020-01-18  3:15:41 140674500549352 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] /usr/bin/mysqld (mysqld 10.1.26-MariaDB) starting as process 81 ...
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: 128 rollback segment(s) are active.
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  3:15:44 140603653262152 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 1616806
mariadb_1    | 2020-01-18  3:15:44 140602152389352 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] /usr/bin/mysqld (mysqld 10.1.26-MariaDB) starting as process 110 ...
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: 128 rollback segment(s) are active.
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  3:15:47 140008286825288 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 1616816
mariadb_1    | 2020-01-18  3:15:47 140006785952488 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 
mariadb_1    | PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
mariadb_1    | To do so, start the server, then issue the following commands:
mariadb_1    | 
mariadb_1    | '/usr/bin/mysqladmin' -u root password 'new-password'
mariadb_1    | '/usr/bin/mysqladmin' -u root -h  password 'new-password'
mariadb_1    | 
mariadb_1    | Alternatively you can run:
mariadb_1    | '/usr/bin/mysql_secure_installation'
mariadb_1    | 
mariadb_1    | which will also give you the option of removing the test
mariadb_1    | databases and anonymous user created by default.  This is
mariadb_1    | strongly recommended for production servers.
mariadb_1    | 
mariadb_1    | See the MariaDB Knowledgebase at http://mariadb.com/kb or the
mariadb_1    | MySQL manual for more instructions.
mariadb_1    | 
mariadb_1    | Please report any problems at http://mariadb.org/jira
mariadb_1    | 
mariadb_1    | The latest information about MariaDB is available at http://mariadb.org/.
mariadb_1    | You can find additional information about the MySQL part at:
mariadb_1    | http://dev.mysql.com
mariadb_1    | Consider joining MariaDB's strong and vibrant community:
mariadb_1    | https://mariadb.org/get-involved/
mariadb_1    | 
mariadb_1    | Database initialized
mariadb_1    | MySQL init process in progress...
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] mysqld (mysqld 10.1.26-MariaDB) starting as process 137 ...
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  3:15:50 140573939698504 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] InnoDB: 128 rollback segment(s) are active.
mailhog_1    | 2020/01/18 03:15:37 Using in-memory storage
mailhog_1    | [HTTP] Binding to address: 0.0.0.0:8025
mailhog_1    | 2020/01/18 03:15:37 Serving under http://0.0.0.0:8025/
mailhog_1    | 2020/01/18 03:15:37 [SMTP] Binding to address: 0.0.0.0:1025
mailhog_1    | Creating API v1 with WebPath: 
mailhog_1    | Creating API v2 with WebPath: 
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 1616826
mariadb_1    | 2020-01-18  3:15:51 140572438825704 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] Plugin 'FEEDBACK' is disabled.
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Warning] 'user' entry 'root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Warning] 'user' entry '@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Warning] 'proxies_priv' entry '@% root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] Reading of all Master_info entries succeded
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] Added new Master_info '' to hash table
mariadb_1    | 2020-01-18  3:15:51 140573939698504 [Note] mysqld: ready for connections.
mariadb_1    | Version: '10.1.26-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  MariaDB Server
mariadb_1    | 2020-01-18  3:15:54 140572438006504 [Warning] 'proxies_priv' entry '@% root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  3:15:54 140572438006504 [Warning] 'proxies_priv' entry '@% root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 
mariadb_1    | /docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
mariadb_1    | 
mariadb_1    | 2020-01-18  3:15:54 140572437691112 [Note] mysqld: Normal shutdown
mariadb_1    | 
mariadb_1    | 2020-01-18  3:15:54 140572437691112 [Note] Event Scheduler: Purging the queue. 0 events
mariadb_1    | 2020-01-18  3:15:54 140572439202536 [Note] InnoDB: FTS optimize thread exiting.
mariadb_1    | 2020-01-18  3:15:54 140572437691112 [Note] InnoDB: Starting shutdown...
mariadb_1    | 2020-01-18  3:15:55 140572437691112 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
mariadb_1    | 2020-01-18  3:15:56 140572437691112 [Note] InnoDB: Shutdown completed; log sequence number 1616836
mariadb_1    | 2020-01-18  3:15:56 140572437691112 [Note] mysqld: Shutdown complete
mariadb_1    | 
mariadb_1    | 
mariadb_1    | MySQL init process done. Ready for start up.
mariadb_1    | 
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] mysqld (mysqld 10.1.26-MariaDB) starting as process 1 ...
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: 128 rollback segment(s) are active.
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 1616836
mariadb_1    | 2020-01-18  3:15:57 140700054207208 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] Plugin 'FEEDBACK' is disabled.
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] Server socket created on IP: '0.0.0.0'.
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Warning] 'proxies_priv' entry '@% root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] Reading of all Master_info entries succeded
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] Added new Master_info '' to hash table
mariadb_1    | 2020-01-18  3:15:57 140701555080008 [Note] mysqld: ready for connections.
mariadb_1    | Version: '10.1.26-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
mariadb_1    | 2020-01-18  6:35:31 140700053388008 [Note] mysqld: Normal shutdown
mariadb_1    | 
mariadb_1    | 2020-01-18  6:35:31 140700053388008 [Note] Event Scheduler: Purging the queue. 0 events
mariadb_1    | 2020-01-18  6:35:31 140700054584040 [Note] InnoDB: FTS optimize thread exiting.
mariadb_1    | 2020-01-18  6:35:31 140700053388008 [Note] InnoDB: Starting shutdown...
mariadb_1    | 2020-01-18  6:35:32 140700053388008 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
mariadb_1    | 2020-01-18  6:35:34 140700053388008 [Note] InnoDB: Shutdown completed; log sequence number 1616846
mariadb_1    | 2020-01-18  6:35:34 140700053388008 [Note] mysqld: Shutdown complete
mariadb_1    | 
mariadb_1    | 2020-01-18  6:35:47 140535174314824 [Note] mysqld (mysqld 10.1.26-MariaDB) starting as process 1 ...
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Using Linux native AIO
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | 2020/01/18 06:35:47 Using in-memory storage
mailhog_1    | [HTTP] Binding to address: 0.0.0.0:8025
mailhog_1    | 2020/01/18 06:35:47 Serving under http://0.0.0.0:8025/
mailhog_1    | 2020/01/18 06:35:47 [SMTP] Binding to address: 0.0.0.0:1025
mailhog_1    | Creating API v1 with WebPath: 
mailhog_1    | Creating API v2 with WebPath: 
mailhog_1    | 2020/01/18 06:36:10 Using in-memory storage
mailhog_1    | 2020/01/18 06:36:10 [SMTP] Binding to address: 0.0.0.0:1025
mailhog_1    | 2020/01/18 06:36:10 Serving under http://0.0.0.0:8025/
mailhog_1    | [HTTP] Binding to address: 0.0.0.0:8025
mailhog_1    | Creating API v1 with WebPath: 
mailhog_1    | Creating API v2 with WebPath: 
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [HTTP] Binding to address: 0.0.0.0:8025
mailhog_1    | Creating API v1 with WebPath: 
mailhog_1    | 2020/01/18 06:43:20 Using in-memory storage
mailhog_1    | 2020/01/18 06:43:20 [SMTP] Binding to address: 0.0.0.0:1025
mailhog_1    | 2020/01/18 06:43:20 Serving under http://0.0.0.0:8025/
mailhog_1    | Creating API v2 with WebPath: 
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: 128 rollback segment(s) are active.
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  6:35:48 140535174314824 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 1616846
mariadb_1    | 2020-01-18  6:35:49 140535174314824 [Note] Plugin 'FEEDBACK' is disabled.
mariadb_1    | 2020-01-18  6:35:49 140533673442024 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 2020-01-18  6:35:49 140535174314824 [Note] Server socket created on IP: '0.0.0.0'.
mariadb_1    | 2020-01-18  6:35:49 140535174314824 [Warning] 'proxies_priv' entry '@% root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  6:35:49 140535174314824 [Note] Reading of all Master_info entries succeded
mariadb_1    | 2020-01-18  6:35:49 140535174314824 [Note] Added new Master_info '' to hash table
mariadb_1    | 2020-01-18  6:35:49 140535174314824 [Note] mysqld: ready for connections.
mariadb_1    | Version: '10.1.26-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
mariadb_1    | 2020-01-18  6:36:01 140533672622824 [Note] mysqld: Normal shutdown
mariadb_1    | 
mariadb_1    | 2020-01-18  6:36:01 140533672622824 [Note] Event Scheduler: Purging the queue. 0 events
mariadb_1    | 2020-01-18  6:36:01 140533673818856 [Note] InnoDB: FTS optimize thread exiting.
mariadb_1    | 2020-01-18  6:36:01 140533672622824 [Note] InnoDB: Starting shutdown...
mariadb_1    | 2020-01-18  6:36:02 140533672622824 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
mariadb_1    | 2020-01-18  6:36:03 140533672622824 [Note] InnoDB: Shutdown completed; log sequence number 1616856
mariadb_1    | 2020-01-18  6:36:03 140533672622824 [Note] mysqld: Shutdown complete
mariadb_1    | 
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] mysqld (mysqld 10.1.26-MariaDB) starting as process 1 ...
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  6:36:10 140550777789256 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] InnoDB: 128 rollback segment(s) are active.
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 1616856
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] Plugin 'FEEDBACK' is disabled.
mariadb_1    | 2020-01-18  6:36:11 140549276916456 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] Server socket created on IP: '0.0.0.0'.
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Warning] 'proxies_priv' entry '@% root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] Reading of all Master_info entries succeded
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] Added new Master_info '' to hash table
mariadb_1    | 2020-01-18  6:36:11 140550777789256 [Note] mysqld: ready for connections.
mariadb_1    | Version: '10.1.26-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] mysqld (mysqld 10.1.26-MariaDB) starting as process 1 ...
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Using SSE crc32 instructions
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Initializing buffer pool, size = 1.0G
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: The log sequence number 1616856 in ibdata file do not match the log sequence number 1616866 in the ib_logfiles!
mariadb_1    | 2020-01-18  6:43:20 140259094022984 [Note] InnoDB: Restoring possible half-written data pages from the doublewrite buffer...
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] InnoDB: 128 rollback segment(s) are active.
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.36-82.1 started; log sequence number 1616866
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] Plugin 'FEEDBACK' is disabled.
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] Recovering after a crash using tc.log
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] Starting crash recovery...
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] Crash recovery finished.
mariadb_1    | 2020-01-18  6:43:21 140257593150184 [Note] InnoDB: Dumping buffer pool(s) not yet started
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] Server socket created on IP: '0.0.0.0'.
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Warning] 'proxies_priv' entry '@% root@78005d5f3f7a' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] Reading of all Master_info entries succeded
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] Added new Master_info '' to hash table
mariadb_1    | 2020-01-18  6:43:21 140259094022984 [Note] mysqld: ready for connections.
mariadb_1    | Version: '10.1.26-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
csandanov commented 4 years ago

See https://github.com/wodby/docker4drupal/issues/401