File tree Expand file tree Collapse file tree 4 files changed +43
-6
lines changed
Expand file tree Collapse file tree 4 files changed +43
-6
lines changed Original file line number Diff line number Diff line change 2424 fi
2525 echo ::set-output name=VERSION::$REF
2626
27- - name : Publish
28- env :
29- DOCKER_TAG : ${{ steps.get_version.outputs.VERSION }}
30- run : echo $DOCKER_TAG
31-
3227 - name : Docker login
3328 run : echo '${{ secrets.DOCKER_PASSWORD }}' | docker login --username ${{ secrets.DOCKER_USERNAME }} --password-stdin
3429
Original file line number Diff line number Diff line change @@ -8,11 +8,13 @@ services:
88 - docker
99
1010env :
11+ # Use Memcached first because it is really slow
12+ - LAYER=memcached PHP="72 73 74"
13+ # All layers in alphabetical order
1114 - LAYER=amqp PHP="72 73 74"
1215 - LAYER=blackfire PHP="72 73 74"
1316 - LAYER=gmp PHP="72 73 74"
1417 - LAYER=mailparse PHP="72 73 74"
15- - LAYER=memcached PHP="72 73 74"
1618 - LAYER=pcov PHP="72 73 74"
1719 - LAYER=pgsql PHP="72 73 74"
1820 - LAYER=xdebug PHP="72 73 74"
Original file line number Diff line number Diff line change 1+ # Change log
2+
3+ ## 0.3.0
4+
5+ ### Added
6+
7+ - Support for Mailparse
8+ - Support for pcov
9+
10+ ### Changed
11+
12+ - Publishing docker images for each layer
13+ - Use AsyncAws internally to maintain images
14+
15+ ## 0.2.1
16+
17+ ### Added
18+
19+ - Support for pgsql
20+
21+ ## 0.2.0
22+
23+ ### Added
24+
25+ - Support for Memcahced
26+ - Support for Memcahce
27+ - Support for GMP
28+
29+ ## 0.1.0
30+
31+ First release
Original file line number Diff line number Diff line change @@ -77,6 +77,15 @@ to make sure you are listening to `tcp://0.0.0.0:8307`.
7777This [ blog post] ( https://developer.happyr.com/installing-blackfire-multiple-servers )
7878could be helpful as it describes how to install the Blackfire Agent.
7979
80+ ## Docker images
81+
82+ There are Docker images for every layer. They are updated on every push to master
83+ and on every tag. The name of the image is ` bref/extra-[name]-php-[version] ` . Find
84+ all images on [ Docker hub] ( https://hub.docker.com/u/bref ) .
85+
86+ These are the same docker images that creates the layers. All layer files lives inside
87+ the ` /opt ` directory in the image.
88+
8089## For contributors and maintainers
8190
8291### Creating a new layer
You can’t perform that action at this time.
0 commit comments