From 23a1aaa8b0a9f0ce5be52b9d062a757ddb6d250e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?La=C3=A9rcio=20de=20Sousa?= Date: Fri, 3 Jul 2020 16:17:17 -0300 Subject: [PATCH] Add support for custom docker-compose.yml For some reason, one may want/need to edit laradock's default file `docker-compose.yml` e.g. srtipping out uneeded services, so that the whole project can be brought up with a simple `docker-compose up` command. With this commit, the user can copy default `docker-compose.yml` as `docker-compose.custom.yml` and make the desired changes there. This file will not be tracked by Git. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index e215d357..45d4e72a 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,6 @@ !/.devcontainer/devcontainer.example.json !/.devcontainer/docker-compose.extend-example.yml +docker-compose.custom.yml + .DS_Store