我在docker-compose.yml文件中定义了两个服务,并期望在输出中启动并运行两个容器,但容器会立即停止。当我在Linux上使用相同的撰写文件时,它会创建并保持twp容器的运行。 Windows有任何已知问题吗?
我尝试使用docker-compose up
以及docker-compose run -dT <servicename>
禁止使用。
我的docker-compose.yml
文件是
version: '3'
networks:
default:
external:
name: nat
services:
awi-service:
env_file:
- awi-box.env
image: awi-box:12.0.0
ports:
- 8080:8080
depends_on:
- ae-service
ae-service:
env_file:
- ae-box.env
image: ar-box:12.0.0
ports:
- 2217:2217
- 2218:2218