0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-16 21:56:37 -05:00
zot - A scale-out production-ready vendor-neutral OCI-native container image/artifact registry (purely based on OCI Distribution Specification)
Find a file
Tycho Andersen 487df473c5
Merge pull request #22 from tych0/install-swag
install swag instead of updating it in the go deps
2019-09-03 15:12:49 -06:00
.bazel zot: initial commit 2019-06-21 15:29:19 -07:00
cmd/zot zot: initial commit 2019-06-21 15:29:19 -07:00
docs docs: fix Makefile 2019-08-29 10:56:59 -07:00
errors tls: harden TLS path 2019-08-27 15:15:33 -07:00
examples auth: allow for world-readable deployment mode 2019-08-28 15:39:49 -07:00
pkg issue #14: fix repo path walk 2019-08-29 13:47:59 -07:00
test/data tls: require mutual auth only when htpasswd not available 2019-07-21 15:10:09 -07:00
.bazelignore zot: initial commit 2019-06-21 15:29:19 -07:00
.bazelrc zot: initial commit 2019-06-21 15:29:19 -07:00
.gitignore zot: initial commit 2019-06-21 15:29:19 -07:00
.travis.yml CI/CD: code coverage and bazel improvements 2019-06-26 15:01:52 -07:00
BUILD.bazel zot: initial commit 2019-06-21 15:29:19 -07:00
Dockerfile build: support building inside a container 2019-08-14 12:39:38 -07:00
go.mod auth: allow for world-readable deployment mode 2019-08-28 15:39:49 -07:00
go.sum auth: allow for world-readable deployment mode 2019-08-28 15:39:49 -07:00
LICENSE Initial commit 2019-06-21 14:40:59 -07:00
Makefile install swag instead of updating it in the go deps 2019-09-03 14:21:05 -06:00
Makefile.bazel docs: fix Makefile 2019-08-29 10:56:59 -07:00
README.md README: update content 2019-08-28 16:38:43 -07:00
stacker.yaml build: support building inside a container using stacker 2019-08-14 16:26:49 -07:00
WORKSPACE auth: allow for world-readable deployment mode 2019-08-28 15:39:49 -07:00
zot.go zot: initial commit 2019-06-21 15:29:19 -07:00

zot Build Status codecov.io

zot is a single-purpose OCI image repository server based on the OCI distribution spec.

Building

  • Build inside a container (preferred)
make binary-container
  • Alternatively, build inside a container using stacker (preferred)
make binary-stacker
  • Build using host's toolchain
make

Build artifacts are in bin/

Running

bin/zot serve config-file

Examples of config files are available in examples/ dir.

Ecosystem

skopeo

skopeo is a tool to work with remote image repositories.

We have a patched version available that works with zot.

git clone https://github.com/anuvu/skopeo

cd skopeo

make GO111MODULE=on binary-local

cri-o

cri-o is a OCI-based Kubernetes container runtime interface.

We have a patched version of containers/image available that works with zot which must be linked with cri-o.

git clone https://github.com/cri-o/cri-o

cd cri-o

echo 'replace github.com/containers/image => github.com/anuvu/image v1.5.2-0.20190827234748-f71edca6153a' >> go.mod

make bin/crio crio.conf GO111MODULE=on

Caveats

  • go 1.12+
  • The OCI distribution spec is still WIP, and we try to keep up