Compare commits

..

No commits in common. "ac850f8966c2c54a4d6a8667b588f9981732b1f3" and "94e56ef57c0f31d0f0e98e36ee349da0cbdb7a93" have entirely different histories.

2 changed files with 12 additions and 33 deletions

View File

@ -1,35 +1,14 @@
---
- name: Download source
block:
- name: Clone repositories
when: item.value.build is defined
git:
repo: "{{ item.value.build.repository }}"
dest: /tmp/{{ item.key }}
version: "{{ item.value.build.version }}"
accept_hostkey: true
loop: "{{ omni_compose_apps | dict2items }}"
loop_control:
label: "{{ item.key }}"
rescue:
- name: Remove existing repository downloads
file:
path: /tmp/{{ item.key }}
state: absent
loop: "{{ omni_compose_apps | dict2items }}"
loop_control:
label: "{{ item.key }}"
- name: Clone repositories
when: item.value.build is defined
git:
repo: "{{ item.value.build.repository }}"
dest: /tmp/{{ item.key }}
version: "{{ item.value.build.version }}"
accept_hostkey: true
loop: "{{ omni_compose_apps | dict2items }}"
loop_control:
label: "{{ item.key }}"
- name: Clone repositories
when: item.value.build is defined
git:
repo: "{{ item.value.build.repository }}"
dest: /tmp/{{ item.key }}
version: "{{ item.value.build.version }}"
accept_hostkey: true
loop: "{{ omni_compose_apps | dict2items }}"
loop_control:
label: "{{ item.key }}"
- name: Build image
when: item.value.build is defined

View File

@ -93,7 +93,7 @@ omni_compose_apps:
scipio:
build:
repository: git@github.com:tjyork/Scipio.git
version: 1.1.2
version: 1.1.1
datastore: /appdata/scipio
account:
name: mech_scipio
@ -106,6 +106,6 @@ omni_compose_apps:
networks:
main: 192.168.106.0/24
versions:
default: 1.1.2
default: 1.1.1
database: "10"
cache: "6.2"