Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

Commit d1ef558

Browse files
alexandrebouthinonscottinet
authored andcommitted
Fix Kuzzle version in Docker files (#94)
## What does this PR do ? Fix Kuzzle version in Docker files (docker-compose & Dockerfiles) ### How should this be manually tested? Try to run the docker-compose.yml stack ### Other changes Make the Readme looks great
1 parent a2f0638 commit d1ef558

File tree

3 files changed

+41
-16
lines changed

3 files changed

+41
-16
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM kuzzleio/kuzzle
1+
FROM kuzzleio/kuzzle:1
22

33
LABEL "io.kuzzle.vendor"="Kuzzle"
44

README.md

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,32 @@
1-
[![Build Status](https://travis-ci.org/kuzzleio/kuzzle-plugin-cluster.svg?branch=master)](https://travis-ci.org/kuzzleio/kuzzle-plugin-cluster) [![codecov.io](http://codecov.io/github/kuzzleio/kuzzle-plugin-cluster/coverage.svg?branch=master)](http://codecov.io/github/kuzzleio/kuzzle-plugin-cluster?branch=master)
2-
3-
# Cluster mode plugin
4-
5-
This plugin adds a cluster mode to Kuzzle.
6-
7-
## Kuzzle
1+
<p align="center">
2+
<img src="https://user-images.githubusercontent.com/7868838/66303815-2617b000-e8fc-11e9-8c3f-613574be1746.png"/>
3+
</p>
4+
<p align="center">
5+
<a href="https://david-dm.org/kuzzleio/kuzzle-plugin-cluster">
6+
<img src="https://david-dm.org/kuzzleio/kuzzle-plugin-cluster.svg" />
7+
</a>
8+
<a href="https://travis-ci.com/kuzzleio/kuzzle-plugin-cluster">
9+
<img alt="undefined" src="https://travis-ci.com/kuzzleio/kuzzle-plugin-cluster.svg?branch=master">
10+
</a>
11+
<a href="https://codecov.io/gh/kuzzleio/kuzzle-plugin-cluster">
12+
<img src="https://codecov.io/gh/kuzzleio/kuzzle-plugin-cluster/branch/master/graph/badge.svg" />
13+
</a>
14+
<a href="https://github.com/kuzzleio/kuzzle-plugin-cluster/blob/master/LICENSE">
15+
<img alt="undefined" src="https://img.shields.io/github/license/kuzzleio/kuzzle-plugin-cluster.svg?style=flat">
16+
</a>
17+
</p>
18+
19+
## About
20+
21+
### Kuzzle Cluster Plugin
22+
23+
This plugin adds a masterless cluster mode to Kuzzle.
24+
25+
<p align="center">
26+
:books: <b><a href="https://docs.kuzzle.io/core/1/guides/kuzzle-depth/scalability">Documentation</a></b>
27+
</p>
28+
29+
### Kuzzle
830

931
Kuzzle is a ready-to-use, **on-premises and scalable backend** that enables you to manage your persistent data and be notified in real-time on whatever happens to it.
1032
It also provides you with a flexible and powerful user-management system.
@@ -15,15 +37,18 @@ It also provides you with a flexible and powerful user-management system.
1537
* :books: __[Documentation](https://docs.kuzzle.io)__
1638
* :email: __[Gitter](https://gitter.im/kuzzleio/kuzzle)__
1739

18-
## Get trained by the creators of Kuzzle :zap:
40+
### Get trained by the creators of Kuzzle :zap:
1941

2042
Train yourself and your teams to use Kuzzle to maximize its potential and accelerate the development of your projects.
2143
Our teams will be able to meet your needs in terms of expertise and multi-technology support for IoT, mobile/web, backend/frontend, devops.
2244
:point_right: [Get a quote](https://hubs.ly/H0jkfJ_0)
2345

24-
## Compatibility
46+
### Compatibility matrice
2547

26-
Kuzzle: >=1.8.0
48+
| Kuzzle Version | Plugin Version |
49+
| -------------- | -------------- |
50+
| 1.8.x | 3.x.x |
51+
| 2.x.x | 4.x.x |
2752

2853
## Try it
2954

@@ -33,7 +58,7 @@ To run a kuzzle stack, you can use the provided compose file:
3358
docker-compose up --scale kuzzle=3
3459
```
3560

36-
**NB: This compose stack is for tests and development only and should not be used as-is on production. **
61+
**NB: This compose stack is for tests and development only and should not be used as-is on production.**
3762

3863
## Run a development stack
3964

@@ -224,4 +249,3 @@ Here is a complete sample configuration using a 3 nodes redis cluster and a 2 el
224249
}
225250

226251
```
227-

docker-compose.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
version: "3"
23

34
services:
@@ -11,10 +12,11 @@ services:
1112
- ./docker-compose/nginx/kuzzle.conf:/etc/nginx/conf.d/kuzzle.conf
1213

1314
kuzzle:
14-
image: kuzzleio/cluster
15+
image: kuzzleio/kuzzle:1
1516
volumes:
16-
- ./docker-compose/config/kuzzlerc.prod:/etc/kuzzlerc
17+
- ./docker-compose/config/kuzzlerc.prod:/etc/kuzzlerc
1718
environment:
19+
KUZZLE_PLUGINS: kuzzle-plugin-cluster
1820
NODE_ENV: ${NODE_ENV:-production}
1921
DEBUG: ${DEBUG:-none}
2022
DEBUG_COLORS: ${DEBUG_COLORS:-on}
@@ -28,4 +30,3 @@ services:
2830
nofile: 65536
2931
environment:
3032
cluster.name: kuzzle
31-

0 commit comments

Comments
 (0)