-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from crowdsecurity/feature/wp-5-8
test(wordpress 5.8): Add compatibility test for WordPress 5.8
- Loading branch information
Showing
10 changed files
with
73 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM wordpress:5.8-php7.3 | ||
|
||
RUN usermod -u 1000 www-data | ||
|
||
RUN a2disconf remoteip && a2dismod remoteip && service apache2 restart | ||
|
||
RUN apt-get update && apt-get install -y git libmemcached-dev zlib1g-dev \ | ||
&& pecl install -o -f redis memcached \ | ||
&& rm -rf /tmp/pear \ | ||
&& docker-php-ext-enable redis memcached \ | ||
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer |
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,11 @@ | ||
FROM wordpress:5.8-php7.4 | ||
|
||
RUN usermod -u 1000 www-data | ||
|
||
RUN a2disconf remoteip && a2dismod remoteip && service apache2 restart | ||
|
||
RUN apt-get update && apt-get install -y git libmemcached-dev zlib1g-dev \ | ||
&& pecl install -o -f redis memcached \ | ||
&& rm -rf /tmp/pear \ | ||
&& docker-php-ext-enable redis memcached \ | ||
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer |
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,11 @@ | ||
FROM wordpress:5.8-php8.0 | ||
|
||
RUN usermod -u 1000 www-data | ||
|
||
RUN a2disconf remoteip && a2dismod remoteip && service apache2 restart | ||
|
||
RUN apt-get update && apt-get install -y git libmemcached-dev zlib1g-dev \ | ||
&& pecl install -o -f redis memcached \ | ||
&& rm -rf /tmp/pear \ | ||
&& docker-php-ext-enable redis memcached \ | ||
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer |
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
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