Update Dockerfiles and remove tmt references

This commit is contained in:
Ahmed Muawia Khan 2018-02-21 20:31:53 +01:00
parent 8e6b4332b0
commit a8a10edf0e
3 changed files with 8 additions and 8 deletions

View File

@ -5,8 +5,8 @@ RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get autoremove \
&& apt-get clean
COPY mongod.conf.tmt.template /etc/mongod.conf
COPY mongod_tmt_entrypoint.bash /
COPY mongod.conf.template /etc/mongod.conf
COPY mongod_entrypoint.bash /
VOLUME /data/db /data/configdb /etc/mongod/ssl /etc/mongod/ca
EXPOSE 27017
ENTRYPOINT ["/mongod_tmt_entrypoint.bash"]
ENTRYPOINT ["/mongod_entrypoint.bash"]

View File

@ -6,6 +6,6 @@ RUN apt-get update \
&& apt-get autoremove \
&& apt-get clean
COPY nginx.conf.template /etc/nginx/nginx.conf
COPY nginx_tmt_entrypoint.bash /
COPY nginx_entrypoint.bash /
EXPOSE 80 27017 9986 46656
ENTRYPOINT ["/nginx_tmt_entrypoint.bash"]
ENTRYPOINT ["/nginx_entrypoint.bash"]

View File

@ -5,7 +5,7 @@ RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get autoremove \
&& apt-get clean
COPY nginx.conf.tmt.template /etc/nginx/nginx.conf
COPY nginx_tmt_entrypoint.bash /
COPY nginx.conf.template /etc/nginx/nginx.conf
COPY nginx_entrypoint.bash /
EXPOSE 80 443 27017 9986 46656
ENTRYPOINT ["/nginx_tmt_entrypoint.bash"]
ENTRYPOINT ["/nginx_entrypoint.bash"]