aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/janitor/janitor.json
diff options
context:
space:
mode:
Diffstat (limited to 'support/docker/janitor/janitor.json')
-rw-r--r--support/docker/janitor/janitor.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/support/docker/janitor/janitor.json b/support/docker/janitor/janitor.json
new file mode 100644
index 000000000..5acdf3060
--- /dev/null
+++ b/support/docker/janitor/janitor.json
@@ -0,0 +1,42 @@
1{
2 "name": "PeerTube",
3 "description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
4 "icon": "https://janitor.technology/img/peertube.svg",
5 "docker": {
6 "image": "chocobozzz/peertube-dev"
7 },
8 "ports": {
9 "22": {
10 "label": "SSH",
11 "proxy": "none"
12 },
13 "3000": {
14 "label": "PeerTube web app",
15 "proxy": "https",
16 "preview": true
17 },
18 "8088": {
19 "label": "VNC",
20 "proxy": "https"
21 },
22 "8089": {
23 "label": "Cloud9",
24 "proxy": "https"
25 },
26 "8090": {
27 "label": "Theia",
28 "proxy": "https"
29 },
30 "9000": {
31 "label": "PeerTube API",
32 "proxy": "https"
33 }
34 },
35 "scripts": {
36 "Start PeerTube": "npm run dev",
37 "Build PeerTube": "npm run build",
38 "Run tests": "npm test",
39 "Update source code": "git pull --rebase origin",
40 "Send to code review": "hub pull-request"
41 }
42}