mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
implemented first draft of versioned akaunting
This commit is contained in:
parent
05139506d5
commit
72748de2b0
@ -88,6 +88,9 @@ bash docker-volume-recover.sh akaunting_akaunting-db ${machine_id:0:64} "$backup
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## todo
|
||||||
|
- implement build when new akaunting version is set
|
||||||
|
|
||||||
## Further information
|
## Further information
|
||||||
- https://github.com/akaunting/docker
|
- https://github.com/akaunting/docker
|
||||||
- https://akaunting.com/forum/discussion/installation-update/updating-to-300-failed-cant-manually-update-either
|
- https://akaunting.com/forum/discussion/installation-update/updating-to-300-failed-cant-manually-update-either
|
||||||
|
@ -6,16 +6,37 @@
|
|||||||
template: src=roles/native-docker-reverse-proxy/templates/domain.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
|
template: src=roles/native-docker-reverse-proxy/templates/domain.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
|
||||||
notify: restart nginx
|
notify: restart nginx
|
||||||
|
|
||||||
|
- name: register directory
|
||||||
|
stat:
|
||||||
|
path: "{{docker_compose_akaunting_path}}"
|
||||||
|
register: docker_compose_akaunting_path_register
|
||||||
|
|
||||||
|
- name: checkout repository
|
||||||
|
ansible.builtin.shell: git checkout .
|
||||||
|
become: true
|
||||||
|
args:
|
||||||
|
chdir: "{{docker_compose_akaunting_path}}"
|
||||||
|
when: docker_compose_akaunting_path_register.stat.exists
|
||||||
|
become: true
|
||||||
|
|
||||||
- name: pull docker repository
|
- name: pull docker repository
|
||||||
git:
|
git:
|
||||||
repo: "https://github.com/akaunting/docker.git"
|
repo: "https://github.com/akaunting/docker.git"
|
||||||
dest: "/home/administrator/docker-compose/akaunting/"
|
dest: "{{docker_compose_akaunting_path}}"
|
||||||
update: yes
|
update: yes
|
||||||
|
notify: setup akaunting
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: set akaunting version
|
||||||
|
ansible.builtin.shell: find . -type f -exec sed -i 's/akaunting:latest/akaunting:{{akaunting_version}}/' {} + && find . -type f -exec sed -i 's/version=latest/version={{akaunting_version}}/' {} +
|
||||||
|
become: true
|
||||||
|
args:
|
||||||
|
chdir: "{{docker_compose_akaunting_path}}"
|
||||||
|
|
||||||
- name: configure db.env
|
- name: configure db.env
|
||||||
template: src=db.env.j2 dest=/home/administrator/docker-compose/akaunting/env/db.env
|
template: src=db.env.j2 dest={{docker_compose_akaunting_path}}/env/db.env
|
||||||
notify: setup akaunting
|
notify: setup akaunting
|
||||||
|
|
||||||
- name: configure run.env
|
- name: configure run.env
|
||||||
template: src=run.env.j2 dest=/home/administrator/docker-compose/akaunting/env/run.env
|
template: src=run.env.j2 dest={{docker_compose_akaunting_path}}/env/run.env
|
||||||
notify: setup akaunting
|
notify: setup akaunting
|
||||||
|
1
roles/docker-akaunting/vars/main.yml
Normal file
1
roles/docker-akaunting/vars/main.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
docker_compose_akaunting_path: "/home/administrator/docker-compose/akaunting/"
|
Loading…
Reference in New Issue
Block a user