Compare commits
No commits in common. "75ec7e5374f74e665d8a84edcdf1daabc2dfaa0c" and "46dc36a2cfc89029483e0a2d89004dcd0fb9d6c6" have entirely different histories.
75ec7e5374
...
46dc36a2cf
13
Makefile
13
Makefile
@ -10,9 +10,6 @@ build:
|
|||||||
up: ## Starts the docker hub
|
up: ## Starts the docker hub
|
||||||
$(DOCKER_COMP) up -d
|
$(DOCKER_COMP) up -d
|
||||||
|
|
||||||
up_%: ## Start a single service
|
|
||||||
$(DOCKER_COMP) up $(subst up_,,$@)
|
|
||||||
|
|
||||||
down: ## Stops the docker hub
|
down: ## Stops the docker hub
|
||||||
$(DOCKER_COMP) down --remove-orphans
|
$(DOCKER_COMP) down --remove-orphans
|
||||||
|
|
||||||
@ -22,14 +19,8 @@ restart: ## Restarts the docker hub
|
|||||||
status: ## Prompt Containers
|
status: ## Prompt Containers
|
||||||
$(DOCKER_COMP) ps
|
$(DOCKER_COMP) ps
|
||||||
|
|
||||||
sh_%: ## Connects to the application container
|
shell_%: ## Connects to the application container
|
||||||
$(DOCKER_COMP) exec $(subst sh_,,$@) sh
|
$(DOCKER_COMP) exec $(subst shell_,,$@) bash
|
||||||
|
|
||||||
bash_%: ## Connects to the application container
|
|
||||||
$(DOCKER_COMP) exec $(subst bash_,,$@) bash
|
|
||||||
|
|
||||||
logs: ## Displays the logs of the application container
|
|
||||||
$(DOCKER_COMP) logs -f
|
|
||||||
|
|
||||||
logs_%: ## Displays the logs of the application container
|
logs_%: ## Displays the logs of the application container
|
||||||
$(DOCKER_COMP) logs -f $(subst logs_,,$@)
|
$(DOCKER_COMP) logs -f $(subst logs_,,$@)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user