Build Docker + Laravel PHP + Vue.js development environment in 5 minutes
Development environment |
macOS Big Sur |
I built the environment by referring to the following article.
There were some barriers to introduction for beginners who didn't have the wget
command, or the apt-get
command.
I would like to write an article to overcome that. (* Note: The following article is not bad at all.)
title |
Link |
Laravel + Vue made in 5 minutes.js development environment (docker-compose) |
https://qiita.com/yusukeito58/items/37bd551560e495dbd1b8 |
wget
command installation
title |
Link |
Mac -Install (make available) wget command |
https://qiita.com/th4inf/items/f85c1b91065d85af67b9 |
~~ apt-get
command installation ~~ ← I wondered if there was an apt-get command, but I don't need it as a result
title |
Link |
install apt-get to Mac |
https://qiita.com/th4inf/items/f85c1b91065d85af67b9 |
If you get a mysql-client
error when docker-compose up -d --build
error contents
E: Package 'mysql-client' has no installation candidate
ERROR: Service 'app' failed to build : The command '/bin/sh -c apt-get update && apt-get install -y zlib1g-dev mysql-client libpng-dev libjpeg-dev gnupg curl wget && docker-php-ext-configure gd --with-png-dir=/usr/include --with-jpeg-dir=/usr/include && docker-php-ext-install zip pdo_mysql gd' returned a non-zero code: 100
title |
Link |
docker-bundle install or mysql when doing compose build-Moss story with client |
https://qiita.com/aseanchild1400/items/d3580366054fee3d2703 |