mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			834 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			834 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
# Docker Routines
 | 
						|
- name: "include docker-compose role"
 | 
						|
  include_role: 
 | 
						|
    name: docker-compose
 | 
						|
 | 
						|
- name: install cymais-sphinx
 | 
						|
  command:
 | 
						|
    cmd: "pkgmgr install cymais-sphinx --clone-mode https"
 | 
						|
  notify: docker compose project build and setup
 | 
						|
 | 
						|
- name: update cymais for up to date docs
 | 
						|
  command:
 | 
						|
    cmd: "pkgmgr update cymais"
 | 
						|
  notify: docker compose project build and setup
 | 
						|
 | 
						|
- name: Get path of cymais-sphinx using pkgmgr
 | 
						|
  command: pkgmgr path cymais-sphinx
 | 
						|
  register: path_cymais_sphinx_output
 | 
						|
 | 
						|
- name: "include role nginx-domain-setup for {{application_id}}"
 | 
						|
  include_role:
 | 
						|
    name: nginx-domain-setup
 | 
						|
  vars:
 | 
						|
    domain:     "{{ domains[application_id] }}"
 | 
						|
    http_port: 	"{{ ports.localhost.http[application_id] }}"
 | 
						|
 | 
						|
- name: "copy docker-compose.yml and env file"
 | 
						|
  include_tasks: copy-docker-compose-and-env.yml |