mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
README: update content
This commit is contained in:
parent
672c0886aa
commit
d63acd5494
1 changed files with 41 additions and 1 deletions
42
README.md
42
README.md
|
@ -8,6 +8,7 @@
|
||||||
* TLS support
|
* TLS support
|
||||||
* *Basic* and TLS mutual authentication
|
* *Basic* and TLS mutual authentication
|
||||||
* Swagger based documentation
|
* Swagger based documentation
|
||||||
|
* Doesn't require _root_ privileges
|
||||||
|
|
||||||
# Building
|
# Building
|
||||||
|
|
||||||
|
@ -34,7 +35,46 @@ Build artifacts are in bin/
|
||||||
|
|
||||||
# Running
|
# Running
|
||||||
|
|
||||||
bin/zot serve <config>
|
bin/zot serve _config-file_
|
||||||
|
|
||||||
|
Examples of config files are available in [examples/](examples/) dir.
|
||||||
|
|
||||||
|
# Ecosystem
|
||||||
|
|
||||||
|
## skopeo
|
||||||
|
|
||||||
|
[skopeo](https://github.com/containers/skopeo) is a tool to work with remote
|
||||||
|
image repositories.
|
||||||
|
|
||||||
|
We have a [patched version](https://github.com/anuvu/skopeo) available that
|
||||||
|
works with _zot_.
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/anuvu/skopeo
|
||||||
|
|
||||||
|
cd skopeo
|
||||||
|
|
||||||
|
make GO111MODULE=on binary-local
|
||||||
|
```
|
||||||
|
|
||||||
|
## cri-o
|
||||||
|
|
||||||
|
[cri-o](https://github.com/cri-o/cri-o) is a OCI-based Kubernetes container
|
||||||
|
runtime interface.
|
||||||
|
|
||||||
|
We have a [patched version](https://github.com/anuvu/image) 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
|
# Caveats
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue