Skip to content

Commit 3810c48

Browse files
committed
1 parent 2d4eaba commit 3810c48

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
state: present
10+
update_cache: yes
11+
12+
- name: Install blackfire-php
13+
apt:
14+
name: '{{ item }}'
15+
state: present
16+
with_items:
17+
- blackfire-php

docker/main/ubuntu/provision/roles/php/tasks/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
tags:
33
- bootstrap
44

5+
- include: blackfire.yml
6+
tags:
7+
- bootstrap
8+
59
- include: configuration.yml
610
tags:
711
- entrypoint

0 commit comments

Comments
 (0)