-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker.mk
60 lines (46 loc) · 1.77 KB
/
docker.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
include .env
.PHONY: up down stop prune ps shell logs mutagen
default: up
## help : Print commands help.
help : docker.mk
@sed -n 's/^##//p' $<
## up : Start up containers.
up:
@echo "Starting up containers for for $(PROJECT_NAME)..."
docker-compose pull
docker-compose up -d --remove-orphans
mutagen:
mutagen-compose up
## down : Stop containers.
down: stop
## start : Start containers without updating.
start:
@echo "Starting containers for $(PROJECT_NAME) from where you left off..."
@docker-compose start
## stop : Stop containers.
stop:
@echo "Stopping containers for $(PROJECT_NAME)..."
@docker-compose stop
## prune : Remove containers and their volumes.
## You can optionally pass an argument with the service name to prune single container
## prune mariadb : Prune `mariadb` container and remove its volumes.
## prune mariadb solr : Prune `mariadb` and `solr` containers and remove their volumes.
prune:
@echo "Removing containers for $(PROJECT_NAME)..."
@docker-compose down -v $(filter-out $@,$(MAKECMDGOALS))
## ps : List running containers.
ps:
@docker ps --filter name='$(PROJECT_NAME)*'
## shell : Access `php` container via shell.
## You can optionally pass an argument with a service name to open a shell on the specified container
shell:
docker exec -ti -e COLUMNS=$(shell tput cols) -e LINES=$(shell tput lines) $(shell docker ps --filter name='$(PROJECT_NAME)_$(or $(filter-out $@,$(MAKECMDGOALS)), 'php')' --format "{{ .ID }}") sh
## logs : View containers logs.
## You can optinally pass an argument with the service name to limit logs
## logs php : View `php` container logs.
## logs nginx php : View `nginx` and `php` containers logs.
logs:
@docker-compose logs -f $(filter-out $@,$(MAKECMDGOALS))
# https://stackoverflow.com/a/6273809/1826109
%:
@: