我在ASP .NET Core中有一个应用程序。我需要使用docker
在mongoDb
创建图像。如何在应用程序内部创建可执行文件,该应用程序在运行(启动)时会在docker
或启动映像docker
上创建映像?
version: '3.1'
services:
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
ports:
- 27017:27017
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
depends_on:
- mongo