mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-24 11:06:24 +02:00
Inverted docker_compose_skipp_file_creation to don't use double negation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
docker_compose_skipp_file_creation: false # If set to true the file creation will be skipped
|
||||
docker_compose_file_creation_enabled: true # If set to true the file creation will be skipped
|
||||
docker_pull_git_repository: false # Activates docker repository download and routine
|
||||
docker_compose_flush_handlers: false # Set to true in the vars/main.yml of the including role to autoflush after docker compose routine
|
@@ -24,7 +24,7 @@
|
||||
include_tasks: "04_files.yml"
|
||||
- name: "Ensure that {{ docker_compose.directories.instance }} is up"
|
||||
include_tasks: "05_ensure_up.yml"
|
||||
when: not docker_compose_skipp_file_creation | bool
|
||||
when: docker_compose_file_creation_enabled | bool
|
||||
|
||||
- name: "flush docker compose for '{{ application_id }}'"
|
||||
meta: flush_handlers
|
||||
|
@@ -11,7 +11,7 @@ database_password: "{{ applications | get_app_conf(application_
|
||||
docker_repository_address: "https://github.com/akaunting/docker.git"
|
||||
docker_pull_git_repository: true
|
||||
docker_repository_branch: "master"
|
||||
docker_compose_skipp_file_creation: false
|
||||
docker_compose_file_creation_enabled: true
|
||||
|
||||
# Akaunting
|
||||
AKAUNTING_URL: "{{ domains | get_url(application_id, WEB_PROTOCOL) }}"
|
||||
|
@@ -13,7 +13,7 @@ domain: "{{ domains | get_domain(application_id) }}"
|
||||
http_port: "{{ ports.localhost.http[application_id] }}"
|
||||
|
||||
# Docker
|
||||
docker_compose_skipp_file_creation: true # Handled in this role
|
||||
docker_compose_file_creation_enabled: false # Handled in this role
|
||||
docker_repository_address: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.repository') }}"
|
||||
docker_repository_branch: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.version') }}"
|
||||
docker_pull_git_repository: true
|
||||
|
@@ -11,7 +11,7 @@ database_type: 0 # Database type
|
||||
# Checkout roles/docker-compose/defaults/main.yml for all configuration options
|
||||
|
||||
docker_compose_flush_handlers: true # When this is set to true an auto-flush after the docker-compose.yml, and env deploy is triggered, otherwise you have todo it manual.
|
||||
docker_compose_skipp_file_creation: false # Skipp creation of docker-compose.yml file
|
||||
docker_compose_file_creation_enabled: true # Skipp creation of docker-compose.yml file
|
||||
|
||||
docker_pull_git_repository: true # This will automaticly pull a repository from the 'docker_repository_address'
|
||||
docker_repository_address: "" # The address of a repository which should be pulled
|
||||
|
Reference in New Issue
Block a user