新shell中的Alpine执行命令

时间:2018-04-20 14:09:31

标签: docker docker-compose devops alpine

我在docker中使用Alpine图像,我想知道是否有命令打开新终端并执行命令。

喜欢:

gnome-terminal -e <command>

我已经搜过了灰烬,但没找到我想要的东西

1 个答案:

答案 0 :(得分:1)

无论操作系统类型如何,您都可以选择在运行容器上运行命令。

docker image pull nginx
docker container run -d --name nginx -p 80:80 nginx
docker exec -ti nginx sh -c "echo 'Hello World'"