try to correct the path

This commit is contained in:
Andreas Zweili 2021-10-26 21:08:41 +02:00
parent c2fe59352b
commit 21c04dcfe3
1 changed files with 2 additions and 2 deletions

View File

@ -35,11 +35,11 @@
- name: "Copy the project files to the server"
copy:
src: "{{ docker_project_name }}"
dest: "{{ ansible_user_dir }}/"
dest: "/home/{{ remote_user }}/"
become: false
- name: "Copy the traefik config"
copy:
src: "traefik.yaml"
dest: "{{ ansible_user_dir }}/{{ docker_project_name }}/traefik.yaml"
dest: "/home/{{ remote_user }}/{{ docker_project_name }}/traefik.yaml"
become: false