mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-04 22:08:40 +00:00
Merge pull request #7915 from wallabag/make-blackfire-completely-optional
Make Blackfire completely optional
This commit is contained in:
commit
59831166ed
3 changed files with 8 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -38,6 +38,7 @@ web/uploads/
|
|||
|
||||
# Development
|
||||
docker/php/env
|
||||
docker/php/blackfire
|
||||
|
||||
# Composer PHAR
|
||||
/composer.phar
|
||||
|
|
15
compose.yaml
15
compose.yaml
|
@ -31,8 +31,8 @@ services:
|
|||
# - ./docker/postgres/env
|
||||
# Uncomment to enable Xdebug
|
||||
# - ./docker/php/xdebug
|
||||
- .env
|
||||
- .env.local
|
||||
# Uncomment to enable Blackfire
|
||||
# - ./docker/php/blackfire
|
||||
ports:
|
||||
- 8000:8000
|
||||
# Uncomment to permit Xdebug remote session
|
||||
|
@ -76,12 +76,11 @@ services:
|
|||
timeout: 3s
|
||||
retries: 3
|
||||
|
||||
blackfire:
|
||||
image: blackfire/blackfire:2
|
||||
ports: [ "8307" ]
|
||||
env_file:
|
||||
- .env
|
||||
- .env.local
|
||||
# blackfire:
|
||||
# image: blackfire/blackfire:2
|
||||
# ports: [ "8307" ]
|
||||
# env_file:
|
||||
# - ./docker/php/blackfire
|
||||
|
||||
volumes:
|
||||
db-data:
|
||||
|
|
Loading…
Reference in a new issue