Ms Word For Mac Version 15 Slow Lag

Nov 14, 2017 - it was nearly 20 second to open Excel, and 15 second to open Word. Onenote for mac free.

Hi all Docker for mac is currently very slow when I run my environment. I’m using it for a PHP project using Symfony2 framework. To render the main PHP request, it lasts 9500ms on Docker Mac.

Using the same configuration ( docker compose file + docker files) on Linux, on the same project, on the same page, the main PHP request lasts 700ms. I 've tried the same project on different Mac using same/last Docker Beta version and I’ve the same performances.

Do you have any idea where I could start to improve? I would be happy to share the informations you need! Here is my diagnostic ID: 19CEFA36-E990-44D9-8BD7-BB Docker for Mac: version: mac-v1.12.0-beta20 OS X: version 10.11.5 (build: 15F34) logs: /tmp/20122.tar.gz [OK] docker-cli [OK] app [OK] moby-syslog [OK] virtualization [OK] menubar [OK] system [OK] osxfs [OK] db [OK] slirp [OK] moby-console [OK] logs [OK] vmnetd [OK] env [OK] moby [OK] driver.amd64-linux Thanks a lot!

Mac

Where are your PHP files located? I’ve noticed that if the files are shared on the Mac, I/O is very slow. My PHP container does a chown -R nginx:nginx /www on startup where the /www directory is shared with the ~/www on the Mac using docker run -v ~/www:/www. The ~/www directory on the Mac has around 8,000 files in it and the chown command takes around 30 seconds to execute. If I just use a Docker volume (which is in the Moby VM), I/O is back to being fast: $ docker volume create --name www $ # init www volume from Mac directory $ docker run --rm -v www:/www.vm -v ~/www:/www.mac ubuntu:16.04 bash -c 'cd /www.mac; tar -cz * (cd /www.vm; tar -xz)' $ # run PHP with volume in VM, not on Mac $ docker run -d-v www:/www. Thanks for your answer.

We are using Docker here for development purpose. Here is my dockercompose file, it has no impact, can you tell me what is wrong? My “engine” container is a based on a php-fpm image.