Sign inSign up

taisun/webapp

By taisun

Updated about 6 years ago

The main Taisun application

Image
3

10K+

taisun/webapp repository overview

DEPRECIATED

This codebase has now shifted to Github to be ingested by Linuxserver.io:

To run a current version of Taisun please use the following command:

docker create \
  --name=taisun \
  -p 3000:3000 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  --restart unless-stopped \
  linuxserver/taisun

Taisun Taisun

http://taisun.io

Taisun is an application for a Docker enabled device with an emphasis on providing a web based interface for managing a single server.

Taisun allows you to:

  • Deploy and manage web based virtual desktops.
  • Deploy taisun specific stacks of applications
  • Browse available images on popular Docker repositories
  • Import a Docker project from any git repository and start developing on your choice of web based IDE or full Linux desktop
  • Spinup a shell application based on popular frameworks and work from a web based IDE
QuickStart
Users:

On a Docker enabled host run the following command from cli:

sudo docker run --name taisun -d \
-p 3000:80 \
-v /var/run/docker.sock:/var/run/docker.sock \
taisun/webapp:latest

Taisun will be available by accessing:

http://localhost:3000

Developers:

On a Docker enabled host run the following command from cli:

sudo docker run --name taisun -d \
-p 3000:80 \
-p 8000:8000 \
-v /var/run/docker.sock:/var/run/docker.sock \
taisun/webapp:latest.dev

Taisun will be available by accessing:

http://localhost:3000

There is also a web based IDE using Cloud9 Core https://github.com/c9/core running on:

http://localhost:8000

This can be used for making custom modifications of the project and commiting pull requests.

Documentation:

Installation

Usage

Development

License:

WTFPL

Tag summary

Content type

Image

Digest

Size

166.6 MB

Last updated

about 6 years ago

docker pull taisun/webapp