-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: check if a local template is already included and in that case d…
…on't append static ones with the same name docs: add github social card to the repo chore: better support for wordpress media
- Loading branch information
Janos Miko
committed
Feb 1, 2021
1 parent
a5aff30
commit 1bec247
Showing
12 changed files
with
107 additions
and
22 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
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 +1 @@ | ||
0.1.1-beta | ||
0.1.2-beta |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
ARG PHP_VERSION | ||
FROM docker.io/rewardenv/php-fpm:${PHP_VERSION} | ||
USER root | ||
|
||
# Resolve permission issues stemming from directories auto-created by docker due to mounts in sub-directories | ||
ENV CHOWN_DIR_LIST "wp-content/uploads" | ||
|
||
RUN set -eux \ | ||
&& curl -s https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar > /usr/bin/wp \ | ||
&& chmod +x /usr/bin/wp | ||
|
||
USER www-data |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[php] | ||
xdebug.remote_autostart=on | ||
xdebug.remote_host=${XDEBUG_REMOTE_HOST} |
14 changes: 14 additions & 0 deletions
14
images/php-fpm/wordpress/context/debug/etc/php.d/15-xdebug.ini
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
; Enable xdebug extension module | ||
zend_extension=xdebug.so | ||
|
||
xdebug.remote_enable="on" | ||
xdebug.remote_connect_back="on" | ||
xdebug.remote_addr_header="HTTP_X_DEBUG_HOST" | ||
xdebug.idekey=PHPSTORM | ||
xdebug.show_local_vars="on" | ||
xdebug.var_display_max_depth=3 | ||
xdebug.max_nesting_level=250 | ||
xdebug.file_link_format = '"phpstorm://open?file=%f&line=%l"' | ||
xdebug.profiler_enable=0 | ||
xdebug.profiler_output_dir="/tmp" | ||
xdebug.profiler_output_name=cachegrind.out.%s.%t |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ARG PHP_VERSION | ||
FROM docker.io/rewardenv/php-fpm:${PHP_VERSION}-wordpress | ||
USER root | ||
|
||
RUN set -eux \ | ||
&& yum install -y php-pecl-xdebug \ | ||
&& yum clean all \ | ||
&& rm -rf /var/cache/yum | ||
|
||
COPY debug/etc/*.ini /etc/ | ||
COPY debug/etc/php.d/*.ini /etc/php.d/ | ||
|
||
USER www-data |
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
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