For other information, you can check Wiki Page.
The following command can be executed to stand up the application and database on Docker. Then the application can be run and proceed.
docker compose up -d --buildThe following command can be used to remove Docker Containers.
docker compose down -vWhen used with the -v flag, volumes are also deleted. If you want the volumes to be deleted completely, you must also delete the
dockerdirectory in the application directory. is required.
The following command can be executed to stand up the database on Docker. Then the application can be run and proceed.
docker compose up -d --build databaseThe following command can be used to remove Docker Containers.
docker compose down -vWhen used with the -v flag, volumes are also deleted. If you want the volumes to be deleted completely, you must also delete the
dockerdirectory in the application directory. is required.
Reference: HexaLayered Architecture

