mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
16 lines
464 B
YAML
16 lines
464 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
|
|
|
|
- name: run the web svc logout tasks once
|
|
set_fact:
|
|
run_once_web_svc_logout: true
|
|
when: run_once_web_svc_logout is not defined |