Dockerfile: introduce environment variables

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2017-03-10 15:41:17 -05:00
parent 4b75c60819
commit e3593e4992
Signed by: vbatts
GPG Key ID: 10937E57733F1362
1 changed files with 4 additions and 1 deletions

View File

@ -5,4 +5,7 @@ RUN dnf install -y golang git bzr && \
go get github.com/vbatts/imgsrv && \
rm -rf /usr/local/src /usr/local/pkg && \
dnf remove -y golang git bzr
ENTRYPOINT ["/usr/local/bin/imgsrv"]
ENV MONGO_DB filesrv
ENV MONGO_HOST 127.0.0.1
ENV MONGO_PORT 27017
ENTRYPOINT /usr/local/bin/imgsrv -server -mongo-host=$MONGO_HOST:$MONGO_PORT -mongo-db=$MONGO_DB -mongo-username=$MONGO_USER -mongo-password=$MONGO_PASSWORD