Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 515 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 515 Bytes

docker-adr-tools

A Docker image for running ADR Tools.

Examples

Initialise the ADR directory:

docker run --rm -v $(pwd):/adr opdavies/adr-tools init
docker-compose run --rm adr-tools init

List the current ADRs:

docker run --rm -v $(pwd):/adr opdavies/adr-tools list
docker-compose run --rm adr-tools list

Create a new ADR:

docker run --rm -v $(pwd):/adr opdavies/adr-tools new 'A new ADR'
docker-compose run --rm adr-tools new 'A new ADR'