Skip to content

clustlight/TARS-Outpost

Repository files navigation

TARS-Outpost

TARS Webhook Relay Server

Build Docker Image


Getting Started

When using this software, you must allow external HTTP communication in order to receive webhooks

System Requirements

  • Docker Engine

Set environment variable

Rename .env.sample to .env and fill in the required information

Parameter Description
PORT Websocket Server listen port
TOKEN Server Token
WEBHOOK_SIGNATURE Webhook Signature provided by Twitcasting App

Make docker-compose.yml

version: "3"
services:
  tars-outpost:
    image: ghcr.io/clustlight/tars-outpost:latest
    restart: unless-stopped
    ports:
      - ${PORT}:${PORT}
    environment:
      TZ: Asia/Tokyo
    env_file:
      - .env

Run Server

$ docker-compose up