-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: install blackfire probe in image
- Loading branch information
1 parent
dd59ab5
commit 73ac1e3
Showing
5 changed files
with
52 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
services: | ||
### | ||
# Main php container | ||
# | ||
# This container runs the php-fpm process and serves WordPress. | ||
# | ||
# Requires the db container to be running. | ||
# | ||
# Contains: | ||
# - php-fpm, xdebug, composer | ||
# - WordPress installation (in volume web-data) | ||
# - Various tools: zsh, vim | ||
# | ||
# See https://github.com/myparcelnl/docker-images/pkgs/container/wordpress | ||
## | ||
wordpress: | ||
image: ghcr.io/myparcelnl/wordpress:6.3-php7.4 | ||
image: ghcr.io/myparcelnl/wordpress:${WP_VERSION}-php${PHP_VERSION} | ||
build: | ||
context: images/wordpress | ||
dockerfile: Dockerfile | ||
args: | ||
PHP_VERSION: ${PHP_VERSION} | ||
WP_VERSION: ${WP_VERSION} | ||
|
||
prestashop: | ||
image: ghcr.io/myparcelnl/prestashop:${PS_VERSION}-php${PHP_VERSION} | ||
build: | ||
context: images/prestashop | ||
dockerfile: Dockerfile | ||
args: | ||
PHP_VERSION: ${PHP_VERSION} | ||
PS_VERSION: ${PS_VERSION} | ||
|
||
shopware: | ||
image: ghcr.io/myparcelnl/shopware:${SW_VERSION}-php${PHP_VERSION} | ||
build: | ||
context: images/shopware | ||
dockerfile: Dockerfile | ||
args: | ||
PHP_VERSION: ${PHP_VERSION} | ||
SW_VERSION: ${SW_VERSION} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters