File: docker-compose.yaml

package info (click to toggle)
golang-github-centrifugal-centrifuge 0.15.0%2Bgit20210306.f435ba2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,612 kB
  • sloc: javascript: 102; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 535 bytes parent folder | download
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
version: "3.9"
services:
  tnt1:
    container_name: tnt1
    image: tarantool/tarantool:2.7.0
    volumes:
      - .:/opt/tarantool/
    command: tarantool ha.lua 1
    ports:
      - 3301:3301
  tnt2:
    container_name: tnt2
    image: tarantool/tarantool:2.7.0
    volumes:
      - .:/opt/tarantool/
    command: tarantool ha.lua 2
    ports:
      - 3302:3302
  tnt3:
    container_name: tnt3
    image: tarantool/tarantool:2.7.0
    volumes:
      - .:/opt/tarantool/
    command: tarantool ha.lua 3
    ports:
      - 3303:3303