mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
11 lines
257 B
Bash
Executable file
11 lines
257 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Cleanup
|
|
rm -rf docker-registry
|
|
|
|
# Get latest docker registry
|
|
git clone https://github.com/dotcloud/docker-registry.git
|
|
|
|
# Configure and run registry tests
|
|
cd docker-registry; cp config_sample.yml config.yml
|
|
cd test; python -m unittest workflow
|