diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
@@ -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!' |