mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 05:22:05 +00:00
Building containers for CentOS and Fedora were failing due to image download failure. The container build process was fixed by changing the base images.
19 lines
384 B
YAML
19 lines
384 B
YAML
---
|
|
driver:
|
|
name: docker
|
|
platforms:
|
|
- name: centos-8-build
|
|
image: "centos:centos8"
|
|
pre_build_image: true
|
|
hostname: ipaserver.test.local
|
|
dns_servers:
|
|
- 8.8.8.8
|
|
volumes:
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
|
command: /usr/sbin/init
|
|
privileged: true
|
|
provisioner:
|
|
name: ansible
|
|
playbooks:
|
|
prepare: ../resources/playbooks/prepare-build.yml
|