Skip to content

Add Docker requirement in README

Ravi Kumar requested to merge update-README-to-include-docker into main
  • Add a requirement to install Docker to run tests.
  • Fix the docker-compose commands. I was getting the error by running docker-compose up gitaly -d. Service name should be the last argument in the command.

Error:

~/ docker-compose up gitaly -d
ERROR: No such service: -d

Working:

~/ docker-compose up -d gitaly                               
gitlab-elasticsearch-indexer_gitaly_1 is up-to-date

Merge request reports