diff options
author | Bryan Hyshka <hyshka@users.noreply.github.com> | 2018-07-23 09:53:50 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-23 09:53:50 -0600 |
commit | 0f3ffbab9d907ac3a30f189e54fd8cecbd479aaa (patch) | |
tree | 9839a3642299b5f469c8105d9e82f62cc42f692a | |
parent | 48e61bb7aefdbe6ee8c56304bf488048a04c4c44 (diff) |
Add --rm flag
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,4 +13,4 @@ build: ## Build the Docker image docker build -t $(IMAGENAME) ./docker up: build ## Bring the Docker container up - docker run -it -v $(PWD):/opt --name $(CONTAINERNAME) $(IMAGENAME) python3 cli.py || echo 'Already up!' + docker run -it --rm -v $(PWD):/opt --name $(CONTAINERNAME) $(IMAGENAME) python3 cli.py || echo 'Already up!' |