mirror of
https://github.com/vbatts/imgsrv.git
synced 2024-11-23 16:45:39 +00:00
Dockerfile: introduce environment variables
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
4b75c60819
commit
e3593e4992
1 changed files with 4 additions and 1 deletions
|
@ -5,4 +5,7 @@ RUN dnf install -y golang git bzr && \
|
||||||
go get github.com/vbatts/imgsrv && \
|
go get github.com/vbatts/imgsrv && \
|
||||||
rm -rf /usr/local/src /usr/local/pkg && \
|
rm -rf /usr/local/src /usr/local/pkg && \
|
||||||
dnf remove -y golang git bzr
|
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
|
||||||
|
|
Loading…
Reference in a new issue