Docker命令-start 发表于 2022-03-14 分类于 command 命令docker start 描述Start one or more stopped containers启动停止状态的容器 用法1docker start [OPTIONS] CONTAINER [CONTAINER...] 选项123Options: --attach , -a Attach STDOUT/STDERR and forward signals --interactive , -i Attach container's STDIN 注意无 示例123$ docker start my_container# 前台运行容器$ docker start -ai my_container