Merge pull request #2981 from AxelPAL/tarantool

Add Tarantool platform
This commit is contained in:
Shao Yu-Lung (Allen) 2021-06-04 20:53:41 +08:00 committed by GitHub
commit 9618f069d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 53 additions and 0 deletions

View File

@ -999,3 +999,7 @@ GEARMAN_MYSQL_TABLE=gearman_queue
### ELK Stack ##################################################
ELK_VERSION=7.9.1
### Tarantool ##################################################
TARANTOOL_PORT=3301
TARANTOOL_ADMIN_PORT=8002

View File

@ -1467,8 +1467,31 @@ docker-compose up -d mosquitto
5 - Publish: `mqtt pub -t 'test' -h localhost -p 9001 -C 'ws' -m 'Hello!'`
<br>
<a name="Use-Tarantool"></a>
## Use Tarantool (+ Admin panel)
1 - Configure Tarantool Port and Tarantool Admin Port using environment variables: `TARANTOOL_PORT` and `TARANTOOL_ADMIN_PORT`. Default ports are 3301 and 8002.
2 - Run the Tarantool and Tarantool Admin tool using `docker-compose up`command:
```bash
docker-compose up -d tarantool tarantool-admin
```
3 - You can open admin tool visiting localhost:8002
4 - There you should set `Hostname` with the value `tarantool`
5 - After that your tarantool data will be available inside admin panel.
6 - Also you can connect to tarantool server in console mode with this command:
```bash
docker-compose exec tarantool console
```
7 - There you can operate with tarantool database ([official documentation](https://www.tarantool.io/en/doc/latest/) can be helpful).
<br>

View File

@ -1977,3 +1977,21 @@ services:
ZK_HOSTS: zookeeper:2181
networks:
- backend
### tarantool ###########################################
tarantool:
build: ./tarantool
volumes:
- ${DATA_PATH_HOST}/tarantool:/var/lib/tarantool
- ./tarantool/lua:/opt/tarantool
ports:
- ${TARANTOOL_PORT}:3301
networks:
- backend
tarantool-admin:
build: ./tarantool-admin
ports:
- ${TARANTOOL_ADMIN_PORT}:80
networks:
- backend

View File

@ -0,0 +1,3 @@
FROM quay.io/basis-company/tarantool-admin
LABEL maintainer="Alexander Palchikov <axelpal@gmail.com>"

3
tarantool/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM tarantool/tarantool:2
LABEL maintainer="Alexander Palchikov <axelpal@gmail.com>"

2
tarantool/lua/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore