mirror of
https://github.com/distribution/distribution-library-image
synced 2024-11-12 05:15:50 +01:00
d688e56dc3
Signed-off-by: Richard Scothern <richard.scothern@docker.com>
11 lines
155 B
Bash
Executable File
11 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
*.yaml|*.yml) set -- registry serve "$@" ;;
|
|
serve|garbage-collect|help|-*) set -- registry "$@" ;;
|
|
esac
|
|
|
|
exec "$@"
|