Arkadius Jonczek
a71d5a8548
add Grafana to Random Tools list in introduction documentation
2017-10-19 18:51:17 +02:00
Arkadius Jonczek
b8e657b68f
Merge remote-tracking branch 'upstream/master'
2017-10-19 14:31:02 +02:00
Arkadius Jonczek
8aaa074af2
add Use Grafana section to documention
2017-10-19 14:29:50 +02:00
Mahmoud Zalt
3005dde240
Merge pull request #1200 from TitasGailius/master
...
Use node:alpine image for laravel-echo-server
2017-10-18 22:15:42 +03:00
Mahmoud Zalt
b3922995e1
Merge pull request #1199 from zuohuadong/master
...
add postgres for php-fpm
2017-10-18 22:15:22 +03:00
Arkadius Jonczek
49e48edefd
Merge remote-tracking branch 'upstream/master'
2017-10-18 14:41:20 +02:00
Arkadius Jonczek
182386b514
removed grafana-storage
2017-10-18 14:38:10 +02:00
Arkadius Jonczek
bea122a1fd
removed depends_on from grafana and added Grafana port to env-example
2017-10-18 14:34:27 +02:00
Titas Gailius
9abd7c30f2
Use node:alpine image for laravel-echo-server
2017-10-17 18:05:21 +03:00
zuohuadong
6a4509c0ca
Merge branch 'master' into master
2017-10-17 12:27:42 +08:00
Zuohuadong
7f5d9d07d1
add postgresql for php-fpm
2017-10-17 12:23:48 +08:00
Mahmoud Zalt
a5c505bf28
Merge pull request #1181 from zuohuadong/patch-9
...
use caddy in Apache-2.0
2017-10-14 22:33:43 +03:00
Mahmoud Zalt
427088e11b
Merge pull request #1189 from maxhelias/feature/maildev
...
Add MailDev Container
2017-10-14 22:32:19 +03:00
Mahmoud Zalt
3467821c28
Merge pull request #1184 from zuohuadong/patch-12
...
alpine be quckly
2017-10-14 22:31:51 +03:00
Mahmoud Zalt
f9553dff4c
Merge pull request #1183 from zuohuadong/patch-11
...
update jenkins version
2017-10-14 22:31:23 +03:00
Maxime Helias
8e556008d8
Add MailDev Container
2017-10-14 20:01:16 +02:00
Zuohuadong
17ea7b313f
update
2017-10-12 18:54:09 +08:00
zuohuadong
dff0e82ddb
alpine be quckly
...
alpine be quckly
2017-10-12 18:42:11 +08:00
zuohuadong
1702a5cc09
rm version
2017-10-12 18:40:12 +08:00
zuohuadong
f15bc8e6b7
update jenkins version
...
update jenkins version to 2.73.2
update docker-compose version to 1.16.1
update TINI version to 0.16.1
2017-10-12 18:37:26 +08:00
Mahmoud Zalt
903c77421c
Merge pull request #1182 from khoanguyen96/fix-typos-contributing
...
fix typos in contributing
2017-10-12 05:47:33 +03:00
Khoa Nguyen
2bedfdd9d7
fix typos in contributing
2017-10-11 18:08:24 -07:00
zuohuadong
525c4313a0
use caddy in Apache-2.0
...
see: https://caddyserver.com/products/licenses
so, I use caddypulg, it is free
2017-10-11 19:48:07 +08:00
Mahmoud Zalt
01c358b6bc
Merge pull request #1176 from taufek/tj-chrome-driver-var
...
Move Chrome Driver Version to Env
2017-10-06 20:44:30 +03:00
Mahmoud Zalt
a0685705c0
Merge pull request #1175 from taufek/tj-dusk-doc-2
...
Update Dusk Documentation
2017-10-06 20:43:40 +03:00
Taufek Johar
98b2b2e47b
Update Dusk Documentation
...
Added new option on how to setup and run Dusk tests without Selenium.
2017-10-07 00:47:02 +08:00
Taufek Johar
eeee14338f
Move Chrome Driver Version to Env
...
This will allow us to upgrade chrome driver easily. Set the default chrome driver to 2.32.
Also remove the comment and empty line to avoid getting below warning:
```
[WARNING]: Empty continuation lines will become errors in a future release.
```
2017-10-06 22:58:52 +08:00
Mahmoud Zalt
a2edf57e3b
Merge pull request #1172 from taufek/tj-chrome-for-dusk
...
Install Dependencies to Run Dusk Tests
2017-10-03 11:43:49 +03:00
Taufek Johar
881cbfb8c2
Install Dependencies to Run Dusk Tests
...
**Why we need this change?**
Currently we are unable to run Dusk (Browser) tests in workspace container. This change,
is to allow us to install all dependencies needed to run Dust test which consists of
1. Linux packages such as xvfb (x-virtual frame buffer to run browser in headless container) and etc.
2. Chrome browser.
3. Chrome driver.
To install the Dusk dependencies.
1. Update `WORKSPACE_INSTALL_DUSK_DEPS` to true.
2. Run `docker-compose build workspace`.
I've also added couple of aliases to facilitate the preparation of test environment.
1. xvfb = `Xvfb -ac :0 -screen 0 1024x768x16 &` (run x-virtual frame buffer in the background)
2. serve = `php artisan serve --quiet &` (run laravel app in the background)
Once those are installed, we will need to update the default chrome driver argument in Laravel 5.5
from `--headless` to `sandbox`. Below are the steps to run Dusk in workspace.
1. `docker-compose run workspace bash` (get into workspace).
2. `laravel new dusk-test` (generate new lavarel app for testing purpose).
3. `cd dusk-test` (change directory to newly generate app folder).
4. `composer install --dev laravel/dusk` (install dusk via composer).
5. `php artisan dusk:install` (generate dusk files).
6. `sed -i '/APP_URL/d' .env` (remove APP_URL entry in .env)
7. `echo 'APP_URL=localhost:8000' >> .env` (add new APP_URL entry in .env)
8. `sed -i--'s/headless/no-sandbox/g' tests/DuskTestCase.php` (replace the default chrome driver argument).
9. `xvfb` (alias to run Xvfb instance in the background).
10. `serve` (alias to run laravel app in the background).
11. `dusk` (alias to run Dusk test).
2017-10-02 20:08:01 +08:00
Arkadius Jonczek
508e9ebd9e
added grafana docker container
2017-10-01 02:36:55 +02:00
Mahmoud Zalt
6cff904eba
Merge pull request #1170 from id2s/feature-php-ldap-workspace
...
Add PHP LDAP extension if needed
2017-09-29 20:15:46 +03:00
Kévin Mathieu
04770bc4ec
Add PHP LDAP extension if needed
2017-09-29 14:56:28 +02:00
Mahmoud Zalt
1281490c39
Merge pull request #1168 from nunomazer/master
...
Add pecl before mongo install on Dockerfile-56 to stop mongodb breaking building
2017-09-29 00:57:45 +03:00
Ademir Mazer Jr [ Nuno ]
3f7988060e
Add pecl before mongo install
2017-09-28 17:16:05 -03:00
Mahmoud Zalt
615cb72eab
Merge pull request #1167 from ifdattic/patch-1
...
Fix typo
2017-09-28 19:22:37 +03:00
Andrew Marcinkevičius
e036e69da2
Fix typo
2017-09-28 16:59:21 +03:00
Mahmoud Zalt
8989c73711
Merge pull request #1163 from luciano-jr/FixAerospikeClientLink
...
Fix aerospike client link
2017-09-25 23:32:49 +03:00
luciano
61144ab2d9
Change the wrong link to aerospike client PHP
2017-09-25 18:30:00 +01:00
Luciano Jr
221edf4bb2
Merge pull request #23 from laradock/master
...
Just update the fork
2017-09-25 18:17:10 +01:00
Mahmoud Zalt
5a073ae841
Merge pull request #1158 from taufek/tj-aliases-update
...
Add artisan aliases
2017-09-25 01:16:41 +03:00
Taufek Johar
8c1e71eca5
Add artisan aliases
...
Added below php artisan commonly used aliases:
```
dusk = php artisan dusk
fresh = php artisan migrate:fresh
refresh = php artisan migrate:refresh
rollback = php artisan migrate:rollback
```
2017-09-24 22:16:04 +08:00
Mahmoud Zalt
c0e823b8d2
Merge pull request #1153 from taufek/tj-terraform
...
Add Terraform to Workspace
2017-09-24 00:56:25 +03:00
Taufek Johar
8cb4c8d62e
Add Terraform to Workspace
...
Added Terraform (www.terraform.io) binary to workspace container.
This tool is useful to spawn resources to multiple cloud providers via config files.
2017-09-23 15:49:55 +08:00
Mahmoud Zalt
f765afd4c2
Merge pull request #1151 from luciano-jr/AddAerospikeExtensionOnPhpFpm
...
Add aerospike.so line to be load on php-fpm
2017-09-22 19:32:19 +03:00
Mahmoud Zalt
6ea49a0683
Merge pull request #1150 from samdark/fix-typo
...
Fixed typo in "nginx"
2017-09-22 19:31:55 +03:00
luciano
998aa1365e
Add aerospike.so line to be load on php-fpm
2017-09-22 12:23:20 +01:00
Luciano Jr
f2420ec52c
Merge pull request #22 from laradock/master
...
Just update the fork
2017-09-22 12:13:42 +01:00
Alexander Makarov
fe254e86e3
Fixed typo in nginx [skip ci]
2017-09-22 13:10:08 +03:00
Mahmoud Zalt
53b7f75500
Merge pull request #1145 from vjekoslav/master
...
Fixes issue #1139 , non-responding mirrors.aliyun.com. Reverses 6440ca…
2017-09-20 20:09:47 +03:00
Vjekoslav Nikolic
4150f0b140
Fixes issue #1139 , non-responding mirrors.aliyun.com. Reverses 6440ca841a
2017-09-20 05:44:36 -07:00