Skip to content

project-angos/angos

Repository files navigation

Angos

Angos Logo

A fully OCI-compliant and Docker-compatible container registry.

Website | Documentation | Quick Start

Key Features

  • Online garbage collection
  • Pull-through cache
  • Immutable tags with configurable exclusions
  • Access control policies (CEL-based)
  • Retention policies
  • Native mTLS support
  • OIDC authentication (GitHub Actions, Google, Okta, and more)
  • Webhook authorization for external policy decisions
  • Web UI for browsing and managing images

Properties

  • Resource efficient: Asynchronous, streaming operations
  • Secure: mTLS, OIDC/JWT authentication, authorization policies (CEL and webhooks)
  • Scalable: Light footprint, S3-compatible storage, distributed locking
  • Easy to operate: Online garbage collection, auto-reload of configuration and certificates
  • Cross-platform: Portable on most mainstream operating systems just by recompiling

Quick Start

# Create a minimal config
cat > config.toml << 'EOF'
[server]
bind_address = "0.0.0.0"
port = 5000

[blob_store.fs]
root_dir = "./registry-data"

[global.access_policy]
default_allow = true

[repository."test"]
EOF

# Run the registry
./angos -c config.toml server

# Push an image
docker tag alpine:latest localhost:5000/test/alpine:latest
docker push localhost:5000/test/alpine:latest

See the Quickstart Tutorial for a complete walkthrough.

Documentation

Tutorials

How-To Guides

Reference

Understanding Angos

Usage

Usage: angos [-c <config>] <command> [<args>]

An OCI-compliant and docker-compatible registry service

Options:
  -c, --config      the path to the configuration file, defaults to
                    `config.toml`
  --help, help      display usage information

Commands:
  argon             Generate Argon2 password hashes for basic auth
  scrub             Check the storage backend for inconsistencies
  server            Run the registry listeners

Additional Endpoints

In addition to the standard OCI Distribution endpoints:

  • /health: Health check endpoint
  • /metrics: Prometheus metrics endpoint

References

About

An OCI-compliant and Docker-compatible container registry.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors 3

  •  
  •  
  •