upload current sources
Some checks failed
Test / test (push) Has been cancelled

This commit is contained in:
2025-12-14 08:26:37 +00:00
parent 91c4fc88d9
commit b6151d36b2
2 changed files with 39 additions and 1 deletions

View File

@@ -15,7 +15,7 @@
"source": "https://github.com/NginxProxyManager/nginx-proxy-manager", "source": "https://github.com/NginxProxyManager/nginx-proxy-manager",
"website": "https://nginxproxymanager.com", "website": "https://nginxproxymanager.com",
"exposable": true, "exposable": true,
"dynamic_config": false, "dynamic_config": true,
"no_gui": false, "no_gui": false,
"form_fields": [ "form_fields": [
{ {

View File

@@ -0,0 +1,38 @@
{
"schemaVersion": 2,
"$schema": "https://schemas.runtipi.io/v2/dynamic-compose.json",
"services": [
{
"name": "nginx-proxy-manager",
"image": "jc21/nginx-proxy-manager:2.13.5",
"isMain": true,
"internalPort": 81,
"addPorts": [
{
"hostPort": "${NPM_HTTP_PORT}",
"containerPort": 80
},
{
"hostPort": "${NPM_HTTPS_PORT}",
"containerPort": 443
}
],
"environment": [
{
"key": "DISABLE_IPV6",
"value": "true"
}
],
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/data"
},
{
"hostPath": "${APP_DATA_DIR}/letsencrypt",
"containerPath": "/etc/letsencrypt"
}
]
}
]
}