mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
14 lines
408 B
YAML
14 lines
408 B
YAML
---
|
|
- block:
|
|
- name: "load docker, proxy for '{{application_id}}'"
|
|
include_role:
|
|
name: cmp-docker-proxy
|
|
|
|
- name: Create symbolic link from .env file to repository
|
|
file:
|
|
src: "{{ docker_compose.files.env }}"
|
|
dest: "{{ [ docker_repository_path, '.env' ] | path_join }}"
|
|
state: link
|
|
|
|
- include_tasks: utils/run_once.yml
|
|
when: run_once_web_svc_logout is not defined |