Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,15 @@ Examples:
./registry-debug info ubuntu
./registry-debug layerinfo ubuntu 3db9c44f45209632d6050b35958829c3a2aa256d81b9a7be45b362ff85c54710
./registry-debug curlme ubuntu 3db9c44f45209632d6050b35958829c3a2aa256d81b9a7be45b362ff85c54710


Using via Docker
----------------
Project provides an easy way to build and run the app via Docker. In this way, you don't have to install go and its dependencies to local environment. Usage example:

```bash
# Build the container
docker build -t docker-registry-debug .
# Run the command inside the container
docker run -i -t docker-registry-debug info ubuntu
```