mirror of
https://github.com/project-zot/zot.git
synced 2024-12-30 22:34:13 -05:00
c0aaca8ed1
(cherry picked from commit d557da0baba819b7cd7e6b5941528776e125ac6d) build(ui): fix stacker builds (cherry picked from commit ba25daf02b4a9bc7ee1cb6f84b7a6b096ca7d61f) build(ui): various fixes - Fix metrics endpoint - Fix unit tests unit tests - Make the ui build optional in the makefile before the linter lint runs in the golangci-lint workflow - Do not attempt to include UI routes if search is enabled - Fix authorization for search endpoint fix: use zot tag in ui make target (cherry picked from commit 2a6882fa23f06b2d68c6c299773a6ff50bf90e78) Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> Signed-off-by: Catalin Hofnar <catalin.hofnar@gmail.com> Signed-off-by: Andrei Aaron <aaaron@luxoft.com> Co-authored-by: Ramkumar Chinchani <rchincha@cisco.com>
62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
build:
|
|
from:
|
|
type: docker
|
|
url: docker://ghcr.io/project-zot/golang:1.19
|
|
binds:
|
|
- ../. -> /zotcopy
|
|
run: |
|
|
export GO111MODULE=on
|
|
export GOPATH='/go'
|
|
export HOME='/root'
|
|
export PATH='/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
|
|
mkdir -p /go/src/github.com/project-zot
|
|
cd /go/src/github.com/project-zot
|
|
git clone /zotcopy zot
|
|
cd /go/src/github.com/project-zot/zot
|
|
make COMMIT=${{COMMIT}} OS=${{OS}} ARCH=${{ARCH}} RELEASE_TAG=${{RELEASE_TAG}} clean binary${{EXT:}}
|
|
cat > config.json << EOF
|
|
{
|
|
"storage":{
|
|
"rootDirectory":"/var/lib/registry"
|
|
},
|
|
"http":{
|
|
"address":"0.0.0.0",
|
|
"port":"5000"
|
|
},
|
|
"log":{
|
|
"level":"debug"
|
|
}
|
|
}
|
|
EOF
|
|
|
|
cat config.json
|
|
mkdir -p /zotcopy/.build/${{REPO_NAME}}
|
|
cd /zotcopy/.build/${{REPO_NAME}}
|
|
|
|
mkdir -p binary/ cert/ config/
|
|
|
|
cp /go/src/github.com/project-zot/zot/bin/zot-${{OS}}-${{ARCH}}${{EXT:}} binary/
|
|
cp /go/src/github.com/project-zot/zot/config.json config/
|
|
cp /etc/ssl/certs/ca-certificates.crt cert/
|
|
build_only: true
|
|
|
|
"${{REPO_NAME:zot}}":
|
|
os: ${{OS}}
|
|
arch: ${{ARCH}}
|
|
from:
|
|
type: docker
|
|
url: docker://zothub.io/c3/base:jammy
|
|
overlay_dirs:
|
|
- source: ../.build/${{REPO_NAME}}/binary
|
|
dest: /usr/local/bin
|
|
- source: ../.build/${{REPO_NAME}}/cert
|
|
dest: /etc/ssl/certs
|
|
- source: ../.build/${{REPO_NAME}}/config
|
|
dest: /etc/zot
|
|
entrypoint:
|
|
- /usr/local/bin/zot-${{OS}}-${{ARCH}}${{EXT:}}
|
|
volumes:
|
|
- /var/lib/registry
|
|
cmd:
|
|
- serve
|
|
- /etc/zot/config.json
|