-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
30 lines (22 loc) · 1.14 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: sahafid <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/01/01 14:18:11 by sahafid #+# #+# #
# Updated: 2023/01/07 01:59:32 by sahafid ### ########.fr #
# #
# **************************************************************************** #
all : up
up :
@docker-compose -f ./srcs/docker-compose.yml up -d
down :
@docker-compose -f ./srcs/docker-compose.yml down
stop :
@docker-compose -f ./srcs/docker-compose.yml stop
start :
@docker-compose -f ./srcs/docker-compose.yml start
status :
@docker ps