Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 926 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 926 Bytes

Developer Desktop Configurator

There are Ansible playbooks which help to configure developers environment for Magento dev

Run MySQL inside Docker

docker run -d -p 3306:3306 -v /var/lib/mysql:/var/lib/mysql --restart always -e MYSQL_PASS="admin" --name=mysql --net=host tutum/mysql:5.6

Clone this repo

Clone this repo with --recursive flag to get it with submodules.

git clone --recursive [email protected]:riversy/developer-desk-config.git

Setup own environment

Copy vars/local.sample.yml to vars/local.yml and set your own user name and path to working folder.

Run ansible script

Run Ansible script that will setup your local environment.

ansible-playbook lamp.yml -i inventory/prod --ask-sudo-pass

Preinstall

Surely you need to have Docker and Ansible onboard.