-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make package easier to develop with Docker
- Loading branch information
Marick van Tuil
committed
Nov 30, 2024
1 parent
5f58dd4
commit 49fceca
Showing
7 changed files
with
9,330 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
DB_DRIVER=mysql | ||
DB_HOST=mysql | ||
DB_PORT=3306 | ||
|
||
CI_CLOUD_TASKS_PROJECT_ID= | ||
CI_CLOUD_TASKS_QUEUE= | ||
CI_CLOUD_TASKS_LOCATION= | ||
CI_CLOUD_TASKS_SERVICE_ACCOUNT_EMAIL= | ||
CI_SERVICE_ACCOUNT_JSON_KEY= |
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,5 +1,5 @@ | ||
/vendor/ | ||
composer.lock | ||
.idea/ | ||
.phpunit.result.cache | ||
.phpunit.cache | ||
.env |
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,6 @@ | ||
FROM serversideup/php:8.3-fpm | ||
|
||
USER ROOT | ||
RUN install-php-extensions bcmath | ||
|
||
USER www-data |
Oops, something went wrong.