Add development dockerfile for local dev

This commit is contained in:
Matt Jibson 2015-08-03 10:58:47 -04:00
parent c7e464ddf2
commit f271499f64
2 changed files with 32 additions and 0 deletions

11
local-docker.sh Executable file
View file

@ -0,0 +1,11 @@
#!/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