-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker.mk
66 lines (52 loc) · 1.93 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
61
62
63
64
65
66
include .env
.PHONY: up down stop prune ps shell logs
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 build
docker compose up -d --remove-orphans
.PHONY: mutagen
mutagen:
mutagen-compose up
## build : Build python image.
build:
@echo "Building python image for for $(PROJECT_NAME)..."
docker compose build
## 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 `python` 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)), 'python')' --format "{{ .ID }}") sh
## logs : View containers logs.
## You can optinaly pass an argument with the service name to limit logs
## logs python : View `python` container logs.
## logs nginx python : View `nginx` and `python` containers logs.
logs:
@docker compose logs -f $(filter-out $@,$(MAKECMDGOALS))
# https://stackoverflow.com/a/6273809/1826109
%:
@: