I was invited to review some code. I've never done that before and barely know the project. Thus I'm following the README step by step. I log everything.
The README says in its "Quickstart" section:
docker-compose up -d
This line raised "..denied..access forbidden.." which lead me to invest some reasonable time into researching it. A friend later told me to add build: .
and remove image: docker.git...
from the docker-compose.yml
. This fixed it.
I'm tempted to change the README accordingly, though I hesitate as maybe I'm simply lacking the skills my role demands.
https://readmetips.github.io/#essential-tips-for-a-nice-readme
image:
to add abuild:
- thebuild:
will publish to the tag defined inimage:
if present. Not on topic for this forum - but I wouldn't what your documentation to be more wrong – Boris the Spider Aug 19 '21 at 05:34I would be utterly annoyed as a project lead if somebody changed such an integral line in order to "make it work". At least talk to the team / a senior developer about whether you should not use the image anymore.
– YetiCGN Aug 19 '21 at 15:41