From a9810fc41fc80fd3c405c4162e03ee3ae9e253c9 Mon Sep 17 00:00:00 2001 From: Markus Blaschke Date: Mon, 19 Oct 2015 14:50:46 +0200 Subject: [PATCH] Renamed default docker-compose.yml to docker-compose-develop.yml Releated webdevops/TYPO3-docker-boilerplate#95 --- README.md | 4 +++- docker-compose.yml => docker-compose-development.yml | 0 documentation/INSTALL.md | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) rename docker-compose.yml => docker-compose-development.yml (100%) diff --git a/README.md b/README.md index f8032c6..73bed7a 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ You can use my [Vagrant Development VM](https://github.com/mblaschke/vagrant-dev ## Table of contents -- [Installation and requirements](/documentation/INSTALL.md) +- [First steps / Installation and requirements](/documentation/INSTALL.md) - [Updating docker boilerplate](/documentation/UPDATE.md) - [Customizing](/documentation/CUSTOMIZE.md) - [Services (Webserver, MySQL... Ports, Users, Passwords)](/documentation/SERVICES.md) @@ -56,6 +56,8 @@ Thanks for your support, ideas and issues. - [Philipp Kitzberger](https://github.com/Kitzberger) - [Stephan Ferraro](https://github.com/ferraro) - [Cedric Ziel](https://github.com/cedricziel) +- [Elmar Hinz](https://github.com/elmar-hinz) + Thanks to [cron IT GmbH](http://www.cron.eu/) for inspiration. diff --git a/docker-compose.yml b/docker-compose-development.yml similarity index 100% rename from docker-compose.yml rename to docker-compose-development.yml diff --git a/documentation/INSTALL.md b/documentation/INSTALL.md index d613294..37ce067 100644 --- a/documentation/INSTALL.md +++ b/documentation/INSTALL.md @@ -29,5 +29,8 @@ git clone --recursive https://github.com/webdevops/php-docker-boilerplate.git pr cd projectname +# for local development (shared volumes) +cp docker-compose-development.yml docker-compose.yml + docker-compose up -d ```