-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.json
More file actions
79 lines (79 loc) · 2.46 KB
/
Copy pathproject.json
File metadata and controls
79 lines (79 loc) · 2.46 KB
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
{
"name": "forgejo",
"implicitDependencies": ["networks", "traefik"],
"targets": {
"create-volumes": {
"options": {
"volumes": ["forgejo-data"]
}
},
"create-variables": {
"options": {
"variables": [
{
"name": "FORGEJO_DOMAIN",
"description": "Public domain name for Forgejo.",
"defaultValue": "forgejo.${DEFAULT_DOMAIN_SUFFIX}"
},
{
"name": "FORGEJO_POSTGRES_SERVER",
"description": "Server where the Forgejo PostgreSQL database is located."
},
{
"name": "FORGEJO_POSTGRES_USER",
"description": "User used to connect to the Forgejo PostgreSQL database."
},
{
"name": "FORGEJO_POSTGRES_PASSWORD",
"description": "Password used to connect to the Forgejo PostgreSQL database.",
"type": "password"
},
{
"name": "FORGEJO_POSTGRES_DATABASE",
"description": "Name of the Forgejo PostgreSQL database."
},
{
"name": "FORGEJO_SECRET_KEY",
"description": "",
"type": "generated"
},
{
"name": "FORGEJO_LFS_JWT_SECRET",
"description": "",
"type": "generated"
},
{
"name": "FORGEJO_OAUTH_PROVIDER_NAME",
"description": "Name used for the OIDC provider.",
"defaultValue": "pocket-id"
},
{
"name": "FORGEJO_OAUTH_PROVIDER_DOMAIN",
"description": "Domain of the OIDC provider.",
"defaultValue": "${POCKET_ID_DOMAIN}"
},
{
"name": "FORGEJO_OAUTH_CLIENT_ID",
"description": "Client ID for Forgejo to authenticate against the OIDC provider."
},
{
"name": "FORGEJO_OAUTH_CLIENT_SECRET",
"description": "Client secret for Forgejo to authenticate against the OIDC provider."
},
{
"name": "FORGEJO_SMTP_SERVER",
"description": "SMTP server used by Forgejo to send emails."
},
{
"name": "FORGEJO_SMTP_USER",
"description": "SMTP login used by Forgejo to send emails."
},
{
"name": "FORGEJO_SMTP_PASSWORD",
"description": "SMTP password used by Forgejo to send emails."
}
]
}
}
}
}