aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker/janitor/janitor.json
blob: 5acdf3060fc4493148ee47191c475610803606bc (plain) (blame)
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
{
  "name": "PeerTube",
  "description": "Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.",
  "icon": "https://janitor.technology/img/peertube.svg",
  "docker": {
    "image": "chocobozzz/peertube-dev"
  },
  "ports": {
    "22": {
      "label": "SSH",
      "proxy": "none"
    },
    "3000": {
      "label": "PeerTube web app",
      "proxy": "https",
      "preview": true
    },
    "8088": {
      "label": "VNC",
      "proxy": "https"
    },
    "8089": {
      "label": "Cloud9",
      "proxy": "https"
    },
    "8090": {
      "label": "Theia",
      "proxy": "https"
    },
    "9000": {
      "label": "PeerTube API",
      "proxy": "https"
    }
  },
  "scripts": {
    "Start PeerTube": "npm run dev",
    "Build PeerTube": "npm run build",
    "Run tests": "npm test",
    "Update source code": "git pull --rebase origin",
    "Send to code review": "hub pull-request"
  }
}