- Adminer: it's simple than PHPMyAdmin. But because of IPV6 problem, so I use version 4.2.5 TimWolla/docker-adminer#40
Step 1:
Install docker and docker-compose to your pc.
Step 2:
Clone code repository then install dependencies:
git clone
npm install
composer update
Build docker images
docker-compose build
docker-compose up -d
chmod -R 777 storage
Running php artisan:
docker-compose exec php php artisan migrate
Application Homepage
http://localhost:8989
Adminer
http://localhost:8990
Username: root Password: secret
You can edit these info in the docker-compose.yml
- File permission problem: Ref: If you are running Docker on Linux, the files created are owned by root.
sudo chown -R $USER:$USER .
https://qiita.com/dyoshikawa/items/63a974b5aee488b080f8
Free to make pull request.