-
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.
webstack/docker-nginx-php81-mysql80-no-laravel
- Update ReadMe, Dockerfile, docker-compose, and config files - Update Php to version 8.1 - Update MySql to version 8.0.30
- Loading branch information
Showing
5 changed files
with
10 additions
and
9 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,2 +1,2 @@ | ||
# Install MySQL | ||
FROM library/mysql:5.7.22 | ||
FROM library/mysql:8.0.30 |
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,7 +1,7 @@ | ||
# Install PHP 7.4 | ||
FROM php:7.4-fpm-alpine | ||
# Install PHP 8.1 | ||
FROM php:8.1-fpm-alpine | ||
|
||
# Install PHP Extension | ||
RUN apk --no-cache add zip libzip-dev \ | ||
&& docker-php-ext-configure zip \ | ||
&& docker-php-ext-install zip pdo pdo_mysql | ||
&& docker-php-ext-install zip pdo pdo_mysql \ |
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