Adds automatic building of the latest Docker images based on the default upstream repo https://github.com/jitsi/docker-jitsi-meet/
This commit is contained in:
parent
d13cff64cc
commit
a75f75e8be
3 changed files with 43 additions and 25 deletions
|
|
@ -22,6 +22,20 @@
|
|||
group: '{{ docker_user }}'
|
||||
tags: config
|
||||
|
||||
- name: "Git: Pull latest upstream docker-jitsi-meet sources (master)"
|
||||
git:
|
||||
repo: "{{ jitsi_docker_upstream_repo_url }}"
|
||||
dest: /home/{{ docker_user }}/jitsi/docker-jitsi-meet-src
|
||||
version: master
|
||||
register: git_pull_jitsi_docker_upstream_repo
|
||||
when: jitsi_build_latest_image_from_source == True
|
||||
|
||||
- name: "Build Jitsi Docker images"
|
||||
shell:
|
||||
chdir: /home/{{ docker_user }}/jitsi/docker-jitsi-meet-src
|
||||
cmd: make
|
||||
when: git_pull_jitsi_docker_upstream_repo.changed
|
||||
|
||||
- name: Provide docker-compose.yml
|
||||
template:
|
||||
src: templates/docker-compose.jitsi.yml.j2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue