From 643b015fa4fd9a42deddad4eeef3c4082609b456 Mon Sep 17 00:00:00 2001 From: Ben Selby Date: Fri, 25 Aug 2023 22:16:04 +0100 Subject: [PATCH] Consistent README format with the other benmatselby repos --- README.md | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ac7745f..a4b4e15 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,29 @@ export TRELLO_CLI_KEY="" export TRELLO_CLI_SECRET="" ``` -## Installation via Git +## Installation + +You can install this application a few ways: + +
+Installation via Docker + +Other than requiring [docker](http://docker.com) to be installed, there are no other requirements to run the application this way. + +```shell +$ docker build -t benmatselby/walter . +$ docker run \ + --rm \ + -t \ + -eTRELLO_CLI_KEY \ + -eTRELLO_CLI_SECRET \ + benmatselby/trello-cli:latest "$@" +``` + +
+ +
+Installation via Git ```shell git clone https://github.com/benmatselby/trello-cli.git @@ -29,9 +51,4 @@ make clean install bin/trello.php board:list -s ``` -## Installation via Docker - -```shell -make docker-build -docker run --rm -eTRELLO_CLI_KEY -eTRELLO_CLI_SECRET benmatselby/trello-cli board:list -s -``` +