Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Latest commit

 

History

History
35 lines (26 loc) · 717 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 717 Bytes

Full Stack Docker Apache MySQL PHP Environment for Development

This Docker service provides a complete web server separated in three containers for your local development environment.

  • Apache 2.4
  • PHP 5.6 or PHP 7.0 (can be configured in docker-compose.yml)
  • XDebug 2.4
  • MariaDB 10.1
  • Composer
  • XHProf + xhgui

How to start:

git clone [email protected]:dominikwinter/damp.git
cd damp

# depends on your system
docker-machine start
eval $(docker-machine env)

# start containers
docker-compose up -d

Enter Docker Environment (eg. to install composer)

# depends on your system
docker-machine start
eval $(docker-machine env)

# enter docker environment
docker exec -it damp_web_1 bash