使用docker-compose在Windows上保持容器活着

我有两个服务在docker-compose.yml文件中定义,并期待两个容器启动并在输出中运行,但容器立即停止。 当我在Linux上使用相同的组合文件时,它将创build并保持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