D
Size: a a a
D
D
UD
В
KR
KR
- name: Start build projects
docker_container:
name: "{{ item.name }}_builder"
pull: yes
image: app-builder
command: install
interactive: yes
restart: no
recreate: yes
user: builder
detach: False
volumes:
- "{{ src_dest }}/{{ item.name }}:/source:rw"
- "{{ build_dest }}/{{ item.name }}:/build:rw"
- "{{ build_cache_dir }}/{{ item.name }}:/cache:rw"
with_items: "{{ projects }}"
ignore_errors: no
when: item.name not in only_pull
KR
D
KR
D
KR
D
D
KR
AS
KR
KR