add organizr as stack

This commit is contained in:
Qballjos 2021-02-26 16:47:24 +01:00
parent ee8494230c
commit 086a3a5949
2 changed files with 153 additions and 136 deletions

View File

@ -0,0 +1,15 @@
---
version: "2.1"
services:
organizr:
container_name: organizr
environment:
- "PUID=${PUID}"
- "PGID=${PGID}"
- "TZ=${TZ}"
image: linuxserver/organizr
ports:
- "${OGANIZRPORT}:80"
restart: unless-stopped
volumes:
- "${APPDATA}/organizr:/config"

View File

@ -389,8 +389,7 @@
"Tools" "Tools"
], ],
"description": "Organizr allows you to setup Tabs that will be loaded all in one webpage. You can then work on your server with ease.", "description": "Organizr allows you to setup Tabs that will be loaded all in one webpage. You can then work on your server with ease.",
"env": [ "env": [{
{
"default": "1000", "default": "1000",
"label": "PUID", "label": "PUID",
"name": "PUID" "name": "PUID"
@ -400,27 +399,30 @@
"label": "PGID", "label": "PGID",
"name": "PGID" "name": "PGID"
}, },
{
"label": "TZ",
"name": "TZ"
},
{ {
"label": "appdata folder", "label": "appdata folder",
"name": "APPDATA" "name": "APPDATA"
},
{
"label": "Organizr port",
"name": "PORT"
} }
], ],
"image": "organizr/organizr:latest", "image": "organizr/organizr:latest",
"logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/organizr-icon.png", "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/organizr-icon.png",
"name": "organizr-v2", "name": "organizr-v2",
"platform": "linux", "platform": "linux",
"ports": [ "repository": {
"80/tcp" "stackfile": "Template/Stack/organizr.yml",
], "url": "https://github.com/Qballjos/portainer_templates",
"restart_policy": "unless-stopped", "restart_policy": "unless-stopped",
"title": "Organizr", "title": "Organizr",
"type": 1, "type": 3
"volumes": [ }
{
"bind": "${APPDATA}/Organizr",
"container": "/config"
}
]
} }
] ]
} }