-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
42 lines (34 loc) · 1006 Bytes
/
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
IMAGE_NAME = octavo-docker
IMAGE_VERSION = 1.0
IMAGE_ORG = witekio
IMAGE_TAG = $(IMAGE_ORG)/$(IMAGE_NAME):$(IMAGE_VERSION)
WORKING_DIR := $(shell pwd)
DOCKERFILE_DIR := .
.DEFAULT_GOAL := build
.PHONY: run build push
run:: ## Runs the docker image
@docker run \
-it \
--privileged \
-v $(shell pwd)/../:/home/docker/octavo-build/ \
-v /dev:/dev \
$(IMAGE_ORG)/$(IMAGE_NAME):$(IMAGE_VERSION)
build:: ## Builds the docker image
@echo Building $(IMAGE_TAG)
@docker build \
--build-arg PUID=$UID \
--pull \
-t $(IMAGE_TAG) $(DOCKERFILE_DIR)
push:: ## Pushes the docker image to the registry
@echo Pushing $(IMAGE_TAG)
@docker push $(IMAGE_TAG)
# A help target including self-documenting targets (see the awk statement)
define HELP_TEXT
Usage: make [TARGET]... [MAKEVAR1=SOMETHING]...
Available targets:
endef
export HELP_TEXT
help: ## This help target
@echo
@echo "$$HELP_TEXT"
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / \