Update date in json (#12503)

Co-authored-by: GitHub Actions <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
community-scripts-pr-app[bot]
2026-03-03 10:02:59 +00:00
committed by GitHub
parent 14a7ac2618
commit 278c3cc2d8

View File

@@ -1,51 +1,51 @@
{ {
"name": "Tinyauth", "name": "Tinyauth",
"slug": "tinyauth", "slug": "tinyauth",
"categories": [ "categories": [
6 6
], ],
"date_created": "2025-05-06", "date_created": "2026-03-03",
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
"privileged": false, "privileged": false,
"interface_port": 3000, "interface_port": 3000,
"documentation": "https://tinyauth.app", "documentation": "https://tinyauth.app",
"config_path": "/opt/tinyauth/.env", "config_path": "/opt/tinyauth/.env",
"website": "https://tinyauth.app", "website": "https://tinyauth.app",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/tinyauth.webp", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/tinyauth.webp",
"description": "Tinyauth is a simple authentication middleware that adds simple username/password login or OAuth with Google, Github and any generic provider to all of your docker apps.", "description": "Tinyauth is a simple authentication middleware that adds simple username/password login or OAuth with Google, Github and any generic provider to all of your docker apps.",
"install_methods": [ "install_methods": [
{ {
"type": "default", "type": "default",
"script": "ct/tinyauth.sh", "script": "ct/tinyauth.sh",
"resources": { "resources": {
"cpu": 1, "cpu": 1,
"ram": 512, "ram": 512,
"hdd": 4, "hdd": 4,
"os": "debian", "os": "debian",
"version": "13" "version": "13"
} }
},
{
"type": "alpine",
"script": "ct/alpine-tinyauth.sh",
"resources": {
"cpu": 1,
"ram": 256,
"hdd": 2,
"os": "alpine",
"version": "3.23"
}
}
],
"default_credentials": {
"username": null,
"password": null
}, },
"notes": [ {
{ "type": "alpine",
"text": "The default credentials are located in `/opt/tinyauth/credentials.txt`.", "script": "ct/alpine-tinyauth.sh",
"type": "info" "resources": {
} "cpu": 1,
] "ram": 256,
"hdd": 2,
"os": "alpine",
"version": "3.23"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "The default credentials are located in `/opt/tinyauth/credentials.txt`.",
"type": "info"
}
]
} }