-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgejo.json
101 lines (101 loc) · 4.06 KB
/
forgejo.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"forgejo": {
"description": "Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.",
"ui": {
"slug": ""
},
"website": "https://forgejo.org/",
"version": "1.0",
"containers": {
"forgejo": {
"image": "codeberg.org/forgejo/forgejo",
"tag": "9",
"launch_order": 1,
"opts": [
[
"-v",
"/etc/timezone:/etc/timezone:ro"
],
[
"-v",
"/etc/localtime:/etc/localtime:ro"
],
[
"-e",
"RUN_MODE=prod"
],
[
"-e",
"SSH_LISTEN_PORT=22"
]
],
"ports": {
"3000": {
"description": "Forgejo web UI port. Suggested default: 3000",
"host_default": 3000,
"label": "Web port",
"protocol": "tcp",
"ui": true
},
"22": {
"description": "SSH port. Suggested default: 222",
"host_default": 222,
"label": "SSH port",
"protocol": "tcp",
"ui": false
}
},
"volumes": {
"/data": {
"description": "Choose a Share for all forgejo data. Eg: create a Share called forgejo for this purpose.",
"label": "Data",
"min_size": 1073741824
}
},
"environment": {
"USER_UID": {
"label": "User",
"description": "User that owns the forgejo volume",
"index": 1
},
"USER_GID": {
"label": "Group",
"description": "Group the user owning the forgejo volume is in.",
"index": 2
},
"APP_NAME": {
"label": "Instance name",
"description": "Name of the forgejo instance, used in the page title. Default: Forgejo: Beyond coding. We forge.",
"index": 3
},
"SSH_PORT": {
"label": "Exposed SSH port",
"description": "SSH port displayed in clone URL. Default: 22",
"index": 4
},
"SSH_DOMAIN": {
"label": "SSH Domain",
"description": "Domain name of this server, used for the displayed clone URL in Forgejo's UI. Default: localhost",
"index": 5
},
"LFS_START_SERVER": {
"label": "git-lfs support",
"description": "Enables git-lfs support. Default: false",
"index": 6
},
"DISABLE_REGISTRATION": {
"label": "Disable registration",
"description": "Disable registration, after which only admin can create accounts for users. Default: false",
"index": 7
},
"REQUIRE_SIGNIN_VIEW": {
"label": "Require sign in",
"description": "Enable this to force users to log in to view any page. Default: false",
"index": 8
}
}
}
},
"more_info": "<p>To set up, visit the web UI.</p><p>Drop-in replacement of Gitea</p>"
}
}