mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
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
|