We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4422e1c commit 8731a68Copy full SHA for 8731a68
Makefile
@@ -11,10 +11,14 @@ help:
11
@echo " 5. make purge - stop and remove the container"
12
13
build:
14
- @docker build --tag=sameersbn/gitlab .
+ @docker build --tag=sameersbn/gitlab . \
15
+ --build-arg BUILD_DATE="$(shell date +"%Y-%m-%d %H:%M:%S%:z")" \
16
+ --build-arg VCS_REF=$(shell git rev-parse --short HEAD)
17
18
release: build
- @docker build --tag=sameersbn/gitlab:$(shell cat VERSION) .
19
+ @docker build --tag=sameersbn/gitlab:$(shell cat VERSION) . \
20
21
+ --build-arg VCS_REF=$(git describe --tags --always)
22
23
quickstart:
24
@echo "Starting postgresql container..."
0 commit comments