Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
Ryan Kuba edited this page Oct 19, 2019 · 5 revisions

Taisun Taisun

http://taisun.io

Docker installation:

In order to use Taisun the host machine will need to be running Docker (https://www.docker.com/)

Ubuntu

Su up to root:

sudo su

Then run the following blob:

apt-get update && apt-get install -y \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable" && \
apt-get update && apt-get install docker-ce -y

You can confirm Docker is running with:

docker -v
Docker version 17.09.0-ce, build afdb6d4

Debian

Su up to root:

sudo su

Then run the following blob:

apt-get update && apt-get install -y \
    apt-transport-https \
    ca-certificates \
    curl \
    software-properties-common && \
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/debian \
   $(lsb_release -cs) \
   stable" && \
apt-get update && apt-get install docker-ce -y

You can confirm Docker is running with:

docker -v
Docker version 17.09.0-ce, build afdb6d4

Other Distro

Detailed instructions can be found in the Docker Documentation for many distributions and operating systems:

https://docs.docker.com/engine/installation/

Running Taisun:

The Taisun application runs inside of a Docker container so you will simply need to run the container:

sudo docker run --name taisun -d \
-p 3000:3000 \
-v /var/run/docker.sock:/var/run/docker.sock \
--restart always \
linuxserver/taisun:latest

Here is an example for running with Docker Compose:

version: '3.7'

services:
  taisun:
    image: linuxserver/taisun
    container_name: taisun
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    ports:
      - 3000:3000
    network_mode: bridge
    restart: unless-stopped

Substitute port 3000 with any port you want, the application runs inside the Docker container on port 80.

Taisun can be accessed from:

http://localhost:3000 or http://yourLocalIP:3000

Clone this wiki locally