Read the relevant custom_project_dir/README.md
.
Note By default, multiple projects can not be run simultaneously.1
To stop one project, and run another:
-
Cancel any active
make start
output i.e. press control + C. -
Take down one project.
Note This is equivalent to deleting the relevant set of related containers in Docker Desktop.
cd custom_project_dir_1 make stop
-
Start another project.
Note This remove containers, but not volumes e.g. database.
cd custom_project_dir_2 make start
Warning With these instructions, you will not be able to use the database (nor internal search index) of an already set up custom project (i.e. its local volumes).2
To run multiple projects simultaneously:
- Stop and take down any started projects. (See Multiple Projects step 2.)
- Create a custom
docker-compose.dev.yml
in your project. - Replace all instances of the text
core_cms
with the name of thecustom_project_dir
.
Footnotes
-
If you want to run multiple projects simultaneously, see Simultaneous Projects. ↩
-
Advanced adaptation of these instructions may support retaining database access, et cetera. ↩