Local installation

TStorage

Docker hub repository: https://hub.docker.com/r/atendeindustries/tstorage

Download TStorage’s Docker image

docker pull atendeindustries/tstorage:TAG

e.g.

docker pull atendeindustries/tstorage:stable

Run TStorage

docker run --name tstorage -d -p 2025:2025 -v /etc/localtime:/etc/localtime tstorage:stable

Example compose file

volumes:
  tstorage_data:
  tstorage_logs:

services:
  tstorage:
    container_name: tstorage_database
    image: tstorage:{tag}
    volumes:
      - tstorage_data:/sacks
      - tstorage_logs:/var/log/tstorage
      - /etc/localtime:/etc/localtime
    ports:
      - 2025:2025
    environment:
        tstorage_cid_log2_width: 0
        tstorage_timeout_ms: 350000