Skip to content

Commit

Permalink
added tarantool admin service
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelPAL committed Jun 2, 2021
1 parent e92ce2e commit 885e47d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -1002,3 +1002,4 @@ ELK_VERSION=7.9.1

### Tarantool ##################################################
TARANTOOL_PORT=3301
TARANTOOL_ADMIN_PORT=8002
23 changes: 23 additions & 0 deletions DOCUMENTATION/content/documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1989,3 +1989,9 @@ services:
- ${TARANTOOL_PORT}:3301
networks:
- backend
tarantool-admin:
build: ./tarantool-admin
ports:
- ${TARANTOOL_ADMIN_PORT}:80
networks:
- backend
3 changes: 3 additions & 0 deletions tarantool-admin/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM quay.io/basis-company/tarantool-admin

LABEL maintainer="Alexander Palchikov <[email protected]>"

0 comments on commit 885e47d

Please sign in to comment.