-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy path2FAuth.json
More file actions
48 lines (48 loc) · 1.9 KB
/
2FAuth.json
File metadata and controls
48 lines (48 loc) · 1.9 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
{
"2FAuth": {
"description": "A Web-UI enabled self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop.<p><b>Note:</b> runs as UID:GID (1000:1000): mapped Share must provide access accordingly.</p><p>Based on the <a href='https://hub.docker.com/r/2fauth/2fauth' target='_blank'>official OCI image</a>, available for amd64 and arm64 architecture</p>",
"version": "1.0",
"website": "https://docs.2fauth.app/",
"icon": "https://github.com/Bubka/2FAuth/blob/master/public/favicon.png",
"more_info": "The full documentation for this rock-on can be found at <a href='https://docs.2fauth.app/' target='_blank'>https://docs.2fauth.app/</a>.",
"containers": {
"2fauth": {
"image": "2fauth/2fauth",
"launch_order": 1,
"ports": {
"8000": {
"description": "2FAuth WebUI port.",
"label": "WebUI port [e.g. 18000]",
"host_default": 18000,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/2fauth": {
"description": "Share to store 2FAuth related files uid:gid must be (1000:1000).",
"label": "Config Storage [e.g. 2FAuth-config]"
}
},
"opts": [
[
"-e",
"AUTHENTICATION_GUARD=web-guard"
]
],
"environment": {
"APP_URL": {
"description": "Enter http://<myservername>:<UI Port>, using the 2FAuth WebUI port set earlier.",
"label": "APP_URL [e.g. http://<myservername>:<UI Port>]",
"index": 1
},
"ASSET_URL": {
"description": "Enter http://<myservername>:<UI Port>, using the 2FAuth WebUI port set earlier.",
"label": "ASSET_URL [e.g. http://<myservername>:<UI Port>]",
"index": 2
}
}
}
}
}
}