From 0b72d51e23ecb416aeb556789239f42f5fec77ab Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Tue, 26 Oct 2021 20:50:30 +0200 Subject: [PATCH] copy the docker-compose files to the client --- tasks/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index a180b63..c531891 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -31,3 +31,13 @@ exclude: - "LICENSE" - "README.md" + +- name: "Copy the project files to the server" + copy: + src: "{{ project_name }}" + dest: "{{ ansible_user_dir }}/{{ project_name }}" + +- name: "Copy the traefik config" + copy: + src: "traefik.yaml" + dest: "{{ ansible_user_dir }}/{{ project_name }}/traefik.yaml"