forked from ohcnetwork/care
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
43 lines (31 loc) · 1.02 KB
/
Makefile
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
.PHONY: build, re-build, up, down, list, logs, test, makemigrations
DOCKER_VERSION := $(shell docker --version 2>/dev/null)
DOCKER_COMPOSE_VERSION := $(shell docker-compose --version 2>/dev/null)
docker_config_file = 'docker-compose.local.yaml'
all:
ifndef DOCKER_VERSION
$(error "command docker is not available, please install Docker")
endif
ifndef DOCKER_COMPOSE_VERSION
$(error "command docker-compose is not available, please install Docker")
endif
re-build:
docker-compose -f $(docker_config_file) build --no-cache
build:
docker-compose -f $(docker_config_file) build
up:
docker network inspect care >/dev/null 2>&1 || \
docker network create care
docker-compose -f $(docker_config_file) up -d
down:
docker-compose -f $(docker_config_file) down
list:
docker-compose -f $(docker_config_file) ps
logs:
docker-compose -f $(docker_config_file) logs
makemigrations:
make up
docker exec care bash -c "python manage.py makemigrations"
test:
make up
docker exec care bash -c "python manage.py test --keepdb"