当我运行docker-compose up -d时,我想使每个容器开始→shell在后台运行。
我如下创建了docker-compose.yml。
version: "3"
services:
test:
image: test:latest
tty: true
stdin_open: true
working_dir: /opt/test
command: bash -c "./test.sh &"
但是,当执行docker-compose up-d时,将在退出状态下创建容器。
仅使用docker-compose up -d命令,如何执行此操作以启动容器→通过bash执行shell背景→分离?