-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add environment setup guide and troubleshooting section #94
base: master
Are you sure you want to change the base?
Conversation
Stop the docker compose and start again to ensure the Vault's content is clean before executing the integration tests again. | ||
|
||
For a docker compose clean follow these steps for a complete Docker cleanup: | ||
- Stop all running containers |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest that you change all this content by the following:
For a docker compose clean, execute the following command:
sudo docker compose -f docker-compose-env.yaml -f docker-compose-java.yaml down -v
This command deletes all containers, networks, and volumes created on the corresponding compose. It is the normal way to remove resources in a compose. Your steps delete all the containers, volumes, and networks you have created in your machine, including others not related to the deployment of Canis Major.
This pull request enhances the project documentation by adding two crucial components:
Setup Requirements:
Detailed instructions for setting up the environment to run Canis Major, including specific versions of Java and Docker.
Troubleshooting Guide:
Addresses the most common issue: build failure during integration tests.
Provides a clear, step-by-step solution to resolve the NGSI address problem.
Includes explanations of commands used in the troubleshooting process.
These additions aim to improve the user experience for new contributors and help current users resolve common issues quickly.