Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

I can't see php error logs #258

Closed
robertoperuzzo opened this issue Mar 23, 2018 · 2 comments
Closed

I can't see php error logs #258

robertoperuzzo opened this issue Mar 23, 2018 · 2 comments

Comments

@robertoperuzzo
Copy link

Codebase

I'm using my mounted Drupal 7 codebase

Host OS

macOS El Capitan 10.11.6

Docker info output

Containers: 6
 Running: 6
 Paused: 0
 Stopped: 0
Images: 8
Server Version: 18.03.0-ce-rc4
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 logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: cfd04396dc68220d1cecbe686a6cc3aa5ce3667c
runc version: 4fc53a81fb7c994640722ac585fa9ca548971871
init version: 949e6fa
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.9.87-linuxkit-aufs
Operating System: Docker for Mac
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 1.952GiB
Name: linuxkit-025000000001
ID: C2A2:O2JM:P564:ZXYF:UYBO:RNOT:TUNK:LV7K:IWN6:R6T5:6ZTN:LAH3
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): true
 File Descriptors: 71
 Goroutines: 81
 System Time: 2018-03-23T11:56:05.931861366Z
 EventsListeners: 3
HTTP Proxy: docker.for.mac.http.internal:3128
HTTPS Proxy: docker.for.mac.http.internal:3129
Registry: https://index.docker.io/v1/
Labels:
Experimental: true
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false

Docker compose file

version: "2"

services:
  mariadb:
    image: wodby/mariadb:$MARIADB_TAG
    container_name: "${PROJECT_NAME}_mariadb"
    stop_grace_period: 30s
    environment:
      MYSQL_ROOT_PASSWORD: $DB_ROOT_PASSWORD
      MYSQL_DATABASE: $DB_NAME
      MYSQL_USER: $DB_USER
      MYSQL_PASSWORD: $DB_PASSWORD
    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:
    image: wodby/drupal-php:$PHP_TAG
    container_name: "${PROJECT_NAME}_php"
    environment:
      PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S mailhog:1025
      DB_HOST: $DB_HOST
      DB_USER: $DB_USER
      DB_PASSWORD: $DB_PASSWORD
      DB_NAME: $DB_NAME
      DB_DRIVER: $DB_DRIVER
#      PHP_XDEBUG: 1
#      PHP_XDEBUG_DEFAULT_ENABLE: 1
#      PHP_XDEBUG_REMOTE_CONNECT_BACK: 0
#      PHP_XDEBUG_REMOTE_HOST: "10.254.254.254"
#      PHP_BLACKFIRE: 1
      PHP_ERROR_REPORTING: E_ALL
      PHP_DISPLAY_ERRORS: 1
      PHP_DISPLAY_STARTUP_ERRORS: 1
      PHP_TRACK_ERRORS: 1
      PHP_ZEND_ASSERTIONS: 1
      PHP_FPM_LOG_LEVEL: error
    volumes:
#      - ./:/var/www/html
## For macOS users (https://wodby.com/stacks/drupal/docs/local/docker-for-mac/)
#      - ./:/var/www/html:cached # User-guided caching
#      - docker-sync:/var/www/html # Docker-sync
      - ./:/var/www/html:delegated
## For Xdebug profiler files
#      - files:/mnt/files

  nginx:
    image: wodby/drupal-nginx:$NGINX_TAG
    container_name: "${PROJECT_NAME}_nginx"
    depends_on:
      - php
    environment:
      NGINX_STATIC_CONTENT_OPEN_FILE_CACHE: "off"
      NGINX_ERROR_LOG_LEVEL: error
      NGINX_BACKEND_HOST: php
      NGINX_SERVER_ROOT: /var/www/html/web
#      NGINX_DRUPAL_FILE_PROXY_URL: http://example.com
    volumes:
#      - ./:/var/www/html
# For macOS users (https://wodby.com/stacks/drupal/docs/local/docker-for-mac/)
#      - ./:/var/www/html:cached # User-guided caching
#      - docker-sync:/var/www/html # Docker-sync
      - ./:/var/www/html:delegated
    labels:
      - 'traefik.backend=nginx'
      - 'traefik.port=80'
      - 'traefik.frontend.rule=Host:${PROJECT_BASE_URL}'

  mailhog:
    image: mailhog/mailhog
    container_name: "${PROJECT_NAME}_mailhog"
    labels:
      - 'traefik.backend=mailhog'
      - 'traefik.port=8025'
      - 'traefik.frontend.rule=Host:mailhog.${PROJECT_BASE_URL}'

#  postgres:
#    image: wodby/postgres:$POSTGRES_TAG
#    container_name: "${PROJECT_NAME}_postgres"
#    stop_grace_period: 30s
#    environment:
#      POSTGRES_PASSWORD: $DB_PASSWORD
#      POSTGRES_DB: $DB_NAME
#      POSTGRES_USER: $DB_USER
#    volumes:
#      - ./postgres-init:/docker-entrypoint-initdb.d # Place init file(s) here.
#      - /path/to/postgres/data/on/host:/var/lib/postgresql/data # I want to manage volumes manually.

#  apache:
#    image: wodby/php-apache:$APACHE_TAG
#    container_name: "${PROJECT_NAME}_apache"
#    depends_on:
#      - php
#    environment:
#      APACHE_LOG_LEVEL: debug
#      APACHE_BACKEND_HOST: php
#      APACHE_SERVER_ROOT: /var/www/html/web
#    volumes:
##      - ./:/var/www/html
## For macOS users (https://wodby.com/stacks/drupal/docs/local/docker-for-mac/)
##      - ./:/var/www/html:cached # User-guided caching
##      - docker-sync:/var/www/html # Docker-sync
#      - ./:/var/www/html:delegated
#    labels:
#      - 'traefik.backend=apache'
#      - 'traefik.port=80'
#      - 'traefik.frontend.rule=Host:${PROJECT_BASE_URL}'

#  varnish:
#    image: wodby/drupal-varnish:$VARNISH_TAG
#    container_name: "${PROJECT_NAME}_varnish"
#    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.${PROJECT_BASE_URL}'

#  redis:
#    container_name: "${PROJECT_NAME}_redis"
#    image: wodby/redis:$REDIS_TAG

#  adminer:
#    container_name: "${PROJECT_NAME}_adminer"
#    image: wodby/adminer:$ADMINER_TAG
#    environment:
#      ADMINER_SALT: adminer-salt
#    labels:
#      - 'traefik.backend=adminer'
#      - 'traefik.port=9000'
#      - 'traefik.frontend.rule=Host:adminer.${PROJECT_BASE_URL}'

#  pma:
#    image: phpmyadmin/phpmyadmin
#    container_name: "${PROJECT_NAME}_pma"
#    environment:
#      PMA_HOST: $DB_HOST
#      PMA_USER: $DB_USER
#      PMA_PASSWORD: $DB_PASSWORD
#      PHP_UPLOAD_MAX_FILESIZE: 1G
#      PHP_MAX_INPUT_VARS: 1G
#    labels:
#      - 'traefik.backend=pma'
#      - 'traefik.port=80'
#      - 'traefik.frontend.rule=Host:pma.${PROJECT_BASE_URL}'

#  solr:
#    image: wodby/drupal-solr:$SOLR_TAG
#    container_name: "${PROJECT_NAME}_solr"
#    environment:
#      SOLR_HEAP: 1024m
#    labels:
#      - 'traefik.backend=solr'
#      - 'traefik.port=8983'
#      - 'traefik.frontend.rule=Host:solr.${PROJECT_BASE_URL}'

#  nodejs:
#    image: wodby/drupal-node:$DRUPAL_NODE_TAG
#    container_name: "${PROJECT_NAME}_drupal_nodejs"
#    environment:
#       NODE_SERVICE_KEY: node-service-key
#    labels:
#      - 'traefik.backend=nodejs'
#      - 'traefik.port=8080'
#      - 'traefik.frontend.rule=Host:nodejs.${PROJECT_BASE_URL}'
#    volumes:
#      - ./path/to/your/single-page-app:/app
#    command: sh -c 'npm install && npm run start'

#  memcached:
#    container_name: "${PROJECT_NAME}_memcached"
#    image: wodby/memcached:$MEMCACHED_TAG

#  rsyslog:
#    container_name: "${PROJECT_NAME}_rsyslog"
#    image: wodby/rsyslog:$RSYSLOG_TAG

#  athenapdf:
#    image: arachnysdocker/athenapdf-service:$ATHENAPDF_TAG
#    container_name: "${PROJECT_NAME}_athenapdf"
#    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"

#  node:
#    image: node:alpine
#    container_name: "${PROJECT_NAME}_node"
#    working_dir: /app
#    labels:
#      - 'traefik.backend=node'
#      - 'traefik.port=3000'
#      - 'traefik.frontend.rule=Host:front.${PROJECT_BASE_URL}'
#    expose:
#      - "3000"
#    volumes:
#      - ./path/to/your/single-page-app:/app
#    command: sh -c 'npm install && npm run start'

#  blackfire:
#    image: blackfire/blackfire
#    container_name: "${PROJECT_NAME}_blackfire"
#    environment:
#      BLACKFIRE_SERVER_ID: XXXXX
#      BLACKFIRE_SERVER_TOKEN: YYYYY

#  webgrind:
#    image: wodby/webgrind:$WEBGRIND_TAG
#    container_name: "${PROJECT_NAME}_webgrind"
#    environment:
#      WEBGRIND_PROFILER_DIR: /mnt/files/xdebug/profiler
#    labels:
#      - 'traefik.backend=webgrind'
#      - 'traefik.port=8080'
#      - 'traefik.frontend.rule=Host:webgrind.${PROJECT_BASE_URL}'
#    volumes:
#      - files:/mnt/files

  portainer:
    image: portainer/portainer
    container_name: "${PROJECT_NAME}_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.${PROJECT_BASE_URL}'

  traefik:
    image: traefik
    container_name: "${PROJECT_NAME}_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:
## Docker-sync for macOS users
#  docker-sync:
#    external: true
## For Xdebug profiler
#  files:

Logs output

Attaching to ialweb_nginx, ialweb_php, ialweb_portainer, ialweb_mariadb, ialweb_mailhog, ialweb_traefik
�[36mnginx_1      |�[0m 172.18.0.3 - - [23/Mar/2018:11:52:59 +0000] "GET / HTTP/1.1" 500 5 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36"
�[36mnginx_1      |�[0m 172.18.0.3 - - [23/Mar/2018:11:53:13 +0000] "GET / HTTP/1.1" 500 5 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36"
�[36mnginx_1      |�[0m 172.18.0.3 - - [23/Mar/2018:11:53:14 +0000] "GET / HTTP/1.1" 500 5 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36"
�[31mmailhog_1    |�[0m [HTTP] Binding to address: 0.0.0.0:8025
�[31mmailhog_1    |�[0m Creating API v1 with WebPath: 
�[31mmailhog_1    |�[0m Creating API v2 with WebPath: 
�[31mmailhog_1    |�[0m 2018/03/23 10:58:07 Using in-memory storage
�[31mmailhog_1    |�[0m 2018/03/23 10:58:07 [SMTP] Binding to address: 0.0.0.0:1025
�[31mmailhog_1    |�[0m 2018/03/23 10:58:07 Serving under http://0.0.0.0:8025/
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m 2018/03/23 11:30:46 Using in-memory storage
�[31mmailhog_1    |�[0m 2018/03/23 11:30:46 [SMTP] Binding to address: 0.0.0.0:1025
�[31mmailhog_1    |�[0m 2018/03/23 11:30:46 Serving under http://0.0.0.0:8025/
�[31mmailhog_1    |�[0m [HTTP] Binding to address: 0.0.0.0:8025
�[31mmailhog_1    |�[0m Creating API v1 with WebPath: 
�[31mmailhog_1    |�[0m Creating API v2 with WebPath: 
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m 2018/03/23 11:52:35 Using in-memory storage
�[31mmailhog_1    |�[0m 2018/03/23 11:52:35 [SMTP] Binding to address: 0.0.0.0:1025
�[31mmailhog_1    |�[0m 2018/03/23 11:52:35 Serving under http://0.0.0.0:8025/
�[31mmailhog_1    |�[0m [HTTP] Binding to address: 0.0.0.0:8025
�[31mmailhog_1    |�[0m Creating API v1 with WebPath: 
�[31mmailhog_1    |�[0m Creating API v2 with WebPath: 
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[31mmailhog_1    |�[0m [APIv1] KEEPALIVE /api/v1/events
�[35mmariadb_1    |�[0m Initializing database
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
�[35mmariadb_1    |�[0m To do so, start the server, then issue the following commands:
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m '/usr/bin/mysqladmin' -u root password 'new-password'
�[35mmariadb_1    |�[0m '/usr/bin/mysqladmin' -u root -h  password 'new-password'
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m Alternatively you can run:
�[35mmariadb_1    |�[0m '/usr/bin/mysql_secure_installation'
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m which will also give you the option of removing the test
�[35mmariadb_1    |�[0m databases and anonymous user created by default.  This is
�[35mmariadb_1    |�[0m strongly recommended for production servers.
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m See the MariaDB Knowledgebase at http://mariadb.com/kb or the
�[35mmariadb_1    |�[0m MySQL manual for more instructions.
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m Please report any problems at http://mariadb.org/jira
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m The latest information about MariaDB is available at http://mariadb.org/.
�[35mmariadb_1    |�[0m You can find additional information about the MySQL part at:
�[35mmariadb_1    |�[0m http://dev.mysql.com
�[35mmariadb_1    |�[0m Consider joining MariaDB's strong and vibrant community:
�[35mmariadb_1    |�[0m https://mariadb.org/get-involved/
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m Database initialized
�[35mmariadb_1    |�[0m MySQL init process in progress...
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] mysqld (mysqld 10.2.12-MariaDB) starting as process 99 ...
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Uses event mutexes
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Compressed tables use zlib 1.2.11
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Using Linux native AIO
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Number of pools: 1
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Using SSE2 crc32 instructions
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Initializing buffer pool, total size = 1G, instances = 4, chunk size = 128M
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Completed initialization of buffer pool
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139807691533032 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: 128 out of 128 rollback segments are active.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Creating shared tablespace for temporary tables
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: Waiting for purge to start
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] InnoDB: 5.7.20 started; log sequence number 1619205
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139807719312104 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139807719312104 [Note] InnoDB: Buffer pool(s) load completed at 180323 10:58:10
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] Plugin 'FEEDBACK' is disabled.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Warning] 'user' entry 'root@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Warning] 'user' entry '@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Warning] 'proxies_priv' entry '@% root@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] Reading of all Master_info entries succeded
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] Added new Master_info '' to hash table
�[35mmariadb_1    |�[0m 2018-03-23 10:58:10 139809165171592 [Note] mysqld: ready for connections.
�[35mmariadb_1    |�[0m Version: '10.2.12-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  MariaDB Server
�[35mmariadb_1    |�[0m 2018-03-23 10:58:12 139807710092008 [Warning] 'proxies_priv' entry '@% root@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 2018-03-23 10:58:12 139807710092008 [Warning] 'proxies_priv' entry '@% root@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m /usr/local/bin/init_mariadb: running /docker-entrypoint-initdb.d/ialweb_20180307_163459.sql
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807709772520 [Note] mysqld (unknown): Normal shutdown
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807709772520 [Note] Event Scheduler: Purging the queue. 0 events
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807719783144 [Note] InnoDB: FTS optimize thread exiting.
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807709772520 [Note] InnoDB: Starting shutdown...
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807719312104 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807719312104 [Note] InnoDB: Instance 0, restricted to 4096 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807719312104 [Note] InnoDB: Instance 1, restricted to 4096 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807719312104 [Note] InnoDB: Instance 2, restricted to 4096 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807719312104 [Note] InnoDB: Instance 3, restricted to 4096 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:08:24 139807719312104 [Note] InnoDB: Buffer pool(s) dump completed at 180323 11:08:24
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 139807709772520 [Note] InnoDB: Shutdown completed; log sequence number 8356857365
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 139807709772520 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 139807709772520 [Note] mysqld: Shutdown complete
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m MySQL init process done. Ready for start up.
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] mysqld (mysqld 10.2.12-MariaDB) starting as process 1 ...
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Uses event mutexes
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Compressed tables use zlib 1.2.11
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Using Linux native AIO
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Number of pools: 1
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Using SSE2 crc32 instructions
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Initializing buffer pool, total size = 1G, instances = 4, chunk size = 128M
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Completed initialization of buffer pool
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140303567583976 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
�[35mmariadb_1    |�[0m 2018-03-23 11:08:26 140305042443144 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] InnoDB: 128 out of 128 rollback segments are active.
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] InnoDB: Creating shared tablespace for temporary tables
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] InnoDB: 5.7.20 started; log sequence number 8356857365
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140303596583656 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] Plugin 'FEEDBACK' is disabled.
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] Server socket created on IP: '0.0.0.0'.
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Warning] 'proxies_priv' entry '@% root@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] Reading of all Master_info entries succeded
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] Added new Master_info '' to hash table
�[35mmariadb_1    |�[0m 2018-03-23 11:08:28 140305042443144 [Note] mysqld: ready for connections.
�[35mmariadb_1    |�[0m Version: '10.2.12-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
�[35mmariadb_1    |�[0m 2018-03-23 11:08:33 140303596583656 [Note] InnoDB: Buffer pool(s) load completed at 180323 11:08:33
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303587044072 [Note] mysqld (unknown): Normal shutdown
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303587044072 [Note] Event Scheduler: Purging the queue. 0 events
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303597054696 [Note] InnoDB: FTS optimize thread exiting.
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303587044072 [Note] InnoDB: Starting shutdown...
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303596583656 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303596583656 [Note] InnoDB: Instance 0, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303596583656 [Note] InnoDB: Instance 1, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303596583656 [Note] InnoDB: Instance 2, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303596583656 [Note] InnoDB: Instance 3, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:30:30 140303596583656 [Note] InnoDB: Buffer pool(s) dump completed at 180323 11:30:30
�[35mmariadb_1    |�[0m 2018-03-23 11:30:31 140303587044072 [Note] InnoDB: Shutdown completed; log sequence number 8356960436
�[35mmariadb_1    |�[0m 2018-03-23 11:30:31 140303587044072 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
�[35mmariadb_1    |�[0m 2018-03-23 11:30:31 140303587044072 [Note] mysqld: Shutdown complete
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] mysqld (mysqld 10.2.12-MariaDB) starting as process 1 ...
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Uses event mutexes
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Compressed tables use zlib 1.2.11
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Using Linux native AIO
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Number of pools: 1
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Using SSE2 crc32 instructions
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Initializing buffer pool, total size = 1G, instances = 4, chunk size = 128M
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Completed initialization of buffer pool
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140493546760936 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
�[35mmariadb_1    |�[0m 2018-03-23 11:30:47 140495021620104 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] InnoDB: 128 out of 128 rollback segments are active.
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] InnoDB: Creating shared tablespace for temporary tables
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] InnoDB: 5.7.20 started; log sequence number 8356960436
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140493575760616 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] Plugin 'FEEDBACK' is disabled.
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] Server socket created on IP: '0.0.0.0'.
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Warning] 'proxies_priv' entry '@% root@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] Reading of all Master_info entries succeded
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] Added new Master_info '' to hash table
�[35mmariadb_1    |�[0m 2018-03-23 11:30:48 140495021620104 [Note] mysqld: ready for connections.
�[35mmariadb_1    |�[0m Version: '10.2.12-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
�[35mmariadb_1    |�[0m 2018-03-23 11:30:52 140493575760616 [Note] InnoDB: Buffer pool(s) load completed at 180323 11:30:52
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493566540520 [Note] mysqld (unknown): Normal shutdown
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493566540520 [Note] Event Scheduler: Purging the queue. 0 events
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493576231656 [Note] InnoDB: FTS optimize thread exiting.
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493566540520 [Note] InnoDB: Starting shutdown...
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493575760616 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493575760616 [Note] InnoDB: Instance 0, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493575760616 [Note] InnoDB: Instance 1, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493575760616 [Note] InnoDB: Instance 2, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493575760616 [Note] InnoDB: Instance 3, restricted to 4095 pages due to innodb_buf_pool_dump_pct=25
�[35mmariadb_1    |�[0m 2018-03-23 11:51:41 140493575760616 [Note] InnoDB: Buffer pool(s) dump completed at 180323 11:51:41
�[35mmariadb_1    |�[0m 2018-03-23 11:51:42 140493566540520 [Note] InnoDB: Shutdown completed; log sequence number 8357051164
�[35mmariadb_1    |�[0m 2018-03-23 11:51:42 140493566540520 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
�[35mmariadb_1    |�[0m 2018-03-23 11:51:42 140493566540520 [Note] mysqld: Shutdown complete
�[35mmariadb_1    |�[0m 
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] mysqld (mysqld 10.2.12-MariaDB) starting as process 1 ...
�[33mphp_1        |�[0m 172.18.0.7 -  23/Mar/2018:11:52:58 +0000 "GET /index.php" 500
�[33mphp_1        |�[0m 172.18.0.7 -  23/Mar/2018:11:53:13 +0000 "GET /index.php" 500
�[33mphp_1        |�[0m 172.18.0.7 -  23/Mar/2018:11:53:14 +0000 "GET /index.php" 500
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Uses event mutexes
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Compressed tables use zlib 1.2.11
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Using Linux native AIO
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Number of pools: 1
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Using SSE2 crc32 instructions
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Initializing buffer pool, total size = 1G, instances = 4, chunk size = 128M
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Completed initialization of buffer pool
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139850556484328 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
�[35mmariadb_1    |�[0m 2018-03-23 11:52:36 139852031343496 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] InnoDB: 128 out of 128 rollback segments are active.
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] InnoDB: Creating shared tablespace for temporary tables
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] InnoDB: Waiting for purge to start
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] InnoDB: 5.7.20 started; log sequence number 8357051164
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139850585484008 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] Plugin 'FEEDBACK' is disabled.
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] Server socket created on IP: '0.0.0.0'.
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Warning] 'proxies_priv' entry '@% root@7a0f3e090a86' ignored in --skip-name-resolve mode.
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] Reading of all Master_info entries succeded
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] Added new Master_info '' to hash table
�[35mmariadb_1    |�[0m 2018-03-23 11:52:37 139852031343496 [Note] mysqld: ready for connections.
�[35mmariadb_1    |�[0m Version: '10.2.12-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
�[35mmariadb_1    |�[0m 2018-03-23 11:52:41 139850585484008 [Note] InnoDB: Buffer pool(s) load completed at 180323 11:52:41
�[32mportainer_1  |�[0m 2018/03/23 10:58:07 Starting Portainer 1.16.4 on :9000
�[32mportainer_1  |�[0m 2018/03/23 11:30:47 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
�[32mportainer_1  |�[0m 2018/03/23 11:30:47 Starting Portainer 1.16.4 on :9000
�[32mportainer_1  |�[0m 2018/03/23 11:52:35 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
�[32mportainer_1  |�[0m 2018/03/23 11:52:35 Starting Portainer 1.16.4 on :9000
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Using TOML configuration file /dev/null" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=warning msg="web provider configuration is deprecated, you should use these options : api, rest provider, ping and metrics" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Traefik version v1.5.4 built on 2018-03-15_01:35:21PM" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="
�[34mtraefik_1    |�[0m Stats collection is disabled.
�[34mtraefik_1    |�[0m Help us improve Traefik by turning this feature on :)
�[34mtraefik_1    |�[0m More details on: https://docs.traefik.io/basics/#collected-data
�[34mtraefik_1    |�[0m " 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Preparing server http &{Network: Address::80 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc4206dd2c0} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Preparing server traefik &{Network: Address::8080 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc4206dd2e0} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Starting server on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Starting provider *docker.Provider {"Watch":true,"Filename":"","Constraints":null,"Trace":false,"DebugLogGeneratedTemplate":false,"Endpoint":"unix:///var/run/docker.sock","Domain":"","TLS":null,"ExposedByDefault":true,"UseBindPortIP":false,"SwarmMode":false}" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Starting server on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:07Z" level=info msg="Server configuration reloaded on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:09Z" level=info msg="Server configuration reloaded on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T10:58:09Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:30Z" level=info msg="I have to go... terminated" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:30Z" level=info msg="Stopping server gracefully" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:31Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:31Z" level=info msg="Server configuration reloaded on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:31Z" level=info msg="Skipping same configuration for provider docker" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:31Z" level=info msg="Skipping same configuration for provider docker" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:33Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:33Z" level=info msg="Server configuration reloaded on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:40Z" level=info msg="Server stopped" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:40Z" level=info msg="Shutting down" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Using TOML configuration file /dev/null" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=warning msg="web provider configuration is deprecated, you should use these options : api, rest provider, ping and metrics" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Traefik version v1.5.4 built on 2018-03-15_01:35:21PM" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="
�[34mtraefik_1    |�[0m Stats collection is disabled.
�[34mtraefik_1    |�[0m Help us improve Traefik by turning this feature on :)
�[34mtraefik_1    |�[0m More details on: https://docs.traefik.io/basics/#collected-data
�[34mtraefik_1    |�[0m " 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Preparing server http &{Network: Address::80 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc42023e820} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Preparing server traefik &{Network: Address::8080 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc42023e840} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Starting server on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Starting provider *docker.Provider {"Watch":true,"Filename":"","Constraints":null,"Trace":false,"DebugLogGeneratedTemplate":false,"Endpoint":"unix:///var/run/docker.sock","Domain":"","TLS":null,"ExposedByDefault":true,"UseBindPortIP":false,"SwarmMode":false}" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Starting server on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:47Z" level=info msg="Server configuration reloaded on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:49Z" level=info msg="Server configuration reloaded on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:30:49Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:51:41Z" level=info msg="I have to go... terminated" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:51:41Z" level=info msg="Stopping server gracefully" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:51:41Z" level=info msg="Server stopped" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:51:41Z" level=info msg="Shutting down" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Using TOML configuration file /dev/null" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=warning msg="web provider configuration is deprecated, you should use these options : api, rest provider, ping and metrics" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Traefik version v1.5.4 built on 2018-03-15_01:35:21PM" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="
�[34mtraefik_1    |�[0m Stats collection is disabled.
�[34mtraefik_1    |�[0m Help us improve Traefik by turning this feature on :)
�[34mtraefik_1    |�[0m More details on: https://docs.traefik.io/basics/#collected-data
�[34mtraefik_1    |�[0m " 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Preparing server http &{Network: Address::80 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc4206b8040} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Preparing server traefik &{Network: Address::8080 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc4206b8060} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Starting server on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Starting provider *docker.Provider {"Watch":true,"Filename":"","Constraints":null,"Trace":false,"DebugLogGeneratedTemplate":false,"Endpoint":"unix:///var/run/docker.sock","Domain":"","TLS":null,"ExposedByDefault":true,"UseBindPortIP":false,"SwarmMode":false}" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Starting server on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:36Z" level=info msg="Server configuration reloaded on :8080" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:38Z" level=info msg="Server configuration reloaded on :80" 
�[34mtraefik_1    |�[0m time="2018-03-23T11:52:38Z" level=info msg="Server configuration reloaded on :8080" 

Browsing my project I get "HTTP ERROR 500", but I can't debug it because I don't know how to see php errors log. How can I do it?

Thanks.

@csandanov
Copy link
Member

see #247 (comment)

@csandanov
Copy link
Member

Fixed in 5.0.4

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

No branches or pull requests

2 participants