我正在尝试使用 Ansible 的docker_image模块在机器上构建一堆docker。
我构建了 1 个“基础”docker 镜像,它在所有后续 docker 镜像中用作 FROM 镜像。这在手动发出构建命令时有效:
sudo docker build -t base .
sudo docker build -t postgres .
但是,当我尝试对 Ansible 模块执行相同操作时,第二个图像(以及使用“基本”图像的所有后续图像)失败并出现以下错误:
TASK: [Docker | Build postgres] ************************************
failed: [192.168.1.120] => {"changed": true, "failed": true, "image_id": null}
msg: Error: Error: image base:latest not found
Log:Step 0 : FROM base
FATAL: all hosts have already failed -- aborting
我的剧本中的条目是:
- name: Docker | Build base
docker_image: path="/home/xx/data/dockers/base/" name="base" state=present
- name: Docker | Build postgres
docker_image: path="/home/xx/data/dockers/postgresql/" name="postgres" state=present
当它失败时,机器上存在“基本”图像,我可以通过检查来验证它docker images
。后续图像(在本例中为 postgres)在进行手动构建时也不会失败。
来自 Dockerfiles 的相关摘录:
基础 Dockerfile:
FROM ubuntu
MAINTAINER me
RUN apt-get update
RUN apt-get install -y \
software-properties-common \
wget \
git \
unzip \
nano \
vim-tiny
CMD bash
Postgres Docker 文件:
FROM base
MAINTAINER me
RUN groupadd -r postgres && useradd -r -g postgres postgres
...
因此 Ansible 努力使用另一个图像作为基础图像来构建图像。我确定问题不在于 Dockerfile,因为我可以手动构建图像。我只是想用 Ansible 自动化构建,这给了我问题。
有什么建议吗?