aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index fabe763..bdef2cc 100644
--- a/Makefile
+++ b/Makefile
@@ -13,13 +13,4 @@ build: ## Build the Docker image
docker build -t $(IMAGENAME) ./docker
up: build ## Bring the Docker container up
- docker run -td -v $(PWD):/opt --name $(CONTAINERNAME) $(IMAGENAME) || echo 'Already up!'
-
-down: ## Stop the Docker container
- docker stop $(CONTAINERNAME)
-
-enter: ## Enter the running Docker container
- docker exec -it $(CONTAINERNAME) /bin/bash
-
-clean: down ## Stop and remove Docker container
- docker rm $(CONTAINERNAME)
+ docker run -it -v $(PWD):/opt --name $(CONTAINERNAME) $(IMAGENAME) python3 cli.py || echo 'Already up!'