iT邦幫忙

0

[Docker] 查看container log的attached和detached模式

  • 分享至 

  • xImage
  •  

[即時查看]查看前端的log/attached模式

// 賦予container 80 port
docker container run -p 80:80 nginx

如果這時按下ctrl+c
[linux] 就會關閉該container
[windows] 不會關閉該container

[即時查看]後端的log/detached模式

// 起一個nginx, 用detached模式, 賦予80 port, 運行結果只會看到container id
docker run -d -p 80:80 nginx

// 進入到container裡面, 可以看到後台的log
docker attach [hash key]

// 進入到container裡面-範例
docker attach b2a

如果這時按下ctrl+c
[linux] 就會關閉該container
[windows] 不會關閉該container

[即時查看]後端的log/docker logs -f

// 追蹤後端log
docker container logs -f [hash key]

// 追縱後端log-範例
docker container logs -f d02

[後續追蹤]後端的log/docker logs

// 追蹤後端log
docker container logs [hash key]

// 追縱後端log-範例
docker container logs d02

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言