使用 Ansible 重启多个 Docker 容器未发生

Restart mutiple Docker Containers using Ansible not happening

我正在尝试使用 Ansible 为特定图像一个一个地重新启动我的 docker 个容器,但它似乎没有发生。下面是我的 yml,它正在做的是退出当前的 运行ning 容器。

---
- name: restart app servers
  hosts: shashank-VM
  connection: local
  become: yes
  become_method: sudo
  tasks:
    - name: Get info on the Container
      shell: docker ps | awk '/{{ item }}/{print }'
      register: list_of_containers
      with_items:
        - ubuntu

    - name: Restart Docker Service
      docker_container:
       name: "{{ item }}"
       # image: ubuntu
       state: started
       restart: yes
      with_items: "{{ list_of_containers.results | map(attribute='stdout_lines') | list }}"

如果您在 运行 docker ps 时看到以下输出,则没有 运行ning 容器。

TASK [Restart Docker Service] ****************************************************************************************************************
/usr/lib/python2.7/dist-packages/requests/__init__.py:80: RequestsDependencyWarning: urllib3 (1.25.9) or chardet (3.0.4) doesn't match a supported version!
  RequestsDependencyWarning)
changed: [shashank-VM] => (item=c2310b76b005)

PLAY RECAP ***********************************************************************************************************************************
shashank-VM                : ok=3    changed=2    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   

shashank@shashank-VM:~/ansible$ sudo docker ps
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES

我做错了什么?有人可以帮忙吗?

我不认为 docker_container 模块旨在执行您想要的操作(即重新启动现有容器)。该模块旨在按名称而非 ID 管理容器,并将检查 运行 容器是否与提供给 docker_container.

的选项匹配

您最好只使用 docker 命令重新启动您的容器:

---
- name: restart app servers
  hosts: shashank-VM
  connection: local
  become: yes
  become_method: sudo
  tasks:
    - name: Get info on the Container
      shell: docker ps | awk '/{{ item }}/{print }'
      register: list_of_containers
      with_items:
        - ubuntu

    - name: Restart Docker Service
      command: docker restart {{ item }}
      with_items: "{{ list_of_containers.results | map(attribute='stdout_lines') | list }}"