crAPI icon indicating copy to clipboard operation
crAPI copied to clipboard

Sudo + Fixed incorrect dash being used: – instead of --

Open grahamhelton opened this issue 1 year ago • 0 comments

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 --volumes to not work as intended.

Before with docker-compose -f docker-compose.yml --compatibility down –volumes: image

After with sudo docker-compose -f docker-compose.yml --compatibility down --volumes: image

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.

grahamhelton avatar Feb 12 '24 19:02 grahamhelton