An open API service indexing awesome lists of open source software.

https://github.com/arranbartish/artifact-repository

artifact repository for docker images and build artifacts
https://github.com/arranbartish/artifact-repository

Last synced: 4 months ago
JSON representation

artifact repository for docker images and build artifacts

Awesome Lists containing this project

README

          

# artifact-repository
artifact repository for docker images and build artifacts

# docker hub location

https://hub.docker.com/r/arranbartish/artifact-repository/

```
$ docker build -t artifact-repository .
$ docker run -d --name repository-data artifact-repository echo "data-only container for Nexus"
$ docker run -d -p 8081:8081 --name repository --volumes-from repository-data artifact-repository
$ docker run -p 8081:8081 artifact-repository
```