stitchctlv3.4.5

Installation

Docker (recommended)

$ docker run -d --name stitchctl \
    -p 8080:8080 \
    -v stitchctl-data:/data \
    --restart unless-stopped \
    stitchctl/stitchctl:v3.4.5

Docker Compose

version: "3"
services:
  stitchctl:
    image: stitchctl/stitchctl:v3.4.5
    ports: ["8080:8080"]
    volumes: ["stitchctl-data:/data"]
    restart: unless-stopped
volumes:
  stitchctl-data:

Bare metal

$ wget https://github.com/stitchctl/stitchctl/releases/download/v3.4.5/stitchctl-linux-amd64
$ chmod +x stitchctl-linux-amd64
$ ./stitchctl-linux-amd64