36 lines
787 B
JSON
36 lines
787 B
JSON
{
|
|
"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": {
|
|
"DISABLE_IPV6": "true"
|
|
},
|
|
"volumes": [
|
|
{
|
|
"hostPath": "${APP_DATA_DIR}/data",
|
|
"containerPath": "/data"
|
|
},
|
|
{
|
|
"hostPath": "${APP_DATA_DIR}/letsencrypt",
|
|
"containerPath": "/etc/letsencrypt"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|