-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (23 loc) · 744 Bytes
/
Makefile
File metadata and controls
29 lines (23 loc) · 744 Bytes
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
# -----------------------------------------------------------------------------
# MAKEFILE RUNNING COMMAND
# -----------------------------------------------------------------------------
# Author : Dwi Fahni Denni (@zeroc0d3)
# Repository : https://github.com/zeroc0d3/docker-framework
# License : MIT
# -----------------------------------------------------------------------------
# Notes:
# use [TAB] instead [SPACE]
PATH_SERVICES="./services"
#------------------------
# DocKube Services
#------------------------
docker-run:
./docker-cmd.sh build
compose-build:
./docker-cmd.sh compose-build $1
compose-up:
./docker-cmd.sh compose-up
docker-stop:
./docker-cmd.sh compose-stop
docker-down:
./docker-cmd.sh compose-down