目录
从头显示所有日志并持续输出
显示末尾最后5行并持续输出
查看最近五分钟内的日志
查看指定时间之后的日志并持续输出
从头显示所有日志并持续输出
docker service logs -f xx
显示末尾最后5行并持续输出
docker service logs -f -n 5 xx或docker service logs -f -n 5 xx
查看最近五分钟内的日志
docker service logs -f --since 5m xx
查看指定时间之后的日志并持续输出
docker service logs -f --since "2023-01-05T14:42:37" xx
命令参数:docker service logs --help
Usage: docker service logs [OPTIONS] SERVICE|TASKFetch the logs of a service or taskOptions:--details Show extra details provided to logs-f, --follow Follow log output--no-resolve Do not map IDs to Names in output--no-task-ids Do not include task IDs in output--no-trunc Do not truncate output--raw Do not neatly format logs--since string Show logs since timestamp (e.g. "2013-01-02T13:23:37Z") or relative (e.g. "42m" for 42 minutes)-n, --tail string Number of lines to show from the end of the logs (default "all")-t, --timestamps Show timestamps