Skip to content
This repository has been archived by the owner on Aug 21, 2020. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 474 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 474 Bytes

docker-mysql

A quick and fast environnement for MySQL database server (and phpmyadmin gui).

  • MYSQL Server
  • PhpMyADMIN

MySQL installation

cd ~/docker
git clone https://github.com/KilikFr/docker-mysql.git mysql
cd mysql

# setup the .env file
cp .env.dist .env
# and update variables

make build
make up

Access to databases server:

mysql -u root -ptest -h 127.0.0.1 -P 3306

or with phpmyadmin:

http://localhost:81