crAPI
crAPI copied to clipboard
Sudo + Fixed incorrect dash being used: – instead of --
Description
I cannot believe I am submitting a PR this small but considering this is a learning utility and those running it may not be familiar with Linux/docker
- Added sudo to the readme instructions
- There was a bug where the "–" character was being used instead of "--" which caused
docker-compose -f docker-compose.yml --compatibility down --volumesto not work as intended.
Before with docker-compose -f docker-compose.yml --compatibility down –volumes:
After with sudo docker-compose -f docker-compose.yml --compatibility down --volumes:
Testing
Please describe the tests that you ran to verify your changes. Please summarize what did you test and what needs to be tested e.g. deployed and tested the service locally.
Documentation
Make sure that you have documented corresponding changes in this repository.
Checklist:
- [x] My changes generate no new warnings
- [x] I have added tests that prove my fix is effective or that my feature works
- [x] Any dependent changes have been merged
- [x] I have documented any changes if required in the docs.