We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4eaba commit 3810c48Copy full SHA for 3810c48
docker/main/ubuntu/provision/roles/php/tasks/blackfire.yml
@@ -0,0 +1,17 @@
1
+- name: Add blackfire.io key
2
+ apt_key:
3
+ url: https://packagecloud.io/gpg.key
4
+ state: present
5
+
6
+- name: Add blackfire.io repository
7
+ apt_repository:
8
+ repo: 'deb http://packages.blackfire.io/debian any main'
9
10
+ update_cache: yes
11
12
+- name: Install blackfire-php
13
+ apt:
14
+ name: '{{ item }}'
15
16
+ with_items:
17
+ - blackfire-php
docker/main/ubuntu/provision/roles/php/tasks/main.yml
@@ -2,6 +2,10 @@
tags:
- bootstrap
+- include: blackfire.yml
+ tags:
+ - bootstrap
- include: configuration.yml
- entrypoint
0 commit comments