-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallabag.json
61 lines (61 loc) · 2.68 KB
/
wallabag.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
{
"wallabag": {
"description": "wallabag is a self hostable application for saving web pages.",
"ui": {
"slug": ""
},
"website": "https://wallabag.org/",
"version": "2.0",
"containers": {
"wallabag": {
"image": "wallabag/wallabag",
"launch_order": 1,
"volumes": {
"/var/www/wallabag/data": {
"description": "Choose a Share for the database. Eg: create a Share called wallabag-db for this purpose.",
"label": "Database"
},
"/var/www/wallabag/web/assets/images": {
"description": "Choose a Share for images and such. Eg: create a Share called wallabag-assets for this purpose.",
"label": "Assets"
}
},
"ports": {
"80": {
"description": "Wallabag webserver port. Defaults to 80",
"label": "Web server",
"host_default": 80,
"ui": true
}
},
"environment": {
"SYMFONY__ENV__SECRET": {
"label": "secret",
"description": "Set a secret"
},
"SYMFONY__ENV__MAILER_DSN": {
"label": "Mailer DSN",
"description": "DSN for sending emails. Example: smtp://user:pass@smtp.example.com:port"
},
"SYMFONY__ENV__FROM_EMAIL": {
"label": "Mail sender",
"description": "defaults to wallabag@example.com, the address wallabag uses for outgoing emails"
},
"SYMFONY__ENV__TWOFACTOR_SENDER": {
"label": "Twofactor email sender",
"description": "defaults to no-reply@wallabag.org, the address wallabag uses for two-factor emails"
},
"SYMFONY__ENV__FOSUSER_REGISTRATION": {
"label": "Allow user registration",
"description": "Defaults to true. Set to false to disable public user registration"
},
"SYMFONY__ENV__DOMAIN_NAME": {
"label": "Domain name",
"description": "Public domain name wallabag should assume (including protocol)"
}
}
}
},
"more_info": "<p>Default login is wallabag:wallabag.</p>"
}
}