This repository has been archived on 2020-03-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
quay/local-docker.sh
2015-08-03 10:58:47 -04:00

11 lines
260 B
Bash
Executable file

#!/bin/sh
# Run this from the quay directory to start a quay development instance in
# docker on port 5000.
set -e
REPO=quay.io/quay/quay-dev
docker build -t $REPO -f dev.df .
docker run -it -p 5000:5000 -v $(pwd)/..:/src $REPO bash /src/quay/local-run.sh