docker-scripts/bin/ansible/roles/atlassian.jira/tasks/atlassian.jira.7.jdk8p1.yml
STAM 61938a770d
big rework
bump versions

updated `LazyGIT` to `0.40.2`

converterd some envs to args

sources.list fix + nextcloud updates

python fix

java fixes

python fix

java fixes

bitbucket full images
2024-02-09 13:48:51 +03:00

52 lines
1.5 KiB
YAML

- name: Read versions from file
slurp:
src: "roles/common/files/versions/jira/7.jdk8p1.txt"
register: version_output
- name: Set version variable
set_fact:
jira_versions: "{{ version_output['content'] | b64decode | trim | split('\n') }}"
- name: Create directories for Jira versions
file:
path: "{{ target_directory_jira_7 }}/{{ item }}"
state: directory
mode: '0755'
force: true
with_items: "{{ jira_versions }}"
- name: Copy template with link to each version directory
template:
src: "template.env.legacy2software.j2"
dest: "{{ target_directory_jira_7 }}/{{ item }}/.env"
force: true
with_items: "{{ jira_versions }}"
- name: Copy docker-compose.yml from 'files' directory to each version directory
copy:
src: "docker-compose.yml"
dest: "{{ target_directory_jira_7 }}/{{ item }}/docker-compose.yml"
force: true
with_items: "{{ jira_versions }}"
- name: Copy Dockerfile from 'files' directory to each version directory
copy:
src: "Dockerfile.jdk8"
dest: "{{ target_directory_jira_7 }}/{{ item }}/Dockerfile"
force: true
with_items: "{{ jira_versions }}"
- name: Copy entrypoint.sh from 'files' directory to each version directory
copy:
src: "entrypoint.sh"
dest: "{{ target_directory_jira_7 }}/{{ item }}/entrypoint.sh"
force: true
with_items: "{{ jira_versions }}"
- name: Copy Makefile from 'files' directory to each version directory
copy:
src: "Makefile"
dest: "{{ target_directory_jira_7 }}/{{ item }}/Makefile"
force: true
with_items: "{{ jira_versions }}"