GoAccess: combine host and path in reports
This commit is contained in:
@@ -69,10 +69,22 @@
|
||||
group: "{{ app_user }}"
|
||||
mode: "0640"
|
||||
|
||||
- name: "Copy Dockerfile and entrypoint for the local jq-enabled goaccess image"
|
||||
ansible.builtin.copy:
|
||||
src: "./files/{{ app_name }}/{{ item.name }}"
|
||||
dest: "{{ (base_dir, item.name) | path_join }}"
|
||||
owner: "{{ app_user }}"
|
||||
group: "{{ app_user }}"
|
||||
mode: "{{ item.mode }}"
|
||||
loop:
|
||||
- {name: "Dockerfile", mode: "0640"}
|
||||
- {name: "entrypoint.sh", mode: "0750"}
|
||||
|
||||
- name: "Run application with docker compose"
|
||||
community.docker.docker_compose_v2:
|
||||
project_src: "{{ base_dir }}"
|
||||
state: "present"
|
||||
build: "always"
|
||||
remove_orphans: true
|
||||
tags:
|
||||
- run-app
|
||||
|
||||
Reference in New Issue
Block a user