# docker-express-demo **Repository Path**: finley/docker-express-demo ## Basic Information - **Project Name**: docker-express-demo - **Description**: docker练习使用 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-29 - **Last Updated**: 2022-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 构建镜像并推送到仓库 docker build -t finleyma/express . docker login docker push finleyma/express ## 进入容器 docker run -it --rm finleyma/express ash ## 运行 docker run -p 3000:3000 -d finleyma/express 浏览器打开 http://localhost:3000