1 Star 0 Fork 2

Kevin Wang/mongo-express

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
FROM node:12-slim
# grab tini for signal processing and zombie killing
ENV TINI_VERSION 0.9.0
RUN set -x \
&& apt-get update && apt-get install -y ca-certificates curl \
--no-install-recommends \
&& apt-get install -y gpg \
&& curl -fSL "https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini" -o /usr/local/bin/tini \
&& curl -fSL "https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini.asc" -o /usr/local/bin/tini.asc \
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 6380DC428747F6C393FEACA59A84159D7001A4E5 \
&& gpg --batch --verify /usr/local/bin/tini.asc /usr/local/bin/tini \
&& rm -r "$GNUPGHOME" /usr/local/bin/tini.asc \
&& chmod +x /usr/local/bin/tini \
&& tini -h \
&& apt-get purge --auto-remove -y ca-certificates curl \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 8081
# override some config defaults with values that will work better for docker
ENV ME_CONFIG_EDITORTHEME="default" \
ME_CONFIG_MONGODB_URL="mongodb://mongo:27017" \
ME_CONFIG_MONGODB_ENABLE_ADMIN="true" \
ME_CONFIG_BASICAUTH_USERNAME="" \
ME_CONFIG_BASICAUTH_PASSWORD="" \
ME_CONFIG_BASICAUTH_USERNAME_FILE="" \
ME_CONFIG_BASICAUTH_PASSWORD_FILE="" \
ME_CONFIG_MONGODB_ADMINUSERNAME_FILE="" \
ME_CONFIG_MONGODB_ADMINPASSWORD_FILE="" \
ME_CONFIG_MONGODB_AUTH_USERNAME_FILE="" \
ME_CONFIG_MONGODB_AUTH_PASSWORD_FILE="" \
ME_CONFIG_MONGODB_CA_FILE="" \
VCAP_APP_HOST="0.0.0.0"
WORKDIR /app
COPY . /app
RUN cp config.default.js config.js
RUN set -x \
&& apt-get update && apt-get install -y git --no-install-recommends \
&& npm install \
&& apt-get purge --auto-remove -y git \
&& rm -rf /var/lib/apt/lists/*
RUN npm run build
CMD ["tini", "--", "npm", "start"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shandongsite/mongo-express.git
git@gitee.com:shandongsite/mongo-express.git
shandongsite
mongo-express
mongo-express
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385