-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
53 lines (36 loc) · 2.06 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
44
45
46
47
48
49
50
51
52
53
DOCKER_COMPOSE_PATH = ./srcs/docker-compose.yml
DATA_PATH = /home/anhigo-s/data
####################################################################################################
########################################## Volume Paths ############################################
####################################################################################################
DB_PATH = $(DATA_PATH)/db/
WP_PATH = $(DATA_PATH)/wp/
####################################################################################################
########################################## Default Rules ###########################################
####################################################################################################
# Create the data volumes folder and start the containers
all:
@ mkdir -p $(DB_PATH) $(WP_PATH)
@ grep -qxF '127.0.0.1 anhigo-s.42.fr' /etc/hosts || echo '127.0.0.1 anhigo-s.42.fr' >> /etc/hosts
@ docker-compose -f $(DOCKER_COMPOSE_PATH) up --build
# Stop the containers and remove images and networks
clean: stop
@ docker system prune -a --force
# Remove the data volumes folder
fclean: clean
@ rm -rf $(DATA_PATH)
# Stop the containers, remove images and networks and recreate the data volumes folder
re: fclean all
# Stop the containers
stop:
@ docker-compose -f $(DOCKER_COMPOSE_PATH) down
# Clean all previus containers, images and networks
ava:
sudo bash ./srcs/requirements/tools/clean.sh
####################################################################################################
####################################################################################################
####################################################################################################
.PHONY: all stop clean fclean re ava
####################################################################################################
####################################################################################################
####################################################################################################