Add gitlab

This commit is contained in:
Jake Howard
2020-08-29 23:56:14 +01:00
parent da90b12643
commit 0ce15cb4d8
5 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,17 @@
- name: Create install directory
file:
path: /opt/gitlab
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/gitlab/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
notify: restart gitlab
become: true