Only linux is supported.
You must have docker, docker-compose and GNU make installed on your machine.
The build system is done via a makefile.
There are two build modes:
Developpement environment.
Production environment.
The default build mode is dev.
To chose the build mode, you can either
modify the BUILD_MODE variable in the Makefile or
pass the build mode as a command-line argument to the make command:
make [rule] BUILD_MODE=[BUILD_MODE]
Here are the rules:
Alias for
run.
Starts all the docker VMs.
If the dockers need to be built, builds them.
Builds the dockers.
Builds the dockers without using the cached operations.
It ensured the builds are up-to-date with the source tree.
Stops all the running dockers of this project.
Same as
downbut also deletes the data within the VMs.
Restarts the VMs.
Same as
rebut also rebuilds the VMs without using cached operations.