1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30

add a pass credential helper backend

Signed-off-by: Tycho Andersen <tycho@docker.com>
This commit is contained in:
Tycho Andersen
2017-08-10 10:14:20 -06:00
parent 4fbc86d7d0
commit 1ab1037707
6 changed files with 313 additions and 1 deletions
+5 -1
View File
@@ -1,4 +1,4 @@
.PHONY: all deps osxkeychain secretservice test validate wincred
.PHONY: all deps osxkeychain secretservice test validate wincred pass
TRAVIS_OS_NAME ?= linux
VERSION := $(shell grep 'const Version' credentials/version.go | awk -F'"' '{ print $$2 }')
@@ -30,6 +30,10 @@ secretservice:
mkdir bin
go build -o bin/docker-credential-secretservice secretservice/cmd/main_linux.go
pass:
mkdir -p bin
go build -o bin/docker-credential-pass pass/cmd/main_linux.go
wincred:
mkdir bin
go build -o bin/docker-credential-wincred.exe wincred/cmd/main_windows.go