correct the path again

This commit is contained in:
Andreas Zweili 2021-10-26 21:43:45 +02:00
parent 21c04dcfe3
commit 0fafa72b4b
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: "/home/{{ remote_user }}/"
dest: "{{ lookup('env', 'HOME') }}/"
become: false
- name: "Copy the traefik config"
copy:
src: "traefik.yaml"
dest: "/home/{{ remote_user }}/{{ docker_project_name }}/traefik.yaml"
dest: "{{ lookup('env', 'HOME') }}/{{ docker_project_name }}/traefik.yaml"
become: false