-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add docker #16
base: main
Are you sure you want to change the base?
Add docker #16
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You also need to update the README file on how to use/configure the project with Docker and the Makefile
@@ -62,6 +62,7 @@ public function map() | |||
* ) | |||
*/ | |||
Route::get('/', function () { | |||
dd(phpinfo()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this
@@ -21,25 +21,24 @@ | |||
} | |||
], | |||
"require": { | |||
"php": "^7.4", | |||
"php": "^8.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we're going to use PHP 8.1 features, put here as 8.1
depends_on: | ||
- php-base | ||
|
||
application: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add one more service only for workers/background jobs?
Added docker with php 8.1
updated laravel version to 9