-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdocker-compose.yml
40 lines (36 loc) · 1.06 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: '3.2'
services:
tarantool_1_7:
build:
context: tarantool
dockerfile: docker/Dockerfile.1.7
command: tarantool /usr/local/share/tarantool/tarantool.docker.lua
ports:
- "3301:3301"
environment:
TARANTOOL_USER_NAME: admin
TARANTOOL_USER_PASSWORD: adminPassword
TARANTOOL_SLAB_ALLOC_ARENA: 0.1
tarantool_1_8:
build:
context: tarantool
dockerfile: docker/Dockerfile.1.8
command: tarantool /usr/local/share/tarantool/tarantool.docker.lua
ports:
- "3302:3301"
environment:
TARANTOOL_USER_NAME: admin
TARANTOOL_USER_PASSWORD: adminPassword
TARANTOOL_SLAB_ALLOC_ARENA: 0.1
redis:
image: redis:3.0-alpine
command: redis-server
ports:
- 6379:6379
admin:
image: quay.io/basis-company/tarantool-admin
ports:
- 8888:80
depends_on:
- tarantool_1_7
- tarantool_1_8