This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathreadme-vars.yml
74 lines (65 loc) · 2.97 KB
/
readme-vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
# project information
project_name: taisun
project_url: "https://www.taisun.io/"
project_logo: "https://raw.githubusercontent.com/Taisun-Docker/taisun/master/public/favicon/apple-icon-180x180.png"
project_blurb: |
[{{ project_name|capitalize }}]({{ project_url }}) 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 developer container based on popular frameworks and work from a web based IDE
- Single click remote server access to Taisun and your Docker applications
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
project_deprecation_status: true
project_deprecation_message: |
This project is no longer maintained for VDI please use:
https://github.com/linuxserver/docker-webtop
For web based docker management try:
https://github.com/SelfhostedPro/Yacht
https://www.portainer.io/
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
# container parameters
common_param_env_vars_enabled: false
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- { vol_path: "/var/run/docker.sock", vol_host_path: "/var/run/docker.sock", desc: "Docker Socket on the system" }
param_usage_include_ports: true
param_ports:
- { external_port: "3000", internal_port: "3000", port_desc: "Taisun WebUI." }
param_usage_include_env: false
custom_compose: |
---
version: "2"
services:
taisun:
image: linuxserver/taisun
container_name: taisun
network_mode: bridge
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 3000:3000
restart: unless-stopped
# application setup block
app_setup_block_enabled: true
app_setup_block: |
The webui is at http://localhost:3000, for more information on usage see [here](https://github.com/Taisun-Docker/taisun/wiki/Usage).
# changelog
changelogs:
- { date: "02.02.22:", desc: "Deprecate." }
- { date: "23.01.21:", desc: "Rebasing to alpine 3.13." }
- { date: "02.06.20:", desc: "Rebasing to alpine 3.12." }
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
- { date: "20.07.19:", desc: "Build compose bins from source, use minimal docker install from repos." }
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
- { date: "30.03.19:", desc: "Updating docker-compose build dependancies for musl libc." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "13.02.19:", desc: "Initial release." }