Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
docker-makefile-sample
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sample
docker-makefile-sample
Commits
0b01508d
Commit
0b01508d
authored
May 03, 2019
by
Chavee Issariyapat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support PROJECTPATH in release.conf
parent
eab61836
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Makefile
+3
-2
No files found.
Makefile
View file @
0b01508d
# a helper shell script
# a helper shell script
MAKE_VERSION
=
1.1.
4
MAKE_VERSION
=
1.1.
5
define
MAKEFUNCTIONCODE
define
MAKEFUNCTIONCODE
function
hasChanges()
{
function
hasChanges()
{
...
@@ -102,6 +102,7 @@ include release.conf
...
@@ -102,6 +102,7 @@ include release.conf
IMAGE
=
$(REGISTRY_HOST)
/
$(GROUPNAME)
/
$(PROJECTNAME)
IMAGE
=
$(REGISTRY_HOST)
/
$(GROUPNAME)
/
$(PROJECTNAME)
VERSION
=
$(
shell
.
$(RELEASE_SUPPORT)
;
getVersion
)
VERSION
=
$(
shell
.
$(RELEASE_SUPPORT)
;
getVersion
)
TAG
=
$(
shell
.
$(RELEASE_SUPPORT)
;
getTag
)
TAG
=
$(
shell
.
$(RELEASE_SUPPORT)
;
getTag
)
PROJECTPATH
?=
.
RELEASE_SUPPORT
:=
$(
shell
dirname
$
(
abspath
$
(
lastword
$(MAKEFILE_LIST))))
/.make-function
RELEASE_SUPPORT
:=
$(
shell
dirname
$
(
abspath
$
(
lastword
$(MAKEFILE_LIST))))
/.make-function
export
MAKEFUNCTIONCODE
export
MAKEFUNCTIONCODE
...
@@ -143,7 +144,7 @@ post-init:
...
@@ -143,7 +144,7 @@ post-init:
@
rm .make-function
@
rm .make-function
docker-build
:
docker-build
:
docker build
-t
$(IMAGE)
:
$(VERSION)
.
docker build
-t
$(IMAGE)
:
$(VERSION)
$(PROJECTPATH)
@
DOCKER_MAJOR
=
$(
shell
docker
-v
| sed
-e
's/.*version //'
-e
's/,.*//'
| cut
-d
\.
-f1
)
;
\
@
DOCKER_MAJOR
=
$(
shell
docker
-v
| sed
-e
's/.*version //'
-e
's/,.*//'
| cut
-d
\.
-f1
)
;
\
DOCKER_MINOR
=
$(
shell
docker
-v
| sed
-e
's/.*version //'
-e
's/,.*//'
| cut
-d
\.
-f2
)
;
\
DOCKER_MINOR
=
$(
shell
docker
-v
| sed
-e
's/.*version //'
-e
's/,.*//'
| cut
-d
\.
-f2
)
;
\
if
[
$$
DOCKER_MAJOR
-eq
1
]
&&
[
$$
DOCKER_MINOR
-lt
10
]
;
then
\
if
[
$$
DOCKER_MAJOR
-eq
1
]
&&
[
$$
DOCKER_MINOR
-lt
10
]
;
then
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment