add rethink-db container
This commit is contained in:
parent
0218ef6b9f
commit
343a950adc
42
README.md
42
README.md
|
@ -124,6 +124,7 @@ Let's see how easy it is to install `NGINX`, `PHP`, `Composer`, `MySQL` and `Red
|
||||||
- MariaDB
|
- MariaDB
|
||||||
- MongoDB
|
- MongoDB
|
||||||
- Neo4j
|
- Neo4j
|
||||||
|
- RethinkDB
|
||||||
- **Cache Engines:**
|
- **Cache Engines:**
|
||||||
- Redis
|
- Redis
|
||||||
- Memcached
|
- Memcached
|
||||||
|
@ -139,7 +140,7 @@ Let's see how easy it is to install `NGINX`, `PHP`, `Composer`, `MySQL` and `Red
|
||||||
- Beanstalkd (+ Beanstalkd Console)
|
- Beanstalkd (+ Beanstalkd Console)
|
||||||
- RabbitMQ (+ RabbitMQ Console)
|
- RabbitMQ (+ RabbitMQ Console)
|
||||||
- **Tools:**
|
- **Tools:**
|
||||||
- Workspace (PHP7-CLI, Composer, Git, Node, Gulp, SQLite, xDebug, Vim...)
|
- Workspace (PHP7-CLI, Composer, Git, Node, Gulp, SQLite, xDebug, Envoy, Vim...)
|
||||||
- PhpMyAdmin
|
- PhpMyAdmin
|
||||||
- PgAdmin
|
- PgAdmin
|
||||||
- ElasticSearch
|
- ElasticSearch
|
||||||
|
@ -1356,6 +1357,44 @@ It should be like this:
|
||||||
|
|
||||||
####[Laravel Envoy Documentation Here](https://laravel.com/docs/5.3/envoy)
|
####[Laravel Envoy Documentation Here](https://laravel.com/docs/5.3/envoy)
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<a name="Use-RethinkDB"></a>
|
||||||
|
### Use RethinkDB Container
|
||||||
|
|
||||||
|
The RethinkDB is an open-source Database for Real-time Web ([RethinkDB](https://rethinkdb.com/)).
|
||||||
|
A package ([Laravel RethinkDB](https://github.com/duxet/laravel-rethinkdb)) is being developed and was released a version for Laravel 5.2 (experimental).
|
||||||
|
|
||||||
|
1 - Run the RethinkDB Container (`rethinkdb`) with the `docker-compose up` command.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker-compose up -d rethinkdb
|
||||||
|
```
|
||||||
|
|
||||||
|
2 - Add the RethinkDB configurations to the `config/database.php` configuration file:
|
||||||
|
|
||||||
|
```php
|
||||||
|
'connections' => [
|
||||||
|
|
||||||
|
'rethinkdb' => [
|
||||||
|
'name' => 'rethinkdb',
|
||||||
|
'driver' => 'rethinkdb',
|
||||||
|
'host' => env('DB_HOST', 'rethinkdb'),
|
||||||
|
'port' => env('DB_PORT', 28015),
|
||||||
|
'database' => env('DB_DATABASE', 'test'),
|
||||||
|
]
|
||||||
|
|
||||||
|
// ...
|
||||||
|
|
||||||
|
],
|
||||||
|
```
|
||||||
|
|
||||||
|
3 - Open your Laravel's `.env` file and update the following variables:
|
||||||
|
|
||||||
|
- set the `DB_CONNECTION` to your `rethinkdb`.
|
||||||
|
- set the `DB_HOST` to `rethinkdb`.
|
||||||
|
- set the `DB_PORT` to `28015`.
|
||||||
|
- set the `DB_DATABASE` to `database`.
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<a name="debugging"></a>
|
<a name="debugging"></a>
|
||||||
|
|
||||||
|
@ -1504,6 +1543,7 @@ For special help with Docker and/or Laravel, you can schedule a live call with t
|
||||||
- [Matthew Tonkin Dunn](https://github.com/mattythebatty) (mattythebatty)
|
- [Matthew Tonkin Dunn](https://github.com/mattythebatty) (mattythebatty)
|
||||||
- [Zhivitsa Kirill](https://github.com/zhikiri) (zhikiri)
|
- [Zhivitsa Kirill](https://github.com/zhikiri) (zhikiri)
|
||||||
- [Benmag](https://github.com/benmag)
|
- [Benmag](https://github.com/benmag)
|
||||||
|
- [Cristian Mello](https://github.com/cristiancmello) (cristiancmello)
|
||||||
|
|
||||||
**Other Contributors & Supporters:**
|
**Other Contributors & Supporters:**
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
FROM rethinkdb:latest
|
||||||
|
|
||||||
|
MAINTAINER Cristian Mello <cristianc.mello@gmail.com>
|
||||||
|
|
||||||
|
VOLUME /data/rethinkdb_data
|
||||||
|
|
||||||
|
RUN cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/instance1.conf
|
||||||
|
|
||||||
|
CMD ["rethinkdb", "--bind", "all"]
|
||||||
|
|
||||||
|
EXPOSE 8080
|
Loading…
Reference in New Issue