Add NebulaGraph, RedPanda (#13)
* add clickhouse, cockroach, meilisesarch, scylla, tarantool, tidb cluster, typesense, yugabyte * Update README.md * add aerospike * update README.md aerospike * remove www * bugfix docs clickhouse link * add nebula, redpanda, fix scylla typopull/15/head
parent
3f0661ad52
commit
4c0d9ef595
@ -0,0 +1,19 @@
|
||||
# NebulaGraph w/ Docker Compose
|
||||
|
||||
With default password
|
||||
|
||||
## Connecting with client
|
||||
|
||||
```
|
||||
nebula-console -u root -p nebula --address=graphd --port=9669
|
||||
|
||||
# or
|
||||
|
||||
ip=`ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1' | head -n 1`
|
||||
docker run --rm -it --entrypoint nebula-console vesoft/nebula-console:v2.0.1 -u root -p nebula --address=$ip --port=9669
|
||||
```
|
||||
|
||||
|
||||
## Other docs
|
||||
|
||||
[nebula docker compose](https://docs.nebula-graph.io/2.0.1/2.quick-start/2.deploy-nebula-graph-with-docker-compose/)
|
@ -0,0 +1,100 @@
|
||||
version: '3.4'
|
||||
|
||||
services:
|
||||
metad0:
|
||||
image: vesoft/nebula-metad:v2.0.1
|
||||
environment:
|
||||
USER: root
|
||||
TZ: "${TZ}"
|
||||
command:
|
||||
- --meta_server_addrs=metad0:9559
|
||||
- --local_ip=metad0
|
||||
- --ws_ip=metad0
|
||||
- --port=9559
|
||||
- --ws_http_port=19559
|
||||
- --data_path=/data/meta
|
||||
- --log_dir=/logs
|
||||
- --v=0
|
||||
- --minloglevel=0
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-sf", "http://metad0:19559/status"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 20s
|
||||
ports:
|
||||
- 9559
|
||||
- 19559
|
||||
- 19560
|
||||
volumes:
|
||||
- ./data/meta0:/data/meta
|
||||
- ./logs/meta0:/logs
|
||||
restart: on-failure
|
||||
cap_add:
|
||||
- SYS_PTRACE
|
||||
|
||||
storaged0:
|
||||
image: vesoft/nebula-storaged:v2.0.1
|
||||
environment:
|
||||
USER: root
|
||||
TZ: "${TZ}"
|
||||
command:
|
||||
- --meta_server_addrs=metad0:9559
|
||||
- --local_ip=storaged0
|
||||
- --ws_ip=storaged0
|
||||
- --port=9779
|
||||
- --ws_http_port=19779
|
||||
- --data_path=/data/storage
|
||||
- --log_dir=/logs
|
||||
- --v=0
|
||||
- --minloglevel=0
|
||||
depends_on:
|
||||
- metad0
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-sf", "http://storaged0:19779/status"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 20s
|
||||
ports:
|
||||
- 9779
|
||||
- 19779
|
||||
- 19780
|
||||
volumes:
|
||||
- ./data/storage0:/data/storage
|
||||
- ./logs/storage0:/logs
|
||||
restart: on-failure
|
||||
cap_add:
|
||||
- SYS_PTRACE
|
||||
|
||||
graphd:
|
||||
image: vesoft/nebula-graphd:v2.0.1
|
||||
environment:
|
||||
USER: root
|
||||
TZ: "${TZ}"
|
||||
command:
|
||||
- --meta_server_addrs=metad0:9559
|
||||
- --port=9669
|
||||
- --local_ip=graphd
|
||||
- --ws_ip=graphd
|
||||
- --ws_http_port=19669
|
||||
- --log_dir=/logs
|
||||
- --v=0
|
||||
- --minloglevel=0
|
||||
depends_on:
|
||||
- storaged0
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-sf", "http://graphd:19669/status"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 20s
|
||||
ports:
|
||||
- "9669:9669"
|
||||
- 19669
|
||||
- 19670
|
||||
volumes:
|
||||
- ./logs/graph:/logs
|
||||
restart: on-failure
|
||||
cap_add:
|
||||
- SYS_PTRACE
|
@ -0,0 +1,14 @@
|
||||
# RedPanda w/ Docker Compose
|
||||
|
||||
with default no password
|
||||
|
||||
## Connecting with client
|
||||
|
||||
```
|
||||
node=`docker ps | grep redpanda | cut -f 1 -d ' '`
|
||||
docker exec -it redpanda-1 rpk
|
||||
```
|
||||
|
||||
## Other docs
|
||||
|
||||
[redpanda docker](https://vectorized.io/docs/quick-start-docker)
|
@ -0,0 +1,8 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: vectorized/redpanda:latest
|
||||
command: redpanda start --overprovisioned --smp 1 --memory 1G --reserve-memory 0M --node-id 0 --check=false
|
||||
ports:
|
||||
- 9092:9092
|
Loading…
Reference in new issue