Commit Graph

2974 Commits

Author SHA1 Message Date
Shao Yu-Lung (Allen)
74bd308dc2
Merge pull request #3207 from leamsigc/fix-documentation-scroll
Documentation Scroll  on the x-axis
2022-07-30 11:07:32 +08:00
Shao Yu-Lung (Allen)
ec6c776251
Merge pull request #3248 from fahamjv/master
Fix Invalid template bug in .env.example file
2022-07-28 16:23:24 +08:00
Shao Yu-Lung (Allen)
a361dbb80e
Merge pull request #3242 from channaveer/patch-1
Updated NGINX SSL Protocols
2022-07-27 20:17:08 +08:00
Shao Yu-Lung (Allen)
98452b5138
Merge pull request #3244 from laradock/dependabot/npm_and_yarn/react/terser-4.8.1
Bump terser from 4.8.0 to 4.8.1 in /react
2022-07-27 20:16:48 +08:00
fahamjv
ee88ac2e8c
put Traefik varible in quotation 2022-07-27 13:50:48 +04:30
dependabot[bot]
1101d29779
Bump terser from 4.8.0 to 4.8.1 in /react
Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-21 19:50:06 +00:00
Shao Yu-Lung (Allen)
a4c79b5d8e
Merge pull request #3222 from grasebit/bugfix/redis_webui_password
password is required for redis-webui
2022-07-18 21:27:55 +08:00
Shao Yu-Lung (Allen)
7eaaa0cedc
Merge pull request #3209 from Yohoed2000/feature/add_event_extension
Add php event extension
2022-07-18 21:27:06 +08:00
Shao Yu-Lung (Allen)
ab85daef0e
Merge pull request #3225 from laradock/dependabot/npm_and_yarn/react/eventsource-1.1.1
Bump eventsource from 1.0.7 to 1.1.1 in /react
2022-07-18 21:25:55 +08:00
Shao Yu-Lung (Allen)
44b7d1965c
Merge pull request #3235 from amorZhu/amorZhu-patch-1
Update zsh config
2022-07-17 12:40:10 +08:00
Shao Yu-Lung (Allen)
0483b05821
Merge pull request #3205 from Yohoed2000/master
feat:add Soketi Server
2022-07-17 12:37:50 +08:00
Shao Yu-Lung (Allen)
a4bc68c470
Merge pull request #3231 from erikn69/patch-1
Fix tests
2022-07-17 12:36:39 +08:00
Channaveer Hakari
225988b8ef
Updated SSL Protocols
For the sake of security purposes old SSL protocols ie TLSv1 and TLSv1.1 should be avoided.
2022-07-16 23:37:13 +05:30
zhushaolong
55b5fbaa9b
Update zsh config
1. Plugin laravel5 not found in zsh plugin list.
2. The executable command for the composer package could not be found. For example 'laravel new xxx'. The zsh composer plugin solves this problem.
2022-07-01 02:42:33 +08:00
erikn69
c99d86b8e3
Fix tests 2022-06-21 10:09:47 -05:00
dependabot[bot]
9d3aec6a3f
Bump eventsource from 1.0.7 to 1.1.1 in /react
Bumps [eventsource](https://github.com/EventSource/eventsource) from 1.0.7 to 1.1.1.
- [Release notes](https://github.com/EventSource/eventsource/releases)
- [Changelog](https://github.com/EventSource/eventsource/blob/master/HISTORY.md)
- [Commits](https://github.com/EventSource/eventsource/compare/v1.0.7...v1.1.1)

---
updated-dependencies:
- dependency-name: eventsource
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-01 22:27:38 +00:00
grasebit
b7945ded63 Add redis password to redis-webui. 2022-05-30 11:01:32 +09:00
grasebit
0e79534cf8 戻し 2022-05-30 10:58:39 +09:00
grasebit
727c53ac6b fix redis-webui 2022-05-27 17:06:50 +09:00
Shao Yu-Lung (Allen)
27cb551a9f
Merge pull request #3210 from rc1021/patch-3
Solved undefined function imagecreatefromjpeg
2022-05-27 09:30:32 +08:00
Shao Yu-Lung (Allen)
0da3043334
Merge pull request #3218 from xiagw/fix-redis-requirepass
🐞fix(M  .env.example M  docker-compose.yml): redis --requirepass
2022-05-21 10:43:28 +08:00
xiagw
e776f61745
🐞fix(M .env.example
M  docker-compose.yml): redis --requirepass
2022-05-18 09:21:20 +08:00
xiagw
e5ea20f0fb
Merge remote-tracking branch 'origin/master' into master-fork 2022-05-18 09:01:48 +08:00
Wuweiming
baeb2a2cb6 fix workspace DockerFile 2022-05-09 10:31:31 +08:00
許益銘
7abbfd3142
Solved undefined function imagecreatefromjpeg
[Solved] `Call to undefined function Intervention\Image\Gd\imagecreatefromjpeg()`

[PHP 7.4 Changelog](https://www.php.net/manual/en/migration74.other-changes.php) in GD section

we can run docker-php-ext-configure command to configure our gd with JPEG support. 
we don't need to provide flag to enable PNG.

```
$ docker exec -it laradock_php-worker_1 php -r 'print_r(gd_info());'
Array
(
    [GD Version] => bundled (2.1.0 compatible)
    [FreeType Support] => 1
    [FreeType Linkage] => with freetype
    [GIF Read Support] => 1
    [GIF Create Support] => 1
    [JPEG Support] => 1
    [PNG Support] => 1
    [WBMP Support] => 1
    [XPM Support] => 
    [XBM Support] => 1
    [WebP Support] => 
    [BMP Support] => 1
    [TGA Read Support] => 1
    [JIS-mapped Japanese Font Support] => 
)
```
2022-05-06 23:40:14 +08:00
Wuweiming
a285caa18f add php event 2022-05-06 16:11:29 +08:00
leamsigc
220f2eb451 Problem:
- When user are reading the documentation, there is a horizontal scrolling.
Solution:
 - Prevent scroll x on mibile view
2022-05-03 21:24:58 +02:00
Wuweiming
20463869c2 fix:add .env.example 2022-04-29 14:29:30 +08:00
Wuweiming
cd9542198c feat:Add the broadcast driver officially recommended by laravel 2022-04-29 14:21:10 +08:00
Shao Yu-Lung (Allen)
a2dd97674f
Merge pull request #3199 from laradock/dependabot/npm_and_yarn/react/async-2.6.4
Bump async from 2.6.3 to 2.6.4 in /react
2022-04-26 20:48:46 +08:00
Shao Yu-Lung (Allen)
e63d0e7974
Merge pull request #3201 from afsh7n/patch-1
Update .env.example
2022-04-26 20:48:28 +08:00
Shao Yu-Lung (Allen)
6ca7e1357f
Merge pull request #3202 from afsh7n/patch-3
Update index.md
2022-04-26 20:48:05 +08:00
Afshin Tavakolian
4263de43fd
Update index.md
8.1 PHP-FPM was added to the samples
2022-04-26 15:18:18 +04:30
Afshin Tavakolian
bf0887c675
Update .env.example
8.1 PHP-FPM was added to the samples
2022-04-26 15:07:08 +04:30
dependabot[bot]
fe885ea130
Bump async from 2.6.3 to 2.6.4 in /react
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4.
- [Release notes](https://github.com/caolan/async/releases)
- [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md)
- [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4)

---
updated-dependencies:
- dependency-name: async
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-21 14:36:49 +00:00
Shao Yu-Lung (Allen)
7bfdb23cb1
Merge pull request #3197 from laradock/dependabot/npm_and_yarn/react/minimist-1.2.6
Bump minimist from 1.2.5 to 1.2.6 in /react
2022-04-21 22:35:44 +08:00
dependabot[bot]
10b3906da4
Bump minimist from 1.2.5 to 1.2.6 in /react
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-17 15:53:50 +00:00
Shao Yu-Lung (Allen)
baa6ede88d
Merge pull request #3195 from PaolaRuby/patch-1
Let choose alpine correct version
2022-04-17 00:07:38 +08:00
PaolaRuby
c7eba246c9
Let choose alpine correct version 2022-04-13 09:16:52 -05:00
Shao Yu-Lung (Allen)
6092304046
Merge pull request #3194 from erikn69/fix_tests
Fix TESTS
2022-04-13 09:17:46 +08:00
Erik Niebla
cb77808a94 Fix tests 2022-04-12 19:10:39 -05:00
Shao Yu-Lung (Allen)
5028e0c37b
Merge pull request #3180 from bobbyshaw/patch-1
Do not install tokenizer into laravel-worker when php version is 8.1
2022-03-31 08:15:37 +08:00
Shao Yu-Lung (Allen)
e2e927d03d
Merge pull request #3141 from esfahanweb/fix-audiowaveform
try to fix audiowaveform for workspace
2022-03-29 13:18:48 +08:00
Shao Yu-Lung (Allen)
dfbd87bb09
Merge pull request #3186 from erikn69/fix_zmq
Fix php-zmq link
2022-03-29 13:15:12 +08:00
Erik Niebla
ae4e231988 Fix php-zmq link 2022-03-28 14:59:01 -05:00
Shao Yu-Lung (Allen)
cc7ceb0990
Merge pull request #3177 from laradock/dependabot/npm_and_yarn/react/lodash-es-4.17.21
Bump lodash-es from 4.17.15 to 4.17.21 in /react
2022-03-25 23:19:06 +08:00
Shao Yu-Lung (Allen)
eee4d54339
Merge pull request #3182 from JKair/master
fix mongo description style wrong.
2022-03-25 23:18:21 +08:00
Kair
e8ea58a8ad
fix mongo description style wrong. 2022-03-25 17:22:38 +08:00
Tom Robertshaw
ddd06fecfd
Do not install tokenizer into laravel-worker when php version is 8.1 2022-03-19 16:58:35 +00:00
dependabot[bot]
a28b5bfbe6
Bump lodash-es from 4.17.15 to 4.17.21 in /react
Bumps [lodash-es](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.21)

---
updated-dependencies:
- dependency-name: lodash-es
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-15 20:52:46 +00:00