如何从docker-compose文件中查看容器的容器运行状况

时间:2017-02-03 12:01:30

标签: docker docker-compose go-templates

由于docker-compose 1.10.0 there is support for health checks。我开始在我的一个docker-compose文件中实现它们。

有几个网站建议可以从docker ps查看容器的健康状况。见下文。

但是,在运行docker ps时,我看不到任何健康状况。我的docker-compose文件的摘录如下:

version: "2.1"

services:

  my-service:
    container_name: my-service
    image: "our-registry:5000/my-service:1.0.1"
    expose: [3000]
    restart: always
    depends_on:
      - other-service-1
      - other-service-2
    healthcheck:
      test: ["nc", "-z", "127.0.0.1", "3000", "||", "exit", "1"]
      interval: "2s"
      timeout: "1

我的docker ps输出的摘录如下:

# docker ps
CONTAINER ID        IMAGE                                  COMMAND                  CREATED             STATUS              PORTS          NAMES
af680b9fc6c3        our-registry/pr-georegion:1.0.1        "node index.js"          8 minutes ago       Up 8 minutes        3000/tcp       pr-georegion

Docker和docker-compose版本:

# docker -v
Docker version 1.12.6, build 78d1802
# docker-compose -v
docker-compose version 1.10.1, build b252738

Example 1

Example 1

Example 2

enter image description here

1 个答案:

答案 0 :(得分:3)

我在docker-compose文件中发现了这个问题。从[官方文档](测试必须是字符串或列表。如果它是一个列表,第一项必须是NONE,CMD或CMD-SHELL。如果它是一个字符串,它相当于指定CMD-SHELL后跟那个字符串。):

  

test必须是字符串或列表。如果是列表,则第一项必须是NONE,CMD或CMD-SHELL。如果它是一个字符串,则相当于指定CMD-SHELL后跟该字符串。

所以我改变了:

test: ["nc", "-z", "127.0.0.1", "3000", "||", "exit", "1"]

有:

test: ["CMD-SHELL", "nc -z 127.0.0.1 3000 || exit 1"]