mirror of
https://github.com/docker/cli.git
synced 2026-09-01 02:24:23 -05:00
Upstream-commit: 17ffb0ac84874656a61a477fa29048cb82b28748 Component: engine
12 lines
257 B
Bash
Executable File
12 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
|