{
  "version": "2",
  "templates": [
    {
      "type": 1,
      "title": "Registry",
      "description": "Docker image registry",
      "categories": ["docker"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/registry.png",
      "image": "registry:latest",
      "ports": ["5000/tcp"],
      "volumes": [
        {
          "container": "/var/lib/registry"
        }
      ]
    },
    {
      "type": 3,
      "title": "Budibase",
      "categories": ["Tools"],
      "description": "Build modern business apps in minutes",
      "logo": "https://budibase.com/favicon.ico",
      "platform": "linux",
      "repository": {
        "url": "https://github.com/Budibase/budibase",
        "stackfile": "hosting/docker-compose.yaml"
      },
      "env": [
        {
          "name": "MAIN_PORT",
          "label": "Main port",
          "default": "10000"
        },
        {
          "name": "JWT_SECRET",
          "label": "JWT secret",
          "default": "change-me"
        },
        {
          "name": "MINIO_ACCESS_KEY",
          "label": "MinIO access key",
          "default": "change-me"
        },
        {
          "name": "MINIO_SECRET_KEY",
          "label": "MinIO secret key",
          "default": "change-me"
        },
        {
          "name": "COUCH_DB_USER",
          "default": "budibase",
          "preset": true
        },
        {
          "name": "COUCH_DB_PASSWORD",
          "label": "Couch DB password",
          "default": "change-me"
        },
        {
          "name": "REDIS_PASSWORD",
          "label": "Redis password",
          "default": "change-me"
        },
        {
          "name": "INTERNAL_API_KEY",
          "label": "Internal API key",
          "default": "change-me"
        },
        {
          "name": "APP_PORT",
          "default": "4002",
          "preset": true
        },
        {
          "name": "WORKER_PORT",
          "default": "4003",
          "preset": true
        },
        {
          "name": "MINIO_PORT",
          "default": "4004",
          "preset": true
        },
        {
          "name": "COUCH_DB_PORT",
          "default": "4005",
          "preset": true
        },
        {
          "name": "REDIS_PORT",
          "default": "6379",
          "preset": true
        },
        {
          "name": "WATCHTOWER_PORT",
          "default": "6161",
          "preset": true
        },
        {
          "name": "BUDIBASE_ENVIRONMENT",
          "default": "PRODUCTION",
          "preset": true
        }
      ]
    },
    {
      "type": 1,
      "title": "Ubuntu",
      "description": "Debian-based Linux operating system",
      "categories": ["operating-system"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ubuntu.png",
      "image": "ubuntu:latest",
      "interactive": true,
      "command": "/bin/bash"
    },
    {
      "type": 1,
      "title": "NodeJS",
      "description": "JavaScript-based platform for server-side and networking applications",
      "categories": ["development"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/node.png",
      "image": "node:latest",
      "interactive": true,
      "command": "/bin/bash"
    },
    {
      "type": 1,
      "title": "Nginx",
      "description": "High performance web server",
      "categories": ["webserver"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/nginx.png",
      "image": "nginx:latest",
      "ports": ["80/tcp", "443/tcp"],
      "volumes": [
        {
          "container": "/etc/nginx"
        },
        {
          "container": "/usr/share/nginx/html"
        }
      ]
    },
    {
      "type": 1,
      "title": "Httpd",
      "description": "Open-source HTTP server",
      "categories": ["webserver"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/httpd.png",
      "image": "httpd:latest",
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/usr/local/apache2/htdocs/"
        }
      ]
    },
    {
      "type": 1,
      "title": "Caddy",
      "description": "Open-source web server with automatic HTTPS written in Go",
      "categories": ["webserver"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/caddy.png",
      "image": "caddy:latest",
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "type": 1,
      "title": "MySQL",
      "description": "The most popular open-source database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mysql.png",
      "image": "mysql/mysql-server:5.7",
      "env": [
        {
          "name": "MYSQL_ROOT_PASSWORD",
          "label": "Root password"
        },
        {
          "name": "MYSQL_ROOT_HOST",
          "default": "%",
          "preset": true
        }
      ],
      "ports": ["3306/tcp"],
      "volumes": [
        {
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "type": 1,
      "title": "MariaDB",
      "description": "Performance beyond MySQL",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mariadb.png",
      "image": "mariadb:latest",
      "env": [
        {
          "name": "MYSQL_ROOT_PASSWORD",
          "label": "Root password"
        }
      ],
      "ports": ["3306/tcp"],
      "volumes": [
        {
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "type": 1,
      "title": "PostgreSQL",
      "description": "The most advanced open-source database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/postgres.png",
      "image": "postgres:latest",
      "env": [
        {
          "name": "POSTGRES_USER",
          "label": "Superuser"
        },
        {
          "name": "POSTGRES_PASSWORD",
          "label": "Superuser password"
        }
      ],
      "ports": ["5432/tcp"],
      "volumes": [
        {
          "container": "/var/lib/postgresql/data"
        }
      ]
    },
    {
      "type": 1,
      "title": "Mongo",
      "description": "Open-source document-oriented database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mongo.png",
      "image": "mongo:latest",
      "ports": ["27017/tcp"],
      "volumes": [
        {
          "container": "/data/db"
        }
      ]
    },
    {
      "type": 1,
      "title": "CrateDB",
      "description": "An open-source distributed SQL database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cratedb.png",
      "image": "crate:latest",
      "ports": ["4200/tcp", "4300/tcp"],
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "type": 1,
      "title": "Elasticsearch",
      "description": "Open-source search and analytics engine",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/elasticsearch.png",
      "image": "docker.elastic.co/elasticsearch/elasticsearch:7.15.1",
      "ports": ["9200/tcp", "9300/tcp"],
      "volumes": [
        {
          "container": "/usr/share/elasticsearch/data"
        }
      ]
    },
    {
      "type": 1,
      "title": "Gitlab CE",
      "description": "Open-source end-to-end software development platform",
      "note": "Default username is <b>root</b>. Check the <a href=\"https://docs.gitlab.com/omnibus/docker/README.html#after-starting-a-container\" target=\"_blank\">Gitlab documentation</a> to get started.",
      "categories": ["development", "project-management"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/gitlab_ce.png",
      "image": "gitlab/gitlab-ce:latest",
      "ports": ["80/tcp", "443/tcp", "22/tcp"],
      "volumes": [
        {
          "container": "/etc/gitlab"
        },
        {
          "container": "/var/log/gitlab"
        },
        {
          "container": "/var/opt/gitlab"
        }
      ]
    },
    {
      "type": 1,
      "title": "Minio",
      "description": "A distributed object storage server built for cloud applications and devops",
      "categories": ["storage"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/minio.png",
      "image": "quay.io/minio/minio:latest",
      "ports": ["9000/tcp", "9001/tcp"],
      "env": [
        {
          "name": "MINIO_ROOT_USER",
          "label": "Root user"
        },
        {
          "name": "MINIO_ROOT_PASSWORD",
          "label": "Root password"
        }
      ],
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/root/.minio"
        }
      ],
      "command": "server /data --console-address ':9001'"
    },
    {
      "type": 1,
      "title": "Scality S3",
      "description": "Standalone AWS S3 protocol server",
      "categories": ["storage"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/scality-s3.png",
      "image": "scality/s3server",
      "ports": ["8000/tcp"],
      "env": [
        {
          "name": "SCALITY_ACCESS_KEY",
          "label": "Scality S3 access key"
        },
        {
          "name": "SCALITY_SECRET_KEY",
          "label": "Scality S3 secret key"
        }
      ],
      "volumes": [
        {
          "container": "/usr/src/app/localData"
        },
        {
          "container": "/usr/src/app/localMetadata"
        }
      ]
    },
    {
      "type": 1,
      "title": "SQL Server",
      "description": "Microsoft SQL Server on Linux",
      "categories": ["database"],
      "platform": "linux",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "image": "mcr.microsoft.com/mssql/server:2019-latest",
      "ports": ["1433/tcp"],
      "env": [
        {
          "name": "ACCEPT_EULA",
          "default": "Y",
          "preset": true
        },
        {
          "name": "SA_PASSWORD",
          "label": "SA password"
        }
      ]
    },
    {
      "type": 1,
      "title": "SQL Server Express",
      "description": "Microsoft SQL Server Express for Windows containers",
      "categories": ["database"],
      "platform": "windows",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "image": "microsoft/mssql-server-windows-express:latest",
      "ports": ["1433/tcp"],
      "env": [
        {
          "name": "ACCEPT_EULA",
          "default": "Y",
          "preset": true
        },
        {
          "name": "sa_password",
          "label": "SA password"
        }
      ],
      "volumes": [
        {
          "container": "C:/temp/"
        }
      ]
    },
    {
      "type": 1,
      "title": "Solr",
      "description": "Open-source enterprise search platform",
      "categories": ["search-engine"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/solr.png",
      "image": "solr:latest",
      "ports": ["8983/tcp"],
      "volumes": [
        {
          "container": "/opt/solr/mydata"
        }
      ]
    },
    {
      "type": 1,
      "title": "Redis",
      "description": "Open-source in-memory data structure store",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redis.png",
      "image": "redis:latest",
      "ports": ["6379/tcp"],
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "type": 2,
      "title": "Redis Cluster",
      "description": "Open-source in-memory data structure store - Cluster mode",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redis.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/redis-cluster/docker-stack.yaml"
      },
      "env": [
        {
          "name": "REDIS_PASSWD",
          "label": "Redis password"
        }
      ]
    },
    {
      "type": 1,
      "title": "RabbitMQ",
      "description": "Highly reliable enterprise messaging system",
      "categories": ["messaging"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/rabbitmq.png",
      "image": "rabbitmq:latest",
      "ports": ["5671/tcp", "5672/tcp"],
      "volumes": [
        {
          "container": "/var/lib/rabbitmq"
        }
      ]
    },
    {
      "type": 1,
      "title": "Ghost",
      "description": "Free and open-source blogging platform",
      "categories": ["blog"],
      "note": "Access the blog management interface under <code>/ghost/</code>.",
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ghost.png",
      "image": "ghost:latest",
      "ports": ["2368/tcp"],
      "volumes": [
        {
          "container": "/var/lib/ghost/content"
        }
      ]
    },
    {
      "type": 1,
      "title": "Joomla",
      "description": "Another free and open-source CMS",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/joomla.png",
      "image": "joomla:latest",
      "env": [
        {
          "name": "JOOMLA_DB_HOST",
          "label": "MySQL database host",
          "type": "container"
        },
        {
          "name": "JOOMLA_DB_PASSWORD",
          "label": "Database password"
        }
      ],
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "type": 1,
      "title": "Drupal",
      "description": "Open-source content management framework",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/drupal.png",
      "image": "drupal:latest",
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "type": 1,
      "title": "Plone",
      "description": "A free and open-source CMS built on top of Zope",
      "note": "Default user and password are admin/admin",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plone.png",
      "image": "plone:latest",
      "ports": ["8080/tcp"],
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "type": 1,
      "title": "Sematext Docker Agent",
      "description": "Collect logs, metrics and docker events",
      "categories": ["Log Management", "Monitoring"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
      "image": "sematext/sematext-agent-docker:latest",
      "name": "sematext-agent",
      "privileged": true,
      "env": [
        {
          "name": "LOGSENE_TOKEN",
          "label": "Logs token"
        },
        {
          "name": "SPM_TOKEN",
          "label": "SPM monitoring token"
        }
      ],
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        }
      ]
    },
    {
      "type": 1,
      "title": "Datadog agent",
      "description": "Collect events and metrics",
      "categories": ["Monitoring"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
      "image": "datadog/agent:latest",
      "env": [
        {
          "name": "DD_API_KEY",
          "label": "Datadog API key"
        }
      ],
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock",
          "readonly": true
        },
        {
          "container": "/host/sys/fs/cgroup",
          "bind": "/sys/fs/cgroup",
          "readonly": true
        },
        {
          "container": "/host/proc",
          "bind": "/proc",
          "readonly": true
        }
      ]
    },
    {
      "type": 1,
      "title": "Mautic",
      "description": "Open-source marketing automation platform",
      "categories": ["marketing"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mautic.png",
      "image": "mautic/mautic:latest",
      "env": [
        {
          "name": "MAUTIC_DB_HOST",
          "label": "MySQL database host",
          "type": "container"
        },
        {
          "name": "MAUTIC_DB_PASSWORD",
          "label": "Database password"
        }
      ],
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "type": 1,
      "title": "Jenkins",
      "description": "Open-source continuous integration tool",
      "categories": ["continuous-integration"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/jenkins.png",
      "image": "jenkins/jenkins:lts-jdk11",
      "ports": ["8080/tcp", "50000/tcp"],
      "volumes": [
        {
          "container": "/var/jenkins_home"
        }
      ]
    },
    {
      "type": 1,
      "title": "Redmine",
      "description": "Open-source project management tool",
      "note": "Default user and password are admin/admin",
      "categories": ["project-management"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redmine.png",
      "image": "redmine:latest",
      "ports": ["3000/tcp"],
      "volumes": [
        {
          "container": "/usr/src/redmine/files"
        }
      ]
    },
    {
      "type": 1,
      "title": "File browser",
      "description": "A web file manager",
      "note": "Default credentials: admin/admin",
      "categories": ["filesystem", "storage"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/filebrowser.png",
      "image": "filebrowser/filebrowser:latest",
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/srv"
        }
      ],
      "command": "--port 80 --database /data/database.db --root /srv"
    },
    {
      "type": 1,
      "title": "CommandBox",
      "description": "ColdFusion (CFML) CLI",
      "categories": ["development"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-commandbox.png",
      "image": "ortussolutions/commandbox:latest",
      "env": [
        {
          "name": "CFENGINE",
          "default": "lucee@4.5",
          "preset": true
        }
      ],
      "ports": ["8080/tcp", "8443/tcp"]
    },
    {
      "type": 1,
      "title": "ContentBox",
      "description": "Open-source modular CMS",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-contentbox.png",
      "image": "ortussolutions/contentbox:latest",
      "env": [
        {
          "name": "express",
          "default": "true",
          "preset": true
        },
        {
          "name": "install",
          "default": "true",
          "preset": true
        },
        {
          "name": "CFENGINE",
          "default": "lucee@4.5",
          "preset": true
        }
      ],
      "ports": ["8080/tcp", "8443/tcp"],
      "volumes": [
        {
          "container": "/data/contentbox/db"
        },
        {
          "container": "/app/includes/shared/media"
        }
      ]
    },
    {
      "type": 1,
      "title": "Dokku",
      "description": "Dokku setup as a container",
      "categories": ["PaaS"],
      "platform": "linux",
      "logo": "",
      "image": "dokku/dokku",
      "ports": ["22/tcp", "80/tcp", "443/tcp"],
      "volumes": [
        {
          "container": "/mnt/dokku",
          "bind": "/var/lib/dokku"
        },
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        }
      ],
      "env": [
        {
          "name": "DOKKU_HOSTNAME",
          "label": "Dokku hostname",
          "description": "Global hostname to be registered by Dokku"
        },
        {
          "name": "DOKKU_HOST_ROOT",
          "label": "Dokku host root",
          "default": "/var/lib/dokku/home/dokku",
          "description": "Image build cache path. Generally set to <data dir> + '/home/dokku'"
        }
      ]
    },
    {
      "type": 2,
      "title": "Portainer Agent",
      "description": "Manage all the resources in your Swarm cluster",
      "note": "The agent will be deployed globally inside your cluster and available on port 9001.",
      "categories": ["portainer"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/portainer.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/portainer-agent/docker-stack.yml"
      }
    },
    {
      "type": 2,
      "title": "OpenFaaS",
      "name": "func",
      "description": "Serverless functions made simple",
      "note": "Deploys the API gateway and sample functions. You can access the UI on port 8080. <b>Warning</b>: the name of the stack must be 'func'.",
      "categories": ["serverless"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/openfaas.png",
      "repository": {
        "url": "https://github.com/openfaas/faas",
        "stackfile": "docker-compose.yml"
      }
    },
    {
      "type": 2,
      "title": "IronFunctions",
      "description": "Open-source serverless computing platform",
      "note": "Deploys the IronFunctions API and UI.",
      "categories": ["serverless"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/ironfunctions/docker-stack.yml"
      }
    },
    {
      "type": 2,
      "title": "CockroachDB",
      "description": "CockroachDB cluster",
      "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/cockroachdb/docker-stack.yml"
      }
    },
    {
      "type": 2,
      "title": "WordPress",
      "description": "WordPress setup with a MySQL database",
      "note": "Deploys a WordPress instance connected to a MySQL database.",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/wordpress/docker-stack.yml"
      },
      "env": [
        {
          "name": "MYSQL_DATABASE_PASSWORD",
          "label": "Database root password",
          "description": "Password used by the MySQL root user."
        }
      ]
    },
    {
      "type": 3,
      "title": "OpenAMT",
      "description": "OpenAMT Cloud Toolkit",
      "note": "MPS password needs to be 8-32 characters including one uppercase, one lowercase letters, one base-10 digit and one special character.",
      "categories": ["Cloud"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/intel.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/openamt/docker-compose.yml"
      },
      "env": [
        {
          "name": "POSTGRES_USER",
          "label": "Database user"
        },
        {
          "name": "POSTGRES_PASSWORD",
          "label": "Database password"
        },
        {
          "name": "MPS_USER",
          "label": "MPS user"
        },
        {
          "name": "MPS_PASSWORD",
          "label": "MPS password"
        },
        {
          "name": "MPS_COMMON_NAME",
          "label": "MPS URL",
          "description": "Used to connect to the MPS API."
        },
        {
          "name": "MPS_SECRET",
          "label": "MPS Secret",
          "description": "Strong secret key used to log into MPS."
        },
        {
          "name": "VAULT_SECRET",
          "label": "Vault secret",
          "description": "Secret token used to log into Vault (don't include '.' character)."
        }
      ]
    },
    {
      "type": 2,
      "title": "Microsoft OMS Agent",
      "description": "Microsoft Operations Management Suite Linux agent.",
      "categories": ["OPS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/microsoft-oms/docker-stack.yml"
      },
      "env": [
        {
          "name": "AZURE_WORKSPACE_ID",
          "label": "Workspace ID",
          "description": "Azure Workspace ID"
        },
        {
          "name": "AZURE_PRIMARY_KEY",
          "label": "Primary key",
          "description": "Azure primary key"
        }
      ]
    },
    {
      "type": 4,
      "title": "Wordpress",
      "description": "Wordpress setup with a MySQL database",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "stackfile": "https://raw.githubusercontent.com/portainer/templates/master/stacks/wordpress/edge/docker-stack.yml"
    },
    {
      "type": 3,
      "title": "FDO",
      "description": "FDO",
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/intel.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/fdo/docker-stack.yml"
      },
      "env": [
        {
          "name": "owner_api_user",
          "label": "API Username"
        },
        {
          "name": "owner_api_password",
          "label": "API Password"
        }
      ]
    },
    {
      "type": 2,
      "title": "LiveSwitch",
      "description": "A basic LiveSwitch stack with gateway, caching, database and media server",
      "categories": ["media"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/liveswitch.png",
      "repository": {
        "url": "https://github.com/portainer/templates",
        "stackfile": "stacks/liveswitch/docker-stack.yml"
      },
      "env": [
        {
          "name": "POSTGRES_PASSWORD",
          "label": "Postgres password"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "AdGuard Home is a network-wide software for blocking ads & tracking. After you set it up, it\u2019ll cover ALL your home devices, and you don\u2019t need any client-side software for that. With the rise of Internet-Of-Things and connected devices, it becomes more and more important to be able to control your whole network.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "adguard home"
        }
      ],
      "image": "adguard/adguardhome:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/adguard.png",
      "name": "adguard",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "68:68/tcp",
        "68:68/udp",
        "80:80/tcp",
        "443:443/tcp",
        "853:853/tcp",
        "3000:3000/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Adguard",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Adguard/Workdir",
          "container": "/opt/adguardhome/work"
        },
        {
          "bind": "/portainer/Files/AppData/Adguard/Conf",
          "container": "/opt/adguardhome/conf"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "hotio/bazarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bazarr.png",
      "name": "Bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bitwarden.png",
      "name": "vaultwarden",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": [":80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Vaultwarden",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "note": "Configuration <ul><li><b>/config</b> - Where Calibre-web should store it's database</li><li><b>/books</b> - Path to your calibre library metadata.db file</li></ul>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "ave recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/davos.png",
      "name": "davos",
      "note": "Configuration <ul><li><b>/config</b> - AppData Location</li><li><b>/downloads</b> - File Download Location</li></ul>",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["6595:6595/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/deluge-icon.png",
      "name": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "note": "<b>Configuration</b></br>First, go to duckdns site, register your subdomain and retrieve your token<br/>Then run the docker create command above with your subdomain(s) and token<br/>It will update your IP with the DuckDNS service every 5 minutes",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/emby.png",
      "name": "Emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/embystat.png",
      "name": "EmbyStat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utility.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manager, a front end for many htpc related applications. Uses the Hellowlol HTPC Manager fork.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, \u00b5Torrent and Blackhole.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jellyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi\u2122 (formerly known as XBMC\u2122), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/swag:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt / SWAG",
      "note": "Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.<ul><li>- Port 443 on the internet side of the router should be forwarded to this container's port 443.</li><li>- If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains can be www,ftp,cloud</li><li>- The container detects changes to url and subdomains, revokes existing certs and generates new ones during start.</li><li>- It also detects changes to the DHLEVEL parameter and replaces the dhparams file.</li><li>- If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file <code>docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;</code>",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt / SWAG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/lidarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards. The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone.",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": "MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jc21/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "env": [
        {
          "label": "DB_SQLITE_FILE",
          "name": "DB_SQLITE_FILE",
          "default": "/data/database.sqlite"
        }
      ],
      "ports": ["80:80/tcp", "81:81/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/data",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/letsencrypt",
          "container": "/etc/letsencrypt"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module (CAM). The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Overseerr is a free and open source software application for managing requests for your media library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/overseerr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/overseerr-icon.png",
      "name": "Overseerr",
      "platform": "linux",
      "ports": ["5055:5055/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Overseerr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Overseerr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "ownCloud is a self-hosted file sync and share server. It provides access to your data through a web interface, sync clients or WebDAV while providing a platform to view, sync and share across devices easily\u2014all under your control. ownCloud\u2019s open architecture is extensible via a simple but powerful API for applications and plugins and it works with any storage.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "OWNCLOUD_DOMAIN",
          "name": "OWNCLOUD_DOMAIN"
        },
        {
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "label": "ADMIN_USERNAME",
          "name": "ADMIN_USERNAME"
        },
        {
          "label": "ADMIN_PASSWORD",
          "name": "ADMIN_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/docker-library/docs/9d36b4ed7cabc35dbd3849272ba2bd7abe482172/owncloud/logo.png",
      "name": "Owncloud",
      "note": "The database user is owncloud and the database is owncloud.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/owncloud.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Owncloud",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Petio is a third party companion app available to Plex server owners to allow their users to request, review and discover content.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/petio-icon.png",
      "name": "Petio",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/petio.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Petio",
      "type": 3
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Sonarr, Radarr, Lidarr, and Readarr offering complete management of your indexers with no per app Indexer setup required (we do it all).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ghcr.io/linuxserver/prowlarr:develop",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/prowlarr.png",
      "name": "prowlarr",
      "platform": "linux",
      "ports": ["9696:9696/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Prowlarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Prowlarr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to \u00b5Torrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core - much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies \u00e0 la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/radarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": "SmokePing is a latency logging and graphing and alerting system. It consists of a daemon process which organizes the latency measurements and a CGI which presents the graphs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/snibox.png",
      "name": "Snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/sonarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "note": "<b>Port 8181</b> The webui for Tautulli's webui<br/></br>Configuration <ul><li><b>/config</b> - Storing Configuration and the Tautulli database</li><li><b>/logs</b> - Map to you plex logs (required for IP logging)</li></ul>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, \u00b5TP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration where Transmission is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming. Multiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": "The Unifi-controller Controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "note": "Configuration <ul><li><b>/config</b> - This is where WebGrab+Plus will store it's configuration</li><li><b>/data</b> - This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.</li></ul>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/wikijs.png",
      "name": "Wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "Adguardhome-sync",
      "name": "Adguardhome-sync",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/adguardhome-sync/config</p>",
      "description": "[Adguardhome-sync](https://github.com/bakito/adguardhome-sync/) is a tool to synchronize AdGuardHome config to replica instances.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/adguardhomesync-icon.png",
      "image": "linuxserver/adguardhome-sync:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CONFIGFILE",
          "label": "CONFIGFILE",
          "default": "/config/adguardhome-sync.yaml",
          "description": "Set a custom config file."
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/adguardhome-sync/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Airsonic-advanced",
      "name": "Airsonic-advanced",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/airsonic-advanced/config<br>mkdir -p /volume1/docker/airsonic-advanced/music<br>mkdir -p /volume1/docker/airsonic-advanced/playlists<br>mkdir -p /volume1/docker/airsonic-advanced/podcasts<br>mkdir -p /volume1/docker/airsonic-advanced/media</p>",
      "description": "[Airsonic-advanced](https://github.com/airsonic-advanced/airsonic-advanced) is a free, web-based media streamer, providing ubiquitious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/airsonic-banner.png",
      "image": "linuxserver/airsonic-advanced:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CONTEXT_PATH",
          "label": "CONTEXT_PATH",
          "default": "<URL_BASE>",
          "description": "For setting url-base in reverse proxy setups."
        },
        {
          "name": "JAVA_OPTS",
          "label": "JAVA_OPTS",
          "default": "<options>",
          "description": "For passing additional java options."
        }
      ],
      "ports": ["4040:4040/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/airsonic-advanced/config"
        },
        {
          "container": "/music",
          "bind": "/volume1/docker/airsonic-advanced/music"
        },
        {
          "container": "/playlists",
          "bind": "/volume1/docker/airsonic-advanced/playlists"
        },
        {
          "container": "/podcasts",
          "bind": "/volume1/docker/airsonic-advanced/podcasts"
        },
        {
          "container": "/media",
          "bind": "/volume1/docker/airsonic-advanced/media"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Apprise-api",
      "name": "Apprise-api",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/apprise-api/config</p>",
      "description": "[Apprise-api](https://github.com/caronc/apprise-api) Takes advantage of [Apprise](https://github.com/caronc/apprise) through your network with a user-friendly API. * Send notifications to more then 65+ services. * An incredibly lightweight gateway to Apprise. * A production ready micro-service at your disposal. Apprise API was designed to easily fit into existing (and new) eco-systems that are looking for a simple notification solution.",
      "categories": ["Notifications"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/caronc/apprise-api/master/apprise_api/static/logo.png",
      "image": "linuxserver/apprise-api:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/apprise-api/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Audacity",
      "name": "Audacity",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/audacity/config</p>",
      "description": "[Audacity](https://www.audacityteam.org/) is an easy-to-use, multi-track audio editor and recorder. Developed by a group of volunteers as open source.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/audacity-logo.png",
      "image": "linuxserver/audacity:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/audacity/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Babybuddy",
      "name": "Babybuddy",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/babybuddy/config</p>",
      "description": "[Babybuddy](https://github.com/babybuddy/babybuddy) is a buddy for babies! Helps caregivers track sleep, feedings, diaper changes, tummy time and more to learn about and predict baby's needs without (as much) guess work.",
      "platform": "linux",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/babybuddy-logo.png",
      "image": "linuxserver/babybuddy:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CSRF_TRUSTED_ORIGINS",
          "label": "CSRF_TRUSTED_ORIGINS",
          "default": "http://127.0.0.1:8000,https://babybuddy.domain.com",
          "description": "Add any address you'd like to access babybuddy at (comma separated, no spaces)"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/babybuddy/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Bazarr",
      "name": "Bazarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/bazarr/config<br>mkdir -p /volume1/docker/bazarr/movies<br>mkdir -p /volume1/docker/bazarr/tv</p>",
      "description": "[Bazarr](https://www.bazarr.media/) is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/bazarr.png",
      "image": "linuxserver/bazarr:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["6767:6767/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/bazarr/config"
        },
        {
          "container": "/movies",
          "bind": "/volume1/docker/bazarr/movies"
        },
        {
          "container": "/tv",
          "bind": "/volume1/docker/bazarr/tv"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Beets",
      "name": "Beets",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/beets/config<br>mkdir -p /volume1/docker/beets/music<br>mkdir -p /volume1/docker/beets/downloads</p>",
      "description": "[Beets](http://beets.io/) is a music library manager and not, for the most part, a music player. It does include a simple player plugin and an experimental Web-based player, but it generally leaves actual sound-reproduction to specialized tools.",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/beets-icon.png",
      "image": "linuxserver/beets:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8337:8337/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/beets/config"
        },
        {
          "container": "/music",
          "bind": "/volume1/docker/beets/music"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/beets/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Blender",
      "name": "Blender",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/blender/config</p>",
      "description": "[Blender](https://www.blender.org/) is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. **This image does not support GPU rendering out of the box only accelerated workspace experience**",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/blender-logo.png",
      "image": "linuxserver/blender:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`"
        },
        {
          "name": "KEYBOARD",
          "label": "KEYBOARD",
          "default": "en-us-qwerty",
          "description": "See the keyboard layouts section for more information and options."
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/blender/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Boinc",
      "name": "Boinc",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/boinc/config</p>",
      "description": "[BOINC](https://boinc.berkeley.edu/) is a platform for high-throughput computing on a large scale (thousands or millions of computers). It can be used for volunteer computing (using consumer devices) or grid computing (using organizational resources). It supports virtualized, parallel, and GPU-based applications.",
      "categories": ["Research"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/BOINC/boinc/master/doc/logo/boinc_logo_black.jpg",
      "image": "linuxserver/boinc:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PASSWORD",
          "label": "PASSWORD",
          "default": "",
          "description": "Optionally set a password for the gui."
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/boinc/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Booksonic-air",
      "name": "Booksonic-air",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/booksonic-air/config<br>mkdir -p /volume1/docker/booksonic-air/audiobooks<br>mkdir -p /volume1/docker/booksonic-air/podcasts<br>mkdir -p /volume1/docker/booksonic-air/othermedia</p>",
      "description": "[Booksonic-air](http://booksonic.org) is a platform for accessing the audiobooks you own wherever you are. At the moment the platform consists of: * Booksonic Air - A server for streaming your audiobooks, successor to the original Booksonic server and based on Airsonic. * Booksonic App - An DSub based Android app for connection to Booksonic-Air servers.",
      "categories": ["Audio"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/booksonic-air.png",
      "image": "linuxserver/booksonic-air:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CONTEXT_PATH",
          "label": "CONTEXT_PATH",
          "default": "url-base",
          "description": "Base url for use with reverse proxies etc."
        }
      ],
      "ports": ["4040:4040/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/booksonic-air/config"
        },
        {
          "container": "/audiobooks",
          "bind": "/volume1/docker/booksonic-air/audiobooks"
        },
        {
          "container": "/podcasts",
          "bind": "/volume1/docker/booksonic-air/podcasts"
        },
        {
          "container": "/othermedia",
          "bind": "/volume1/docker/booksonic-air/othermedia"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Bookstack",
      "name": "Bookstack",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/bookstack/config</p>",
      "description": "[Bookstack](https://github.com/BookStackApp/BookStack) is a free and open source Wiki designed for creating beautiful documentation. Featuring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease. Powered by SQL and including a Markdown editor for those who prefer it, BookStack is geared towards making documentation more of a pleasure than a chore. For more information on BookStack visit their website and check it out: https://www.bookstackapp.com",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://s3-us-west-2.amazonaws.com/linuxserver-docs/images/bookstack-logo500x500.png",
      "image": "linuxserver/bookstack:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "APP_URL",
          "label": "APP_URL",
          "default": "",
          "description": "for specifying the IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com`"
        },
        {
          "name": "DB_HOST",
          "label": "DB_HOST",
          "default": "<yourdbhost>",
          "description": "for specifying the database host"
        },
        {
          "name": "DB_USER",
          "label": "DB_USER",
          "default": "<yourdbuser>",
          "description": "for specifying the database user"
        },
        {
          "name": "DB_PASS",
          "label": "DB_PASS",
          "default": "<yourdbpass>",
          "description": "for specifying the database password"
        },
        {
          "name": "DB_DATABASE",
          "label": "DB_DATABASE",
          "default": "bookstackapp",
          "description": "for specifying the database to be used (non-alphanumeric passwords must be properly escaped.)"
        }
      ],
      "ports": ["6875:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/bookstack/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Budge",
      "name": "Budge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/budge/config</p>",
      "description": "[Budge](https://github.com/linuxserver/budge) is an open source 'budgeting with envelopes' personal finance app.",
      "platform": "linux",
      "logo": "",
      "image": "linuxserver/budge:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/budge/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Calibre",
      "name": "Calibre",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/calibre/config</p>",
      "description": "[Calibre](https://calibre-ebook.com/) is a powerful and easy to use e-book manager. Users say it’s outstanding and a must-have. It’ll allow you to do nearly everything and it takes things a step beyond normal e-book software. It’s also completely free and open source and great for both casual users and computer experts.",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://github.com/kovidgoyal/calibre/raw/master/resources/images/lt.png",
      "image": "linuxserver/calibre:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PASSWORD",
          "label": "PASSWORD",
          "default": "",
          "description": "Optionally set a password for the gui."
        },
        {
          "name": "CLI_ARGS",
          "label": "CLI_ARGS",
          "default": "",
          "description": "Optionally pass cli start arguments to calibre."
        }
      ],
      "ports": ["8080:8080/tcp", "8081:8081/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/calibre/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Calibre-web",
      "name": "Calibre-web",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/calibre-web/config<br>mkdir -p /volume1/docker/calibre-web/books</p>",
      "description": "[Calibre-web](https://github.com/janeczku/calibre-web) is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. It is also possible to integrate google drive and edit metadata and your calibre library through the app itself. This software is a fork of library and licensed under the GPL v3 License.",
      "categories": ["Books"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/calibre-web-icon.png",
      "image": "linuxserver/calibre-web:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "DOCKER_MODS",
          "label": "DOCKER_MODS",
          "default": "linuxserver/mods:universal-calibre",
          "description": "#optional & **x86-64 only** Adds the ability to perform ebook conversion"
        },
        {
          "name": "OAUTHLIB_RELAX_TOKEN_SCOPE",
          "label": "OAUTHLIB_RELAX_TOKEN_SCOPE",
          "default": "1",
          "description": "Optionally set this to allow Google OAUTH to work"
        }
      ],
      "ports": ["8083:8083/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/calibre-web/config"
        },
        {
          "container": "/books",
          "bind": "/volume1/docker/calibre-web/books"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Changedetection.io",
      "name": "Changedetection.io",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/changedetection.io/config</p>",
      "description": "[Changedetection.io](https://github.com/dgtlmoon/changedetection.io) provides free, open-source web page monitoring, notification and change detection.",
      "platform": "linux",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/changedetection-icon.png",
      "image": "linuxserver/changedetection.io:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "BASE_URL",
          "label": "BASE_URL",
          "default": "",
          "description": "Specify the full URL (including protocol) when running behind a reverse proxy"
        }
      ],
      "ports": ["5000:5000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/changedetection.io/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Code-server",
      "name": "Code-server",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/code-server/config</p>",
      "description": "[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.",
      "categories": ["Development"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/code-server-banner.png",
      "image": "linuxserver/code-server:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PASSWORD",
          "label": "PASSWORD",
          "default": "password",
          "description": "Optional web gui password, if `PASSWORD` or `HASHED_PASSWORD` is not provided, there will be no auth."
        },
        {
          "name": "HASHED_PASSWORD",
          "label": "HASHED_PASSWORD",
          "default": "",
          "description": "Optional web gui password, overrides `PASSWORD`, instructions on how to create it is below."
        },
        {
          "name": "SUDO_PASSWORD",
          "label": "SUDO_PASSWORD",
          "default": "password",
          "description": "If this optional variable is set, user will have sudo access in the code-server terminal with the specified password."
        },
        {
          "name": "SUDO_PASSWORD_HASH",
          "label": "SUDO_PASSWORD_HASH",
          "default": "",
          "description": "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`."
        },
        {
          "name": "PROXY_DOMAIN",
          "label": "PROXY_DOMAIN",
          "default": "code-server.my.domain",
          "description": "If this optional variable is set, this domain will be proxied for subdomain proxying. See [Documentation](https://github.com/cdr/code-server/blob/master/docs/FAQ.md#sub-domains)"
        },
        {
          "name": "DEFAULT_WORKSPACE",
          "label": "DEFAULT_WORKSPACE",
          "default": "/config/workspace",
          "description": "If this optional variable is set, code-server will open this directory by default"
        }
      ],
      "ports": ["8443:8443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/code-server/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Cops",
      "name": "Cops",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/cops/config<br>mkdir -p /volume1/docker/cops/books</p>",
      "description": "[Cops](http://blog.slucas.fr/en/oss/calibre-opds-php-server) by Sébastien Lucas, stands for Calibre OPDS (and HTML) Php Server. COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices. Changes in your Calibre library are reflected immediately in your COPS pages. See : [COPS's home](http://blog.slucas.fr/en/oss/calibre-opds-php-server) for more details. Don't forget to check the [Wiki](https://github.com/seblucas/cops/wiki). ## Why? (taken from the author's site) In my opinion Calibre is a marvelous tool but is too big and has too much dependencies to be used for its content server. That's the main reason why I coded this OPDS server. I needed a simple tool to be installed on a small server (Seagate Dockstar in my case). I initially thought of Calibre2OPDS but as it generate static file no search was possible. Later I added an simple HTML catalog that should be usable on my Kobo. So COPS's main advantages are : * No need for many dependencies. * No need for a lot of CPU or RAM. * Not much code. * Search is available. * With Dropbox / owncloud it's very easy to have an up to date OPDS server. * It was fun to code. If you want to use the OPDS feed don't forget to specify feed.php at the end of your URL.",
      "categories": ["Books"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/cops-icon.png",
      "image": "linuxserver/cops:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/cops/config"
        },
        {
          "container": "/books",
          "bind": "/volume1/docker/cops/books"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Daapd",
      "name": "Daapd",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/daapd/config<br>mkdir -p /volume1/docker/daapd/music</p>",
      "description": "[Daapd](https://owntone.github.io/owntone-server/) (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), Chromecast, MPD and internet radio.",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-git.png",
      "image": "linuxserver/daapd:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/daapd/config"
        },
        {
          "container": "/music",
          "bind": "/volume1/docker/daapd/music"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Darktable",
      "name": "Darktable",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/darktable/config</p>",
      "description": "[darktable](https://www.darktable.org/) is an open source photography workflow application and raw developer. A virtual lighttable and darkroom for photographers. It manages your digital negatives in a database, lets you view them through a zoomable lighttable and enables you to develop raw images and enhance them.",
      "categories": ["Productivity"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/darktable-logo.png",
      "image": "linuxserver/darktable:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/darktable/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Davos",
      "name": "Davos",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/davos/config<br>mkdir -p /volume1/docker/davos/download</p>",
      "description": "[Davos](https://github.com/linuxserver/davos) is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.",
      "categories": ["Productivity"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/davos/master/docs/list.PNG",
      "image": "linuxserver/davos:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/davos/config"
        },
        {
          "container": "/download",
          "bind": "/volume1/docker/davos/download"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Ddclient",
      "name": "Ddclient",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ddclient/config</p>",
      "description": "[Ddclient](https://github.com/ddclient/ddclient) is a Perl client used to update dynamic DNS entries for accounts on Dynamic DNS Network Service Provider. It was originally written by Paul Burry and is now mostly by wimpunk. It has the capability to update more than just dyndns and it can fetch your WAN-ipaddress in a few different ways.",
      "categories": ["Networking"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ddclient-logo.png",
      "image": "linuxserver/ddclient:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/ddclient/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Deluge",
      "name": "Deluge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/deluge/config<br>mkdir -p /volume1/docker/deluge/downloads</p>",
      "description": "[Deluge](http://deluge-torrent.org/) is a lightweight, Free Software, cross-platform BitTorrent client. * Full Encryption * WebUI * Plugin System * Much more...",
      "categories": ["File Management"],
      "platform": "linux",
      "logo": "https://avatars2.githubusercontent.com/u/6733935?v=3&s=200",
      "image": "linuxserver/deluge:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "DELUGE_LOGLEVEL",
          "label": "DELUGE_LOGLEVEL",
          "default": "error",
          "description": "set the loglevel output when running Deluge, default is info for deluged and warning for delgued-web"
        }
      ],
      "ports": ["8112:8112/tcp", "6881:6881/tcp", "6881:6881/udp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/deluge/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/deluge/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Digikam",
      "name": "Digikam",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/digikam/config</p>",
      "description": "[digiKam](https://www.digikam.org/): Professional Photo Management with the Power of Open Source",
      "categories": ["Photography"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/digikam.png",
      "image": "linuxserver/digikam:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`"
        },
        {
          "name": "KEYBOARD",
          "label": "KEYBOARD",
          "default": "en-us-qwerty",
          "description": "See the keyboard layouts section for more information and options."
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/digikam/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Dillinger",
      "name": "Dillinger",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/dillinger/config</p>",
      "description": "[Dillinger](https://github.com/joemccann/dillinger) is a cloud-enabled, mobile-ready, offline-storage, AngularJS powered HTML5 Markdown editor.",
      "categories": ["Development"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/dillinger.png",
      "image": "linuxserver/dillinger:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/dillinger/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Diskover",
      "name": "Diskover",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/diskover/config<br>mkdir -p /volume1/docker/diskover/data</p>",
      "description": "[Diskover](https://github.com/diskoverdata/diskover-community) is an open source file system indexer that uses Elasticsearch to index and manage data across heterogeneous storage systems.",
      "categories": ["Productivity"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/diskoverdata/diskover-community/master/diskover-web/public/images/diskover.png",
      "image": "linuxserver/diskover:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "ES_HOST",
          "label": "ES_HOST",
          "default": "elasticsearch",
          "description": "ElasticSearch host (optional)"
        },
        {
          "name": "ES_PORT",
          "label": "ES_PORT",
          "default": "9200",
          "description": "ElasticSearch port (optional)"
        },
        {
          "name": "ES_USER",
          "label": "ES_USER",
          "default": "elastic",
          "description": "ElasticSearch username (optional)"
        },
        {
          "name": "ES_PASS",
          "label": "ES_PASS",
          "default": "changeme",
          "description": "ElasticSearch password (optional)"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/diskover/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/diskover/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Docker-compose",
      "name": "Docker-compose",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/docker-compose/config</p>",
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/docker-compose for details.",
      "platform": "linux",
      "logo": "",
      "image": "linuxserver/docker-compose:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/docker-compose/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Dokuwiki",
      "name": "Dokuwiki",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/dokuwiki/config</p>",
      "description": "[Dokuwiki](https://www.dokuwiki.org/dokuwiki/) is a simple to use and highly versatile Open Source wiki software that doesn't require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.",
      "categories": ["Productivity"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/dokuwiki-icon.png",
      "image": "linuxserver/dokuwiki:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/dokuwiki/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Domoticz",
      "name": "Domoticz",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/domoticz/config</p>",
      "description": "[Domoticz](https://www.domoticz.com) is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device.",
      "categories": ["Automation"],
      "platform": "linux",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "image": "linuxserver/domoticz:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "WEBROOT",
          "label": "WEBROOT",
          "default": "domoticz",
          "description": "Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying."
        },
        {
          "name": "DBASE",
          "label": "DBASE",
          "default": "<path to database>",
          "description": "Sets path to database. Do not set unless you know what this does."
        }
      ],
      "ports": ["8080:8080/tcp", "6144:6144/tcp", "1443:1443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/domoticz/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Doplarr",
      "name": "Doplarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/doplarr/config</p>",
      "description": "[Doplarr](https://github.com/kiranshila/Doplarr) is an *arr request bot for Discord.'",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/doplarr-logo_title.png",
      "image": "linuxserver/doplarr:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "DISCORD__TOKEN",
          "label": "DISCORD__TOKEN",
          "default": "",
          "description": "Specify your discord bot token."
        },
        {
          "name": "OVERSEERR__API",
          "label": "OVERSEERR__API",
          "default": "",
          "description": "Specify your Overseerr API key. Leave blank if using Radarr/Sonarr."
        },
        {
          "name": "OVERSEERR__URL",
          "label": "OVERSEERR__URL",
          "default": "http://localhost:5055",
          "description": "Specify your Overseerr URL. Leave blank if using Radarr/Sonarr."
        },
        {
          "name": "RADARR__API",
          "label": "RADARR__API",
          "default": "",
          "description": "Specify your Radarr API key. Leave blank if using Overseerr."
        },
        {
          "name": "RADARR__URL",
          "label": "RADARR__URL",
          "default": "http://localhost:7878",
          "description": "Specify your Radarr URL. Leave blank if using Overseerr."
        },
        {
          "name": "SONARR__API",
          "label": "SONARR__API",
          "default": "",
          "description": "Specify your Sonarr API key. Leave blank if using Overseerr."
        },
        {
          "name": "SONARR__URL",
          "label": "SONARR__URL",
          "default": "http://localhost:8989",
          "description": "Specify your Sonarr URL. Leave blank if using Overseerr."
        },
        {
          "name": "DISCORD__MAX_RESULTS",
          "label": "DISCORD__MAX_RESULTS",
          "default": "25",
          "description": "Sets the maximum size of the search results selection"
        },
        {
          "name": "DISCORD__REQUESTED_MSG_STYLE",
          "label": "DISCORD__REQUESTED_MSG_STYLE",
          "default": ":plain",
          "description": "Sets the style of the request alert message. One of `:plain` `:embed` `:none`"
        },
        {
          "name": "SONARR__QUALITY_PROFILE",
          "label": "SONARR__QUALITY_PROFILE",
          "default": "",
          "description": "The name of the quality profile to use by default for Sonarr"
        },
        {
          "name": "RADARR__QUALITY_PROFILE",
          "label": "RADARR__QUALITY_PROFILE",
          "default": "",
          "description": "The name of the quality profile to use by default for Radarr"
        },
        {
          "name": "SONARR__ROOTFOLDER",
          "label": "SONARR__ROOTFOLDER",
          "default": "",
          "description": "The root folder to use by default for Sonarr"
        },
        {
          "name": "RADARR__ROOTFOLDER",
          "label": "RADARR__ROOTFOLDER",
          "default": "",
          "description": "The root folder to use by default for Radarr"
        },
        {
          "name": "SONARR__LANGUAGE_PROFILE",
          "label": "SONARR__LANGUAGE_PROFILE",
          "default": "",
          "description": "The name of the language profile to use by default for Sonarr"
        },
        {
          "name": "OVERSEERR__DEFAULT_ID",
          "label": "OVERSEERR__DEFAULT_ID",
          "default": "",
          "description": "The Overseerr user id to use by default if there is no associated discord account for the requester"
        },
        {
          "name": "PARTIAL_SEASONS",
          "label": "PARTIAL_SEASONS",
          "default": "true",
          "description": "Sets whether users can request partial seasons."
        },
        {
          "name": "LOG_LEVEL",
          "label": "LOG_LEVEL",
          "default": ":info",
          "description": "The log level for the logging backend. This can be changed for debugging purposes. One of trace `:debug` `:info` `:warn` `:error` `:fatal` `:report`"
        },
        {
          "name": "JAVA_OPTS",
          "label": "JAVA_OPTS",
          "default": "",
          "description": "For passing additional java options."
        }
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/doplarr/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Doublecommander",
      "name": "Doublecommander",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/doublecommander/config<br>mkdir -p /volume1/docker/doublecommander/data</p>",
      "description": "[Double Commander](https://doublecmd.sourceforge.io/) is a free cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas.",
      "categories": ["File Management"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/doublecommander-icon.png",
      "image": "linuxserver/doublecommander:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/doublecommander/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/doublecommander/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Duckdns",
      "name": "Duckdns",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/duckdns/config</p>",
      "description": "[Duckdns](https://duckdns.org/) is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/duckdns.png",
      "image": "linuxserver/duckdns:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBDOMAINS",
          "label": "SUBDOMAINS",
          "default": "subdomain1,subdomain2",
          "description": "multiple subdomains allowed, comma separated, no spaces"
        },
        {
          "name": "TOKEN",
          "label": "TOKEN",
          "default": "token",
          "description": "DuckDNS token"
        },
        {
          "name": "LOG_FILE",
          "label": "LOG_FILE",
          "default": "false",
          "description": "Set to `true` to log to file (also need to map /config)."
        }
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/duckdns/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Duplicati",
      "name": "Duplicati",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/duplicati/config<br>mkdir -p /volume1/docker/duplicati/backups<br>mkdir -p /volume1/docker/duplicati/source</p>",
      "description": "[Duplicati](https://www.duplicati.com/) works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive & S3, Google Drive, box.com, Mega, hubiC and many others.",
      "platform": "linux",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/duplicati-icon.png",
      "image": "linuxserver/duplicati:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CLI_ARGS",
          "label": "CLI_ARGS",
          "default": "",
          "description": "Optionally specify any [CLI variables](https://duplicati.readthedocs.io/en/latest/07-other-command-line-utilities/) you want to launch the app with"
        }
      ],
      "ports": ["8200:8200/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/duplicati/config"
        },
        {
          "container": "/backups",
          "bind": "/volume1/docker/duplicati/backups"
        },
        {
          "container": "/source",
          "bind": "/volume1/docker/duplicati/source"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Emby",
      "name": "Emby",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/emby/config<br>mkdir -p /volume1/docker/emby/data/tvshows<br>mkdir -p /volume1/docker/emby/data/movies<br></p>",
      "description": "[Emby](https://emby.media/) organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "categories": ["Home Media"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/emby-logo.png",
      "image": "linuxserver/emby:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/emby/config"
        },
        {
          "container": "/data/tvshows",
          "bind": "/volume1/docker/emby/data/tvshows"
        },
        {
          "container": "/data/movies",
          "bind": "/volume1/docker/emby/data/movies"
        },
        {
          "container": "/opt/vc/lib",
          "bind": "/opt/vc/lib"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Embystat",
      "name": "Embystat",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/embystat/config</p>",
      "description": "[Embystat](https://github.com/mregni/EmbyStat) is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/embystat-logo.png",
      "image": "linuxserver/embystat:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["6555:6555/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/embystat/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Emulatorjs",
      "name": "Emulatorjs",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/emulatorjs/config<br>mkdir -p /volume1/docker/emulatorjs/data</p>",
      "description": "[Emulatorjs](https://github.com/linuxserver/emulatorjs) - In browser web based emulation portable to nearly any device for many retro consoles. A mix of emulators is used between Libretro and EmulatorJS.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/emulatorjs-logo.png",
      "image": "linuxserver/emulatorjs:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a subfolder for reverse proxies IE '/FOLDER/'"
        }
      ],
      "ports": ["3000:3000/tcp", "80:80/tcp", "4001:4001/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/emulatorjs/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/emulatorjs/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Endlessh",
      "name": "Endlessh",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/endlessh/config</p>",
      "description": "[Endlessh](https://github.com/skeeto/endlessh) is an SSH tarpit that very slowly sends an endless, random SSH banner. It keeps SSH clients locked up for hours or even days at a time. The purpose is to put your real SSH server on another port and then let the script kiddies get stuck in this tarpit instead of bothering a real server.",
      "platform": "linux",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/openssh-server-logo.png",
      "image": "linuxserver/endlessh:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "MSDELAY",
          "label": "MSDELAY",
          "default": "10000",
          "description": "The endless banner is sent one line at a time. This is the delay in milliseconds between individual lines."
        },
        {
          "name": "MAXLINES",
          "label": "MAXLINES",
          "default": "32",
          "description": "The length of each line is randomized. This controls the maximum length of each line. Shorter lines may keep clients on for longer if they give up after a certain number of bytes."
        },
        {
          "name": "MAXCLIENTS",
          "label": "MAXCLIENTS",
          "default": "4096",
          "description": "Maximum number of connections to accept at a time. Connections beyond this are not immediately rejected, but will wait in the queue."
        },
        {
          "name": "LOGFILE",
          "label": "LOGFILE",
          "default": "false",
          "description": "By default, the app logs to container log. If this is set to `true`, the log will be output to file under `/config/logs/endlessh` (`/config` needs to be mapped)."
        },
        {
          "name": "BINDFAMILY",
          "label": "BINDFAMILY",
          "default": "",
          "description": "By default, the app binds to IPv4 and IPv6 addresses. Set it to `4` or `6` to bind to IPv4 only or IPv6 only, respectively. Leave blank to bind to both."
        }
      ],
      "ports": ["22:2222/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/endlessh/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Fail2ban",
      "name": "Fail2ban",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/fail2ban/config<br>mkdir -p /volume1/docker/fail2ban/var/log:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/airsonic:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/apache2:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/authelia:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/emby:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/filebrowser:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/homeassistant:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/lighttpd:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/nextcloud:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/nginx:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/nzbget:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/overseerr:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/prowlarr:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/radarr:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/sabnzbd:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/sonarr:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/unificontroller:ro<br>mkdir -p /volume1/docker/fail2ban/remotelogs/vaultwarden:ro</p>",
      "description": "[Fail2ban](http://www.fail2ban.org/) is a daemon to ban hosts that cause multiple authentication errors.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/fail2ban-logo.png",
      "image": "linuxserver/fail2ban:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/fail2ban/config"
        },
        {
          "container": "/var/log:ro",
          "bind": "/volume1/docker/fail2ban/var/log:ro"
        },
        {
          "container": "/remotelogs/airsonic:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/airsonic:ro"
        },
        {
          "container": "/remotelogs/apache2:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/apache2:ro"
        },
        {
          "container": "/remotelogs/authelia:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/authelia:ro"
        },
        {
          "container": "/remotelogs/emby:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/emby:ro"
        },
        {
          "container": "/remotelogs/filebrowser:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/filebrowser:ro"
        },
        {
          "container": "/remotelogs/homeassistant:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/homeassistant:ro"
        },
        {
          "container": "/remotelogs/lighttpd:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/lighttpd:ro"
        },
        {
          "container": "/remotelogs/nextcloud:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/nextcloud:ro"
        },
        {
          "container": "/remotelogs/nginx:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/nginx:ro"
        },
        {
          "container": "/remotelogs/nzbget:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/nzbget:ro"
        },
        {
          "container": "/remotelogs/overseerr:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/overseerr:ro"
        },
        {
          "container": "/remotelogs/prowlarr:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/prowlarr:ro"
        },
        {
          "container": "/remotelogs/radarr:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/radarr:ro"
        },
        {
          "container": "/remotelogs/sabnzbd:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/sabnzbd:ro"
        },
        {
          "container": "/remotelogs/sonarr:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/sonarr:ro"
        },
        {
          "container": "/remotelogs/unificontroller:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/unificontroller:ro"
        },
        {
          "container": "/remotelogs/vaultwarden:ro",
          "bind": "/volume1/docker/fail2ban/remotelogs/vaultwarden:ro"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Ffmpeg",
      "name": "Ffmpeg",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ffmpeg/config</p>",
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/ffmpeg for details.",
      "platform": "linux",
      "logo": "",
      "image": "linuxserver/ffmpeg:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/ffmpeg/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Filezilla",
      "name": "Filezilla",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/filezilla/config</p>",
      "description": "[FIleZilla](https://filezilla-project.org/) Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/filezilla-logo.png",
      "image": "linuxserver/filezilla:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/filezilla/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Firefox",
      "name": "Firefox",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/firefox/config</p>",
      "description": "[Firefox](https://www.mozilla.org/en-US/firefox/) Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/firefox-logo.png",
      "image": "linuxserver/firefox:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/firefox/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Fleet",
      "name": "Fleet",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/fleet/config</p>",
      "description": "[Fleet](https://github.com/linuxserver/fleet) provides an online web interface which displays a set of maintained images from one or more owned repositories.",
      "platform": "linux",
      "logo": "",
      "image": "linuxserver/fleet:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "fleet_admin_authentication_type",
          "label": "fleet_admin_authentication_type",
          "default": "DATABASE",
          "description": "A switch to define how Fleet manages user logins. If set to DATABASE, see the related optional params. Can be set to either DATABASE or PROPERTIES."
        },
        {
          "name": "fleet_database_url",
          "label": "fleet_database_url",
          "default": "jdbc:mariadb://<url>:3306/fleet",
          "description": "The full JDBC connection string to the Fleet database"
        },
        {
          "name": "fleet_database_username",
          "label": "fleet_database_username",
          "default": "fleet_user",
          "description": "The username with the relevant GRANT permissions for the database"
        },
        {
          "name": "fleet_database_password",
          "label": "fleet_database_password",
          "default": "dbuserpassword",
          "description": "The database user's password."
        },
        {
          "name": "fleet_admin_secret",
          "label": "fleet_admin_secret",
          "default": "randomstring",
          "description": "A string used as part of the password key derivation process."
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/fleet/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Foldingathome",
      "name": "Foldingathome",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/foldingathome/config</p>",
      "description": "[Folding@home](https://foldingathome.org/) is a distributed computing project for simulating protein dynamics, including the process of protein folding and the movements of proteins implicated in a variety of diseases. It brings together citizen scientists who volunteer to run simulations of protein dynamics on their personal computers. Insights from this data are helping scientists to better understand biology, and providing new opportunities for developing therapeutics.",
      "platform": "linux",
      "logo": "https://foldingathome.org/wp-content/uploads/2016/09/folding-at-home-logo.png",
      "image": "linuxserver/foldingathome:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["7396:7396/tcp", "36330:36330/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/foldingathome/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Freshrss",
      "name": "Freshrss",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/freshrss/config</p>",
      "description": "[Freshrss](https://freshrss.org/) is a free, self-hostable aggregator for rss feeds.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/freshrss-banner.png",
      "image": "linuxserver/freshrss:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/freshrss/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Grav",
      "name": "Grav",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/grav/config</p>",
      "description": "[Grav](https://github.com/getgrav/grav/) is a Fast, Simple, and Flexible, file-based Web-platform.",
      "categories": ["Web Platform"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/grav-logo.png",
      "image": "linuxserver/grav:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/grav/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Grocy",
      "name": "Grocy",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/grocy/config</p>",
      "description": "[Grocy](https://github.com/grocy/grocy) is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utility. Keep track of your purchases, how much food you are wasting, what chores need doing and what batteries need charging with this proudly Open Source tool For more information on grocy visit their website and check it out: https://grocy.info",
      "platform": "linux",
      "logo": "https://grocy.info/img/grocy_logo.svg",
      "image": "linuxserver/grocy:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["9283:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/grocy/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Guacd",
      "name": "Guacd",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "description": "[Guacd](https://guacamole.apache.org/) - Apache Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH. This container is only the backend server component needed to use The official or 3rd party HTML5 frontends.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/guacd.png",
      "image": "linuxserver/guacd:latest",
      "ports": ["4822:4822/tcp"],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Habridge",
      "name": "Habridge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/habridge/config</p>",
      "description": "[Habridge](http://bwssystems.com/#/habridge) emulates Philips Hue API to other home automation gateways such as an Amazon Echo/Dot Gen 1 (gen 2 has issues discovering ha-bridge) or other systems that support Philips Hue. The Bridge handles basic commands such as 'On', 'Off' and 'brightness' commands of the hue protocol. This bridge can control most devices that have a distinct API. In the cases of systems that require authorization and/or have APIs that cannot be handled in the current method, a module may need to be built. The Harmony Hub is such a module and so is the Nest module. The Bridge has helpers to build devices for the gateway for the Logitech Harmony Hub, Vera, Vera Lite or Vera Edge, Nest, Somfy Tahoma, Home Assistant, Domoticz, MQTT, HAL, Fibaro, HomeWizard, LIFX, OpenHAB, FHEM, Broadlink and the ability to proxy all of your real Hue bridges behind this bridge. This bridge was built to help put the Internet of Things together. For more information about how to use this software have a look at their Wiki [https://github.com/bwssytems/ha-bridge/wiki](https://github.com/bwssytems/ha-bridge/wiki)",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/bwssytems/ha-bridge/master/src/main/resources/public/img/favicon.ico",
      "image": "linuxserver/habridge:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "SEC_KEY",
          "label": "SEC_KEY",
          "default": "<Your Key To Encrypt Security Data>",
          "description": "Key used to secure communication."
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:8080/tcp", "50000:50000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/habridge/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Headphones",
      "name": "Headphones",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/headphones/config<br>mkdir -p /volume1/docker/headphones/downloads<br>mkdir -p /volume1/docker/headphones/music</p>",
      "description": "[Headphones](https://github.com/rembo10/headphones) is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/headphones-banner.png",
      "image": "linuxserver/headphones:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8181:8181/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/headphones/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/headphones/downloads"
        },
        {
          "container": "/music",
          "bind": "/volume1/docker/headphones/music"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Healthchecks",
      "name": "Healthchecks",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/healthchecks/config</p>",
      "description": "[Healthchecks](https://github.com/healthchecks/healthchecks) is a watchdog for your cron jobs. It's a web server that listens for pings from your cron jobs, plus a web interface.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/healthchecks/healthchecks/master/static/img/welcome.png",
      "image": "linuxserver/healthchecks:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "SITE_ROOT",
          "label": "SITE_ROOT",
          "default": "",
          "description": "The site's top-level URL and the port it listens to if differrent than 80 or 443 (e.g., https://healthchecks.example.com:8000)"
        },
        {
          "name": "SITE_NAME",
          "label": "SITE_NAME",
          "default": "",
          "description": "The site's name (e.g., 'Example Corp HealthChecks')"
        },
        {
          "name": "DEFAULT_FROM_EMAIL",
          "label": "DEFAULT_FROM_EMAIL",
          "default": "",
          "description": "From email for alerts"
        },
        {
          "name": "EMAIL_HOST",
          "label": "EMAIL_HOST",
          "default": "",
          "description": "SMTP host"
        },
        {
          "name": "EMAIL_PORT",
          "label": "EMAIL_PORT",
          "default": "",
          "description": "SMTP port"
        },
        {
          "name": "EMAIL_HOST_USER",
          "label": "EMAIL_HOST_USER",
          "default": "",
          "description": "SMTP user"
        },
        {
          "name": "EMAIL_HOST_PASSWORD",
          "label": "EMAIL_HOST_PASSWORD",
          "default": "",
          "description": "SMTP password"
        },
        {
          "name": "EMAIL_USE_TLS",
          "label": "EMAIL_USE_TLS",
          "default": "",
          "description": "Use TLS for SMTP (`True` or `False`)"
        },
        {
          "name": "SUPERUSER_EMAIL",
          "label": "SUPERUSER_EMAIL",
          "default": "",
          "description": "Superuser email"
        },
        {
          "name": "SUPERUSER_PASSWORD",
          "label": "SUPERUSER_PASSWORD",
          "default": "",
          "description": "Superuser password"
        },
        {
          "name": "REGENERATE_SETTINGS",
          "label": "REGENERATE_SETTINGS",
          "default": "",
          "description": "Defaults to False. Set to true to always override the `local_settings.py` file with values from environment variables. Do not set to True if you have made manual modifications to this file."
        },
        {
          "name": "SITE_LOGO_URL",
          "label": "SITE_LOGO_URL",
          "default": "",
          "description": "Full URL to custom site logo"
        },
        {
          "name": "ALLOWED_HOSTS",
          "label": "ALLOWED_HOSTS",
          "default": "",
          "description": "Array of valid hostnames for the server `['test.com','test2.com']` (default: `['*']`)"
        },
        {
          "name": "SECRET_KEY",
          "label": "SECRET_KEY",
          "default": "",
          "description": "A secret key used for cryptographic signing. Will generate a secure value if one is not supplied"
        },
        {
          "name": "APPRISE_ENABLED",
          "label": "APPRISE_ENABLED",
          "default": "",
          "description": "Defaults to False. A boolean that turns on/off the Apprise integration (https://github.com/caronc/apprise)"
        },
        {
          "name": "DEBUG",
          "label": "DEBUG",
          "default": "",
          "description": "Defaults to True. Debug mode relaxes CSRF protections and increases logging verbosity but should be disabled for production instances as it will impact performance and security."
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/healthchecks/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Hedgedoc",
      "name": "Hedgedoc",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/hedgedoc/config</p>",
      "description": "[HedgeDoc](https://hedgedoc.org/) gives you access to all your files wherever you are. HedgeDoc is a real-time, multi-platform collaborative markdown note editor. This means that you can write notes with other people on your desktop, tablet or even on the phone. You can sign-in via multiple auth providers like Facebook, Twitter, GitHub and many more on the homepage.",
      "categories": ["Documentation"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/hedgedoc-banner.png",
      "image": "linuxserver/hedgedoc:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "DB_HOST",
          "label": "DB_HOST",
          "default": "<hostname or ip>",
          "description": "Host address of mysql database"
        },
        {
          "name": "DB_PORT",
          "label": "DB_PORT",
          "default": "3306",
          "description": "Port to access mysql database default is 3306"
        },
        {
          "name": "DB_USER",
          "label": "DB_USER",
          "default": "hedgedoc",
          "description": "Database user"
        },
        {
          "name": "DB_PASS",
          "label": "DB_PASS",
          "default": "<secret password>",
          "description": "Database password"
        },
        {
          "name": "DB_NAME",
          "label": "DB_NAME",
          "default": "hedgedoc",
          "description": "Database name"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CMD_DOMAIN",
          "label": "CMD_DOMAIN",
          "default": "localhost",
          "description": "The address the gui will be accessed at (ie. `192.168.1.1` or `hedgedoc.domain.com`)."
        },
        {
          "name": "CMD_URL_ADDPORT",
          "label": "CMD_URL_ADDPORT",
          "default": "false",
          "description": "Set to `true` if using a port other than `80` or `443`."
        },
        {
          "name": "CMD_PROTOCOL_USESSL",
          "label": "CMD_PROTOCOL_USESSL",
          "default": "false",
          "description": "Set to `true` if accessing over https via reverse proxy."
        },
        {
          "name": "CMD_PORT",
          "label": "CMD_PORT",
          "default": "3000",
          "description": "If you wish to access hedgedoc at a port different than 80, 443 or 3000, you need to set this to that port (ie. `CMD_PORT=5000`) and change the port mapping accordingly (5000:5000)."
        },
        {
          "name": "CMD_ALLOW_ORIGIN",
          "label": "CMD_ALLOW_ORIGIN",
          "default": "['localhost']",
          "description": "Comma-separated list of allowed hostnames"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/hedgedoc/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Heimdall",
      "name": "Heimdall",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/heimdall/config</p>",
      "description": "[Heimdall](https://heimdall.site) is a way to organise all those links to your most used web sites and web applications in a simple way. Simplicity is the key to Heimdall. Why not use it as your browser start page? It even has the ability to include a search bar using either Google, Bing or DuckDuckGo.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/heimdall-banner.png",
      "image": "linuxserver/heimdall:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/heimdall/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Homeassistant",
      "name": "Homeassistant",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/homeassistant/config</p>",
      "description": "[Home Assistant Core](https://www.home-assistant.io/) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.",
      "categories": ["Home Automation"],
      "platform": "linux",
      "logo": "https://github.com/home-assistant/home-assistant.io/raw/next/source/images/favicon-192x192-full.png",
      "image": "linuxserver/homeassistant:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8123:8123/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/homeassistant/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Htpcmanager",
      "name": "Htpcmanager",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/htpcmanager/config</p>",
      "description": "[Htpcmanager](https://github.com/HTPC-Manager/HTPC-Manager) is a front end for many htpc related applications.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/htpcmanager-icon.png",
      "image": "linuxserver/htpcmanager:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8085:8085/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/htpcmanager/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Ipfs",
      "name": "Ipfs",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ipfs/config</p>",
      "description": "[Ipfs](https://ipfs.io/) - A peer-to-peer hypermedia protocol designed to make the web faster, safer, and more open.",
      "categories": ["P2P"],
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Ipfs-logo-1024-ice-text.png/480px-Ipfs-logo-1024-ice-text.png",
      "image": "linuxserver/ipfs:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": [
        "80:80/tcp",
        "4001:4001/tcp",
        "5001:5001/tcp",
        "8080:8080/tcp",
        "443:443/tcp"
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/ipfs/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Jackett",
      "name": "Jackett",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/jackett/config<br>mkdir -p /volume1/docker/jackett/downloads</p>",
      "description": "[Jackett](https://github.com/Jackett/Jackett) works as a proxy server: it translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping & translation logic - removing the burden from other apps.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jackett-banner.png",
      "image": "linuxserver/jackett:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "AUTO_UPDATE",
          "label": "AUTO_UPDATE",
          "default": "true",
          "description": "Allow Jackett to update inside of the container (currently recommended by Jackett and enabled by default)"
        },
        {
          "name": "RUN_OPTS",
          "label": "RUN_OPTS",
          "default": "<run options here>",
          "description": "Optionally specify additional arguments to be passed."
        }
      ],
      "ports": ["9117:9117/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/jackett/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/jackett/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Jellyfin",
      "name": "Jellyfin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/jellyfin/config<br>mkdir -p /volume1/docker/jellyfin/data/tvshows<br>mkdir -p /volume1/docker/jellyfin/data/movies</p>",
      "description": "[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true",
      "image": "linuxserver/jellyfin:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "JELLYFIN_PublishedServerUrl",
          "label": "JELLYFIN_PublishedServerUrl",
          "default": "192.168.0.5",
          "description": "Set the autodiscovery response domain or IP address."
        }
      ],
      "ports": [
        "8096:8096/tcp",
        "8920:8920/tcp",
        "7359:7359/udp",
        "1900:1900/udp"
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/jellyfin/config"
        },
        {
          "container": "/data/tvshows",
          "bind": "/volume1/docker/jellyfin/data/tvshows"
        },
        {
          "container": "/data/movies",
          "bind": "/volume1/docker/jellyfin/data/movies"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Jenkins-builder",
      "name": "Jenkins-builder",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/jenkins-builder/config</p>",
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/jenkins-builder for details.",
      "platform": "linux",
      "logo": "",
      "image": "linuxserver/jenkins-builder:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/jenkins-builder/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Kasm",
      "name": "Kasm",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/kasm/opt<br>mkdir -p /volume1/docker/kasm/profiles</p>",
      "description": "[Kasm](https://www.kasmweb.com/?utm_campaign=LinuxServer&utm_source=listing) Workspaces is a docker container streaming platform for delivering browser-based access to desktops, applications, and web services. Kasm uses devops-enabled Containerized Desktop Infrastructure (CDI) to create on-demand, disposable, docker containers that are accessible via web browser. Example use-cases include Remote Browser Isolation (RBI), Data Loss Prevention (DLP), Desktop as a Service (DaaS), Secure Remote Access Services (RAS), and Open Source Intelligence (OSINT) collections. The rendering of the graphical-based containers is powered by the open-source project [KasmVNC](https://www.kasmweb.com/kasmvnc.html?utm_campaign=LinuxServer&utm_source=kasmvnc).",
      "platform": "linux",
      "logo": "https://kasm-ci.s3.amazonaws.com/kasm_wide.png",
      "image": "linuxserver/kasm:latest",
      "privileged": true,
      "env": [
        {
          "name": "KASM_PORT",
          "label": "KASM_PORT",
          "default": "443",
          "description": "Specify the port you bind to the outside for Kasm Workspaces."
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "DOCKER_HUB_USERNAME",
          "label": "DOCKER_HUB_USERNAME",
          "default": "USER",
          "description": "Optionally specify a DockerHub Username to pull private images."
        },
        {
          "name": "DOCKER_HUB_PASSWORD",
          "label": "DOCKER_HUB_PASSWORD",
          "default": "PASS",
          "description": "Optionally specify a DockerHub password to pull private images."
        }
      ],
      "ports": ["3000:3000/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/opt",
          "bind": "/volume1/docker/kasm/opt"
        },
        {
          "container": "/profiles",
          "bind": "/volume1/docker/kasm/profiles"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Kdenlive",
      "name": "Kdenlive",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/kdenlive/config</p>",
      "description": "[Kdenlive](https://kdenlive.org/) is a powerful free and open source cross-platform video editing program made by the KDE community. Feature rich and production ready.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/kdenlive-logo.png",
      "image": "linuxserver/kdenlive:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`"
        },
        {
          "name": "KEYBOARD",
          "label": "KEYBOARD",
          "default": "en-us-qwerty",
          "description": "See the keyboard layouts section for more information and options."
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/kdenlive/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Lazylibrarian",
      "name": "Lazylibrarian",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/lazylibrarian/config<br>mkdir -p /volume1/docker/lazylibrarian/downloads<br>mkdir -p /volume1/docker/lazylibrarian/books</p>",
      "description": "[Lazylibrarian](https://lazylibrarian.gitlab.io/) is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. This container is based on the DobyTang fork.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/lazylibrarian-icon.png",
      "image": "linuxserver/lazylibrarian:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "DOCKER_MODS",
          "label": "DOCKER_MODS",
          "default": "linuxserver/calibre-web:calibre|linuxserver/mods:lazylibrarian-ffmpeg",
          "description": "Allows additional functionality to be added, e.g. the Calibredb import program (optional, more info below)"
        }
      ],
      "ports": ["5299:5299/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/lazylibrarian/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/lazylibrarian/downloads"
        },
        {
          "container": "/books",
          "bind": "/volume1/docker/lazylibrarian/books"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Ldap-auth",
      "name": "Ldap-auth",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "description": "[Ldap-auth](https://github.com/nginxinc/nginx-ldap-auth) software is for authenticating users who request protected resources from servers proxied by nginx. It includes a daemon (ldap-auth) that communicates with an authentication server, and a webserver daemon that generates an authentication cookie based on the user’s credentials. The daemons are written in Python for use with a Lightweight Directory Access Protocol (LDAP) authentication server (OpenLDAP or Microsoft Windows Active Directory 2003 and 2012).",
      "platform": "linux",
      "logo": "https://jumpcloud.com/wp-content/uploads/2016/12/LDAP_Logo-1420591101.jpg",
      "image": "linuxserver/ldap-auth:latest",
      "env": [
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "FERNETKEY",
          "label": "FERNETKEY",
          "default": "",
          "description": "Optionally define a custom fernet key, has to be base64-encoded 32-byte (only needed if container is frequently recreated, or if using multi-node setups, invalidating previous authentications)"
        },
        {
          "name": "CERTFILE",
          "label": "CERTFILE",
          "default": "",
          "description": "Point this to a certificate file to enable HTTP over SSL (HTTPS) for the ldap auth daemon"
        },
        {
          "name": "KEYFILE",
          "label": "KEYFILE",
          "default": "",
          "description": "Point this to the private key file, matching the certificate file referred to in CERTFILE"
        }
      ],
      "ports": ["8888:8888/tcp", "9000:9000/tcp"],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Libreoffice",
      "name": "Libreoffice",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/libreoffice/config</p>",
      "description": "[LibreOffice](https://www.libreoffice.org/) is a free and powerful office suite, and a successor to OpenOffice.org (commonly known as OpenOffice). Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity.",
      "categories": ["Productivity"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/libreoffice-logo.png",
      "image": "linuxserver/libreoffice:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/libreoffice/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Librespeed",
      "name": "Librespeed",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/librespeed/config</p>",
      "description": "[Librespeed](https://github.com/librespeed/speedtest) is a very lightweight Speedtest implemented in Javascript, using XMLHttpRequest and Web Workers. No Flash, No Java, No Websocket, No Bullshit.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/librespeed/speedtest/master/.logo/logo3.png",
      "image": "linuxserver/librespeed:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PASSWORD",
          "label": "PASSWORD",
          "default": "PASSWORD",
          "description": "Set the password for the results database."
        },
        {
          "name": "CUSTOM_RESULTS",
          "label": "CUSTOM_RESULTS",
          "default": "false",
          "description": "(optional) set to `true` to enable custom results page in `/config/www/results/index.php`."
        },
        {
          "name": "DB_TYPE",
          "label": "DB_TYPE",
          "default": "sqlite",
          "description": "Defaults to `sqlite`, can also be set to `mysql` or `postgresql`."
        },
        {
          "name": "DB_NAME",
          "label": "DB_NAME",
          "default": "DB_NAME",
          "description": "Database name. Required for mysql and pgsql."
        },
        {
          "name": "DB_HOSTNAME",
          "label": "DB_HOSTNAME",
          "default": "DB_HOSTNAME",
          "description": "Database address. Required for mysql and pgsql."
        },
        {
          "name": "DB_USERNAME",
          "label": "DB_USERNAME",
          "default": "DB_USERNAME",
          "description": "Database username. Required for mysql and pgsql."
        },
        {
          "name": "DB_PASSWORD",
          "label": "DB_PASSWORD",
          "default": "DB_PASSWORD",
          "description": "Database password. Required for mysql and pgsql."
        },
        {
          "name": "DB_PORT",
          "label": "DB_PORT",
          "default": "DB_PORT",
          "description": "Database port. Required for mysql."
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/librespeed/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Lidarr",
      "name": "Lidarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/lidarr/config<br>mkdir -p /volume1/docker/lidarr/music<br>mkdir -p /volume1/docker/lidarr/downloads</p>",
      "description": "[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "platform": "linux",
      "logo": "https://github.com/lidarr/Lidarr/raw/develop/Logo/400.png",
      "image": "linuxserver/lidarr:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8686:8686/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/lidarr/config"
        },
        {
          "container": "/music",
          "bind": "/volume1/docker/lidarr/music"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/lidarr/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Limnoria",
      "name": "Limnoria",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/limnoria/config</p>",
      "description": "[Limnoria](https://github.com/ProgVal/limnoria) A robust, full-featured, and user/programmer-friendly Python IRC bot, with many existing plugins. Successor of the well-known Supybot.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-limnoria/master/logo.png",
      "image": "linuxserver/limnoria:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/limnoria/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Lychee",
      "name": "Lychee",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/lychee/config<br>mkdir -p /volume1/docker/lychee/pictures</p>",
      "description": "[Lychee](https://lycheeorg.github.io/) is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.' ### UPGRADE WARNING Please note that the v4 upgrade process resets ALL password-protected albums. Any albums that were made public with a password will need to be re-secured.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/lychee-icon.png",
      "image": "linuxserver/lychee:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "DB_HOST",
          "label": "DB_HOST",
          "default": "mariadb",
          "description": "for specifying the database host"
        },
        {
          "name": "DB_USERNAME",
          "label": "DB_USERNAME",
          "default": "lychee",
          "description": "for specifying the database user"
        },
        {
          "name": "DB_PASSWORD",
          "label": "DB_PASSWORD",
          "default": "dbpassword",
          "description": "for specifying the database password"
        },
        {
          "name": "DB_DATABASE",
          "label": "DB_DATABASE",
          "default": "lychee",
          "description": "for specifying the database to be used"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/lychee/config"
        },
        {
          "container": "/pictures",
          "bind": "/volume1/docker/lychee/pictures"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Mariadb",
      "name": "Mariadb",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mariadb/config</p>",
      "description": "[Mariadb](https://mariadb.org/) is one of the most popular database servers. Made by the original developers of MySQL.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mariadb-git.png",
      "image": "linuxserver/mariadb:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "MYSQL_ROOT_PASSWORD",
          "label": "MYSQL_ROOT_PASSWORD",
          "default": "ROOT_ACCESS_PASSWORD",
          "description": "Set this to root password for installation (minimum 4 characters & non-alphanumeric passwords must be properly escaped)."
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "MYSQL_DATABASE",
          "label": "MYSQL_DATABASE",
          "default": "USER_DB_NAME",
          "description": "Specify the name of a database to be created on image startup."
        },
        {
          "name": "MYSQL_USER",
          "label": "MYSQL_USER",
          "default": "MYSQL_USER",
          "description": "This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here)."
        },
        {
          "name": "MYSQL_PASSWORD",
          "label": "MYSQL_PASSWORD",
          "default": "DATABASE_PASSWORD",
          "description": "Set this to the password you want to use for you MYSQL_USER (minimum 4 characters & non-alphanumeric passwords must be properly escaped)."
        },
        {
          "name": "REMOTE_SQL",
          "label": "REMOTE_SQL",
          "default": "http://URL1/your.sql,https://URL2/your.sql",
          "description": "Set this to ingest sql files from an http/https endpoint (comma seperated array)."
        }
      ],
      "ports": ["3306:3306/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/mariadb/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Mastodon",
      "name": "Mastodon",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mastodon/config</p>",
      "description": "[Mastodon](https://github.com/mastodon/mastodon/) is a free, open-source social network server based on ActivityPub where users can follow friends and discover new ones..",
      "categories": ["Social"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mastodon-banner.png",
      "image": "linuxserver/mastodon:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "LOCAL_DOMAIN",
          "label": "LOCAL_DOMAIN",
          "default": "example.com",
          "description": "This is the unique identifier of your server in the network. It cannot be safely changed later."
        },
        {
          "name": "REDIS_HOST",
          "label": "REDIS_HOST",
          "default": "redis",
          "description": "Redis server hostname"
        },
        {
          "name": "REDIS_PORT",
          "label": "REDIS_PORT",
          "default": "6379",
          "description": "Redis port"
        },
        {
          "name": "DB_HOST",
          "label": "DB_HOST",
          "default": "db",
          "description": "Postgres database hostname"
        },
        {
          "name": "DB_USER",
          "label": "DB_USER",
          "default": "mastodon",
          "description": "Postgres username"
        },
        {
          "name": "DB_NAME",
          "label": "DB_NAME",
          "default": "mastodon",
          "description": "Postgres db name"
        },
        {
          "name": "DB_PASS",
          "label": "DB_PASS",
          "default": "mastodon",
          "description": "Postgres password"
        },
        {
          "name": "DB_PORT",
          "label": "DB_PORT",
          "default": "5432",
          "description": "Portgres port"
        },
        {
          "name": "ES_ENABLED",
          "label": "ES_ENABLED",
          "default": "false",
          "description": "Enable or disable Elasticsearch (requires a separate ES instance)"
        },
        {
          "name": "SECRET_KEY_BASE",
          "label": "SECRET_KEY_BASE",
          "default": "",
          "description": "Browser session secret. Changing it will break all active browser sessions."
        },
        {
          "name": "OTP_SECRET",
          "label": "OTP_SECRET",
          "default": "",
          "description": "MFA secret. Changing it will break two-factor authentication."
        },
        {
          "name": "VAPID_PRIVATE_KEY",
          "label": "VAPID_PRIVATE_KEY",
          "default": "",
          "description": "Push notification private key. Changing it will break push notifications."
        },
        {
          "name": "VAPID_PUBLIC_KEY",
          "label": "VAPID_PUBLIC_KEY",
          "default": "",
          "description": "Push notification public key. Changing it will break push notifications."
        },
        {
          "name": "SMTP_SERVER",
          "label": "SMTP_SERVER",
          "default": "mail.example.com",
          "description": "SMTP server for email notifications"
        },
        {
          "name": "SMTP_PORT",
          "label": "SMTP_PORT",
          "default": "25",
          "description": "SMTP server port"
        },
        {
          "name": "SMTP_LOGIN",
          "label": "SMTP_LOGIN",
          "default": "",
          "description": "SMTP username"
        },
        {
          "name": "SMTP_PASSWORD",
          "label": "SMTP_PASSWORD",
          "default": "",
          "description": "SMTP password"
        },
        {
          "name": "SMTP_FROM_ADDRESS",
          "label": "SMTP_FROM_ADDRESS",
          "default": "notifications@example.com",
          "description": "From address for emails send from Mastodon"
        },
        {
          "name": "S3_ENABLED",
          "label": "S3_ENABLED",
          "default": "false",
          "description": "Enable or disable S3 storage of uploaded files"
        },
        {
          "name": "WEB_DOMAIN",
          "label": "WEB_DOMAIN",
          "default": "mastodon.example.com",
          "description": "This can be set if you want your server identifier to be different to the subdomain hosting Mastodon. See https://docs.joinmastodon.org/admin/config/#basic"
        },
        {
          "name": "ES_HOST",
          "label": "ES_HOST",
          "default": "es",
          "description": "Elasticsearch server hostname"
        },
        {
          "name": "ES_PORT",
          "label": "ES_PORT",
          "default": "9200",
          "description": "Elasticsearch port"
        },
        {
          "name": "ES_USER",
          "label": "ES_USER",
          "default": "elastic",
          "description": "Elasticsearch username"
        },
        {
          "name": "ES_PASS",
          "label": "ES_PASS",
          "default": "elastic",
          "description": "Elasticsearch password"
        },
        {
          "name": "S3_BUCKET",
          "label": "S3_BUCKET",
          "default": "",
          "description": "S3 bucket hostname"
        },
        {
          "name": "AWS_ACCESS_KEY_ID",
          "label": "AWS_ACCESS_KEY_ID",
          "default": "",
          "description": "S3 bucket access key ID"
        },
        {
          "name": "AWS_SECRET_ACCESS_KEY",
          "label": "AWS_SECRET_ACCESS_KEY",
          "default": "",
          "description": "S3 bucket secret access key"
        },
        {
          "name": "S3_ALIAS_HOST",
          "label": "S3_ALIAS_HOST",
          "default": "",
          "description": "Alternate hostname for object fetching if you are front the S3 connections."
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/mastodon/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Medusa",
      "name": "Medusa",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/medusa/config<br>mkdir -p /volume1/docker/medusa/downloads<br>mkdir -p /volume1/docker/medusa/tv</p>",
      "description": "[Medusa](https://pymedusa.com/) is an automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/medusa-icon.png",
      "image": "linuxserver/medusa:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8081:8081/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/medusa/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/medusa/downloads"
        },
        {
          "container": "/tv",
          "bind": "/volume1/docker/medusa/tv"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Minetest",
      "name": "Minetest",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/minetest/config/.minetest</p>",
      "description": "[Minetest](http://www.minetest.net/) (server) is a near-infinite-world block sandbox game and a game engine, inspired by InfiniMiner, Minecraft, and the like.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "image": "linuxserver/minetest:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CLI_ARGS",
          "label": "CLI_ARGS",
          "default": "'--gameid minetest --port 30000'",
          "description": "Optionally specify any [CLI variables](https://wiki.minetest.net/Command_line) you want to launch the app with"
        }
      ],
      "ports": ["30000:30000/udp"],
      "volumes": [
        {
          "container": "/config/.minetest",
          "bind": "/volume1/docker/minetest/config/.minetest"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Minisatip",
      "name": "Minisatip",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/minisatip/config</p>",
      "description": "[Minisatip](https://github.com/catalinii/minisatip) is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/minisatip-icon.png",
      "image": "linuxserver/minisatip:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "RUN_OPTS",
          "label": "RUN_OPTS",
          "default": "<parameter>",
          "description": "Specify specific run params for minisatip"
        }
      ],
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/minisatip/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Mstream",
      "name": "Mstream",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mstream/config<br>mkdir -p /volume1/docker/mstream/music</p>",
      "description": "[Mstream](https://mstream.io/) is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mstream-icon.png",
      "image": "linuxserver/mstream:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/mstream/config"
        },
        {
          "container": "/music",
          "bind": "/volume1/docker/mstream/music"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Mylar3",
      "name": "Mylar3",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mylar3/config<br>mkdir -p /volume1/docker/mylar3/comics<br>mkdir -p /volume1/docker/mylar3/downloads</p>",
      "description": "[Mylar3](https://github.com/mylar3/mylar3) is an automated Comic Book downloader (cbr/cbz) for use with NZB and torrents written in python. It supports SABnzbd, NZBGET, and many torrent clients in addition to DDL.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mylar-icon.png",
      "image": "linuxserver/mylar3:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        }
      ],
      "ports": ["8090:8090/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/mylar3/config"
        },
        {
          "container": "/comics",
          "bind": "/volume1/docker/mylar3/comics"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/mylar3/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Mysql-workbench",
      "name": "Mysql-workbench",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mysql-workbench/config</p>",
      "description": "[MySQL Workbench](https://www.mysql.com/products/workbench/) is a unified visual tool for database architects, developers, and DBAs. MySQL Workbench provides data modeling, SQL development, and comprehensive administration tools for server configuration, user administration, backup, and much more.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mysql-workbench-icon.png",
      "image": "linuxserver/mysql-workbench:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/mysql-workbench/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Nano",
      "name": "Nano",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nano/config</p>",
      "description": "[Nano](https://nano.org/) is a digital payment protocol designed to be accessible and lightweight, with a focus on removing inefficiencies present in other cryptocurrencies. With ultrafast transactions and zero fees on a secure, green and decentralized network, this makes Nano ideal for everyday transactions.",
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Nano_logo.png/640px-Nano_logo.png",
      "image": "linuxserver/nano:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PEER_HOST",
          "label": "PEER_HOST",
          "default": "localhost",
          "description": "Default peer host (can be overidden with an array by command line options)"
        },
        {
          "name": "LIVE_GENESIS_PUB",
          "label": "LIVE_GENESIS_PUB",
          "default": "GENESIS_PUBLIC",
          "description": "Genesis block public key"
        },
        {
          "name": "LIVE_GENESIS_ACCOUNT",
          "label": "LIVE_GENESIS_ACCOUNT",
          "default": "nano_xxxxxx",
          "description": "Genesis block account"
        },
        {
          "name": "LIVE_GENESIS_WORK",
          "label": "LIVE_GENESIS_WORK",
          "default": "WORK_FOR_BLOCK",
          "description": "Genesis block proof of work"
        },
        {
          "name": "LIVE_GENESIS_SIG",
          "label": "LIVE_GENESIS_SIG",
          "default": "BLOCK_SIGNATURE",
          "description": "Genesis block signature"
        },
        {
          "name": "CLI_OPTIONS",
          "label": "CLI_OPTIONS",
          "default": "--config node.enable_voting=true",
          "description": "Node run command cli args"
        },
        {
          "name": "LMDB_BOOTSTRAP_URL",
          "label": "LMDB_BOOTSTRAP_URL",
          "default": "http://example.com/Nano_64_version_20.7z",
          "description": "HTTP/HTTPS endpoint to download a 7z file with the data.ldb to bootstrap to this node"
        }
      ],
      "ports": ["8075:8075/tcp", "7076:3000/tcp", "7077:3001/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/nano/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Nano-wallet",
      "name": "Nano-wallet",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "description": "[Nano-wallet](https://nano.org/) is a digital payment protocol designed to be accessible and lightweight, with a focus on removing inefficiencies present in other cryptocurrencies. With ultrafast transactions and zero fees on a secure, green and decentralized network, this makes Nano ideal for everyday transactions. This container is a simple nginx wrapper for the light wallet located [here](https://github.com/linuxserver/nano-wallet). You will need to pass a valid RPC host when accessing this container.",
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Nano_logo.png/640px-Nano_logo.png",
      "image": "linuxserver/nano-wallet:latest",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Netbootxyz",
      "name": "Netbootxyz",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/netbootxyz/config<br>mkdir -p /volume1/docker/netbootxyz/assets</p>",
      "description": "[Netbootxyz](https://netboot.xyz) is a way to PXE boot various operating system installers or utilities from one place within the BIOS without the need of having to go retrieve the media to run the tool. iPXE is used to provide a user friendly menu from within the BIOS that lets you easily choose the operating system you want along with any specific types of versions or bootable flags.",
      "platform": "linux",
      "logo": "https://netboot.xyz/images/netboot.xyz.gif",
      "image": "linuxserver/netbootxyz:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "MENU_VERSION",
          "label": "MENU_VERSION",
          "default": "1.9.9",
          "description": "Specify a specific version of boot files you want to use from NETBOOT.XYZ (unset pulls latest)"
        },
        {
          "name": "PORT_RANGE",
          "label": "PORT_RANGE",
          "default": "30000:30010",
          "description": "Specify the port range tftp will use for data transfers [(see Wikipedia)](https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol#Details)"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a sobfolder if running this behind a reverse proxy (IE /proxy/)"
        }
      ],
      "ports": ["3000:3000/tcp", "69:69/udp", "8080:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/netbootxyz/config"
        },
        {
          "container": "/assets",
          "bind": "/volume1/docker/netbootxyz/assets"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Netbox",
      "name": "Netbox",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/netbox/config</p>",
      "description": "[Netbox](https://github.com/netbox-community/netbox) is an IP address management (IPAM) and data center infrastructure management (DCIM) tool. Initially conceived by the network engineering team at DigitalOcean, NetBox was developed specifically to address the needs of network and infrastructure engineers. It is intended to function as a domain-specific source of truth for network operations.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/netbox-community/netbox/develop/docs/netbox_logo.svg",
      "image": "linuxserver/netbox:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUPERUSER_EMAIL",
          "label": "SUPERUSER_EMAIL",
          "default": "<SUPERUSER_EMAIL>",
          "description": "Email address for `admin` account"
        },
        {
          "name": "SUPERUSER_PASSWORD",
          "label": "SUPERUSER_PASSWORD",
          "default": "<SUPERUSER_PASSWORD>",
          "description": "Password for `admin` account"
        },
        {
          "name": "ALLOWED_HOST",
          "label": "ALLOWED_HOST",
          "default": "<ALLOWED_HOST>",
          "description": "The hostname you will use to access the app (i.e., netbox.example.com)"
        },
        {
          "name": "DB_NAME",
          "label": "DB_NAME",
          "default": "<DB_NAME>",
          "description": "Database name (default: netbox)"
        },
        {
          "name": "DB_USER",
          "label": "DB_USER",
          "default": "<DB_USER>",
          "description": "Database user"
        },
        {
          "name": "DB_PASSWORD",
          "label": "DB_PASSWORD",
          "default": "<DB_PASSWORD>",
          "description": "Database password"
        },
        {
          "name": "DB_HOST",
          "label": "DB_HOST",
          "default": "<DB_HOST>",
          "description": "Database host (default: postgres)"
        },
        {
          "name": "DB_PORT",
          "label": "DB_PORT",
          "default": "<DB_PORT>",
          "description": "Database port (defaul: 5432)"
        },
        {
          "name": "REDIS_HOST",
          "label": "REDIS_HOST",
          "default": "<REDIS_HOST>",
          "description": "Redis host (default: redis)"
        },
        {
          "name": "REDIS_PORT",
          "label": "REDIS_PORT",
          "default": "<REDIS_PORT>",
          "description": "Redis port number (default: 6379)"
        },
        {
          "name": "REDIS_PASSWORD",
          "label": "REDIS_PASSWORD",
          "default": "<REDIS_PASSWORD>",
          "description": "Redis password (default: none)"
        },
        {
          "name": "REDIS_DB_TASK",
          "label": "REDIS_DB_TASK",
          "default": "<REDIS_DB_TASK>",
          "description": "Redis database ID for tasks (default: 0)"
        },
        {
          "name": "REDIS_DB_CACHE",
          "label": "REDIS_DB_CACHE",
          "default": "<REDIS_DB_CACHE>",
          "description": "Redis database ID for caching (default: 1)"
        },
        {
          "name": "BASE_PATH",
          "label": "BASE_PATH",
          "default": "<BASE_PATH>",
          "description": "The path you will use to access the app (i.e., /netbox, optional, default: none)"
        },
        {
          "name": "REMOTE_AUTH_ENABLED",
          "label": "REMOTE_AUTH_ENABLED",
          "default": "<REMOTE_AUTH_ENABLED>",
          "description": "Enable remote authentication (optional, default: False)"
        },
        {
          "name": "REMOTE_AUTH_BACKEND",
          "label": "REMOTE_AUTH_BACKEND",
          "default": "<REMOTE_AUTH_BACKEND>",
          "description": "Python path to the custom Django authentication backend to use for external user authentication (optional, default: netbox.authentication.RemoteUserBackend)"
        },
        {
          "name": "REMOTE_AUTH_HEADER",
          "label": "REMOTE_AUTH_HEADER",
          "default": "<REMOTE_AUTH_HEADER>",
          "description": "Name of the HTTP header which informs NetBox of the currently authenticated user. (optional, default: HTTP_REMOTE_USER)"
        },
        {
          "name": "REMOTE_AUTH_AUTO_CREATE_USER",
          "label": "REMOTE_AUTH_AUTO_CREATE_USER",
          "default": "<REMOTE_AUTH_AUTO_CREATE_USER>",
          "description": "If true, NetBox will automatically create local accounts for users authenticated via a remote service (optional, default: False)"
        },
        {
          "name": "REMOTE_AUTH_DEFAULT_GROUPS",
          "label": "REMOTE_AUTH_DEFAULT_GROUPS",
          "default": "<REMOTE_AUTH_DEFAULT_GROUPS>",
          "description": "The list of groups to assign a new user account when created using remote authentication (optional, default: [])"
        },
        {
          "name": "REMOTE_AUTH_DEFAULT_PERMISSIONS",
          "label": "REMOTE_AUTH_DEFAULT_PERMISSIONS",
          "default": "<REMOTE_AUTH_DEFAULT_PERMISSIONS>",
          "description": "A mapping of permissions to assign a new user account when created using remote authentication (optional, default: {})"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/netbox/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Nextcloud",
      "name": "Nextcloud",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nextcloud/config<br>mkdir -p /volume1/docker/nextcloud/data</p>",
      "description": "[Nextcloud](https://nextcloud.com/) gives you access to all your files wherever you are. Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices. Through Nextcloud you also access, sync and share your existing data on that FTP drive at the office, a Dropbox or a NAS you have at home.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nextcloud-icon.png",
      "image": "linuxserver/nextcloud:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/nextcloud/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/nextcloud/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Nginx",
      "name": "Nginx",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nginx/config</p>",
      "description": "[Nginx](https://nginx.org/) is a simple webserver with php support. The config files reside in `/config` for easy user customization.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nginx-banner.png",
      "image": "linuxserver/nginx:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/nginx/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Ngircd",
      "name": "Ngircd",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ngircd/config</p>",
      "description": "[Ngircd](https://ngircd.barton.de/) is a free, portable and lightweight Internet Relay Chat server for small or private networks, developed under the GNU General Public License (GPL). It is easy to configure, can cope with dynamic IP addresses, and supports IPv6, SSL-protected connections as well as PAM for authentication. It is written from scratch and not based on the original IRCd.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ngircd-logo.png",
      "image": "linuxserver/ngircd:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["6667:6667/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/ngircd/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Nntp2nntp",
      "name": "Nntp2nntp",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nntp2nntp/config</p>",
      "description": "[Nntp2nntp](https://github.com/linuxserver/nntp2nntp) proxy allow you to use your NNTP Account from multiple systems, each with own user name and password. It fully supports SSL and you can also limit the access to proxy with SSL certificates. nntp2nntp proxy is very simple and pretty fast. ## Warning Whilst we know of no nntp2nntp security issues the [upstream code](https://github.com/linuxserver/nntp2nntp) for this project has received no changes since 06.08.15 and is likely abandoned permanently. For this reason we strongly recommend you do not make this application public facing and if you must do so other layers of security and SSL should be considered an absolute bare minimum requirement. We see this proxy being used primarily on a LAN so that all the users NNTP applications can share a common set of internal credentials allowing for central managment of the upstream account e.g change provider, server, thread limits for all applications with one global config change.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nntp2nntp.png",
      "image": "linuxserver/nntp2nntp:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "<yourUID>",
          "description": "specify your UID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "<yourGID>",
          "description": "specify your GID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["1563:1563/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/nntp2nntp/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Nzbget",
      "name": "Nzbget",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nzbget/config<br>mkdir -p /volume1/docker/nzbget/downloads</p>",
      "description": "[Nzbget](http://nzbget.net/) is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nzbget-banner.png",
      "image": "linuxserver/nzbget:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "NZBGET_USER",
          "label": "NZBGET_USER",
          "default": "nzbget",
          "description": "Specify the user for web authentication."
        },
        {
          "name": "NZBGET_PASS",
          "label": "NZBGET_PASS",
          "default": "tegbzn6789",
          "description": "Specify the password for web authentication."
        }
      ],
      "ports": ["6789:6789/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/nzbget/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/nzbget/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Nzbhydra2",
      "name": "Nzbhydra2",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nzbhydra2/config<br>mkdir -p /volume1/docker/nzbhydra2/downloads</p>",
      "description": "[Nzbhydra2](https://github.com/theotherp/nzbhydra2) is a meta search application for NZB indexers, the 'spiritual successor' to NZBmegasearcH, and an evolution of the original application [NZBHydra](https://github.com/theotherp/nzbhydra). It provides easy access to a number of raw and newznab based indexers. The application NZBHydra 2 is replacing NZBHydra 1 and supports migrating from V1. Be wary that there may be some compatibility issues for those migrating from V1 to V2, so ensure you back up your old configuration before moving over to the new version. **NOTE:** The last version that supports migration is `linuxserver/nzbhydra2:v2.10.2-ls49`",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/hydra-icon.png",
      "image": "linuxserver/nzbhydra2:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["5076:5076/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/nzbhydra2/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/nzbhydra2/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Ombi",
      "name": "Ombi",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ombi/config</p>",
      "description": "[Ombi](https://ombi.io) allows you to host your own Plex Request and user management system. If you are sharing your Plex server with other users, allow them to request new content using an easy to manage interface! Manage all your requests for Movies and TV with ease, leave notes for the user and get notification when a user requests something. Allow your users to post issues against their requests so you know there is a problem with the audio etc. Even automatically send them weekly newsletters of new content that has been added to your Plex server!",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ombi.png",
      "image": "linuxserver/ombi:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "BASE_URL",
          "label": "BASE_URL",
          "default": "/ombi",
          "description": "Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable."
        }
      ],
      "ports": ["3579:3579/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/ombi/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Openssh-server",
      "name": "Openssh-server",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/openssh-server/config</p>",
      "description": "[Openssh-server](https://www.openssh.com/) is a sandboxed environment that allows ssh access without giving keys to the entire server. Giving ssh access via private key often means giving full access to the server. This container creates a limited and sandboxed environment that others can ssh into. The users only have access to the folders mapped and the processes running inside this container.",
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/en/6/65/OpenSSH_logo.png",
      "image": "linuxserver/openssh-server:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PUBLIC_KEY",
          "label": "PUBLIC_KEY",
          "default": "yourpublickey",
          "description": "Optional ssh public key, which will automatically be added to authorized_keys."
        },
        {
          "name": "PUBLIC_KEY_FILE",
          "label": "PUBLIC_KEY_FILE",
          "default": "/path/to/file",
          "description": "Optionally specify a file containing the public key (works with docker secrets)."
        },
        {
          "name": "PUBLIC_KEY_DIR",
          "label": "PUBLIC_KEY_DIR",
          "default": "/path/to/directory/containing/_only_/pubkeys",
          "description": "Optionally specify a directory containing the public keys (works with docker secrets)."
        },
        {
          "name": "PUBLIC_KEY_URL",
          "label": "PUBLIC_KEY_URL",
          "default": "https://github.com/username.keys",
          "description": "Optionally specify a URL containing the public key."
        },
        {
          "name": "SUDO_ACCESS",
          "label": "SUDO_ACCESS",
          "default": "false",
          "description": "Set to `true` to allow `linuxserver.io`, the ssh user, sudo access. Without `USER_PASSWORD` set, this will allow passwordless sudo access."
        },
        {
          "name": "PASSWORD_ACCESS",
          "label": "PASSWORD_ACCESS",
          "default": "false",
          "description": "Set to `true` to allow user/password ssh access. You will want to set `USER_PASSWORD` or `USER_PASSWORD_FILE` as well."
        },
        {
          "name": "USER_PASSWORD",
          "label": "USER_PASSWORD",
          "default": "password",
          "description": "Optionally set a sudo password for `linuxserver.io`, the ssh user. If this or `USER_PASSWORD_FILE` are not set but `SUDO_ACCESS` is set to true, the user will have passwordless sudo access."
        },
        {
          "name": "USER_PASSWORD_FILE",
          "label": "USER_PASSWORD_FILE",
          "default": "/path/to/file",
          "description": "Optionally specify a file that contains the password. This setting supersedes the `USER_PASSWORD` option (works with docker secrets)."
        },
        {
          "name": "USER_NAME",
          "label": "USER_NAME",
          "default": "linuxserver.io",
          "description": "Optionally specify a user name (Default:`linuxserver.io`)"
        }
      ],
      "ports": ["2222:2222/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/openssh-server/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Openvscode-server",
      "name": "Openvscode-server",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/openvscode-server/config</p>",
      "description": "[Openvscode-server](https://github.com/gitpod-io/openvscode-server) provides a version of VS Code that runs a server on a remote machine and allows access through a modern web browser.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/openvscode-server-logo.png",
      "image": "linuxserver/openvscode-server:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CONNECTION_TOKEN",
          "label": "CONNECTION_TOKEN",
          "default": "",
          "description": "Optional security token for accessing the Web UI (ie. `supersecrettoken`)."
        },
        {
          "name": "CONNECTION_SECRET",
          "label": "CONNECTION_SECRET",
          "default": "",
          "description": "Optional path to a file inside the container that contains the security token for accessing the Web UI (ie. `/path/to/file`). Overrides `CONNECTION_TOKEN`."
        },
        {
          "name": "SUDO_PASSWORD",
          "label": "SUDO_PASSWORD",
          "default": "password",
          "description": "If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password."
        },
        {
          "name": "SUDO_PASSWORD_HASH",
          "label": "SUDO_PASSWORD_HASH",
          "default": "",
          "description": "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`."
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/openvscode-server/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Oscam",
      "name": "Oscam",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/oscam/config</p>",
      "description": "[Oscam](http://www.streamboard.tv/oscam/) is an Open Source Conditional Access Module software used for descrambling DVB transmissions using smart cards. It's both a server and a client.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/oscam-logo.png",
      "image": "linuxserver/oscam:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8888:8888/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/oscam/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Overseerr",
      "name": "Overseerr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/overseerr/config</p>",
      "description": "[Overseerr](https://overseerr.dev/) is a request management and media discovery tool built to work with your existing Plex ecosystem.",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/overseerr.png",
      "image": "linuxserver/overseerr:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["5055:5055/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/overseerr/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Papermerge",
      "name": "Papermerge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/papermerge/config<br>mkdir -p /volume1/docker/papermerge/data</p>",
      "description": "[Papermerge](https://www.papermerge.com/) is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents. Instead of having piles of paper documents all over your desk, office or drawers - you can quickly scan them and configure your scanner to directly upload to Papermerge DMS.'",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/papermerge-icon.png",
      "image": "linuxserver/papermerge:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "REDIS_URL",
          "label": "REDIS_URL",
          "default": "",
          "description": "Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/papermerge/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/papermerge/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Phpmyadmin",
      "name": "Phpmyadmin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/phpmyadmin/config</p>",
      "description": "[Phpmyadmin](https://github.com/phpmyadmin/phpmyadmin/) is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB.",
      "categories": ["System Tools"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/phpmyadmin-logo.png",
      "image": "linuxserver/phpmyadmin:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PMA_ARBITRARY",
          "label": "PMA_ARBITRARY",
          "default": "1",
          "description": "Set to `1` to allow you to connect to any server. Setting to `0` will only allow you to connect to specified hosts (See Application Setup)"
        },
        {
          "name": "PMA_ABSOLUTE_URI",
          "label": "PMA_ABSOLUTE_URI",
          "default": "https://phpmyadmin.example.com",
          "description": "Set the URL you will use to access the web frontend"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/phpmyadmin/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Pidgin",
      "name": "Pidgin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pidgin/config</p>",
      "description": "[Pidgin](https://pidgin.im/) is a chat program which lets you log into accounts on multiple chat networks simultaneously. This means that you can be chatting with friends on XMPP and sitting in an IRC channel at the same time.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/pidgin-logo.png",
      "image": "linuxserver/pidgin:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pidgin/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Piwigo",
      "name": "Piwigo",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/piwigo/config<br>mkdir -p /volume1/docker/piwigo/gallery</p>",
      "description": "[Piwigo](http://piwigo.org/) is a photo gallery software for the web that comes with powerful features to publish and manage your collection of pictures.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/piwigo-banner.png",
      "image": "linuxserver/piwigo:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/piwigo/config"
        },
        {
          "container": "/gallery",
          "bind": "/volume1/docker/piwigo/gallery"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Plex",
      "name": "Plex",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/plex/config<br>mkdir -p /volume1/docker/plex/tv<br>mkdir -p /volume1/docker/plex/movies</p>",
      "description": "[Plex](https://plex.tv) organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone Plex Media Server. has always been a top priority. Straightforward design and bulk actions mean getting things done faster.",
      "platform": "linux",
      "logo": "http://the-gadgeteer.com/wp-content/uploads/2015/10/plex-logo-e1446990678679.png",
      "image": "linuxserver/plex:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "VERSION",
          "label": "VERSION",
          "default": "docker",
          "description": "Set whether to update plex or not - see Application Setup section."
        },
        {
          "name": "PLEX_CLAIM",
          "label": "PLEX_CLAIM",
          "default": "",
          "description": "Optionally you can obtain a claim token from https://plex.tv/claim and input here. Keep in mind that the claim tokens expire within 4 minutes."
        }
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/plex/config"
        },
        {
          "container": "/tv",
          "bind": "/volume1/docker/plex/tv"
        },
        {
          "container": "/movies",
          "bind": "/volume1/docker/plex/movies"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Plex-meta-manager",
      "name": "Plex-meta-manager",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/plex-meta-manager/config</p>",
      "description": "[Plex-meta-manager](https://github.com/meisnate12/Plex-Meta-Manager) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.",
      "categories": ["Media Management"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/plex-meta-manager-banner.png",
      "image": "linuxserver/plex-meta-manager:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PMM_CONFIG",
          "label": "PMM_CONFIG",
          "default": "/config/config.yml",
          "description": "Specify a custom config file to use."
        },
        {
          "name": "PMM_TIME",
          "label": "PMM_TIME",
          "default": "03:00",
          "description": "Comma-separated list of times to update each day. Format: `HH:MM`."
        },
        {
          "name": "PMM_RUN",
          "label": "PMM_RUN",
          "default": "False",
          "description": "Set to `True` to run without the scheduler."
        },
        {
          "name": "PMM_TEST",
          "label": "PMM_TEST",
          "default": "False",
          "description": "Set to `True` to run in debug mode with only collections that have `test: true`."
        },
        {
          "name": "PMM_NO_MISSING",
          "label": "PMM_NO_MISSING",
          "default": "False",
          "description": "Set to `True` to run without any of the missing movie/show functions."
        }
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/plex-meta-manager/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Projectsend",
      "name": "Projectsend",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/projectsend/config<br>mkdir -p /volume1/docker/projectsend/data</p>",
      "description": "[Projectsend](http://www.projectsend.org) is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself. Secure, private and easy. No more depending on external services or e-mail to send those files.",
      "platform": "linux",
      "logo": "http://www.projectsend.org/wp-content/themes/projectsend/img/screenshots.png",
      "image": "linuxserver/projectsend:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "MAX_UPLOAD",
          "label": "MAX_UPLOAD",
          "default": "5000",
          "description": "To set maximum upload size (in MB), default if unset is 5000."
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/projectsend/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/projectsend/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Pwndrop",
      "name": "Pwndrop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pwndrop/config</p>",
      "description": "[Pwndrop](https://github.com/kgretzky/pwndrop) is a self-deployable file hosting service for sending out red teaming payloads or securely sharing your private files over HTTP and WebDAV.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/kgretzky/pwndrop/master/media/pwndrop-logo-512.png",
      "image": "linuxserver/pwndrop:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SECRET_PATH",
          "label": "SECRET_PATH",
          "default": "/pwndrop",
          "description": "Secret path for admin access. Defaults to `/pwndrop`. This parameter only takes effect during initial install; it can later be changed in the web gui."
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pwndrop/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Pydio-cells",
      "name": "Pydio-cells",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pydio-cells/config</p>",
      "description": "[Pydio-cells](https://pydio.com/) is the nextgen file sharing platform for organizations. It is a full rewrite of the Pydio project using the Go language following a micro-service architecture.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/wiki/pydio/cells/images/PydioCellsColor.png",
      "image": "linuxserver/pydio-cells:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "EXTERNALURL",
          "label": "EXTERNALURL",
          "default": "yourdomain.url",
          "description": "The external url you would like to use to access Pydio Cells (Can be https://domain.url or https://IP:PORT)."
        },
        {
          "name": "SERVER_IP",
          "label": "SERVER_IP",
          "default": "0.0.0.0",
          "description": "Enter the LAN IP of the docker server. Required for local access by IP, added to self signed cert as SAN (not required if accessing only through reverse proxy)."
        }
      ],
      "ports": ["8080:8080/tcp", "33060:33060/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pydio-cells/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Pyload-ng",
      "name": "Pyload-ng",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pyload-ng/config<br>mkdir -p /volume1/docker/pyload-ng/downloads</p>",
      "description": "[pyLoad](https://pyload.net/) is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.",
      "platform": "linux",
      "logo": "https://pyload.net/img/banner.png",
      "image": "linuxserver/pyload-ng:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8000:8000/tcp", "9666:9666/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pyload-ng/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/pyload-ng/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Pylon",
      "name": "Pylon",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pylon/config<br>mkdir -p /volume1/docker/pylon/code</p>",
      "description": "[Pylon](https://github.com/pylonide/pylon) is a web based integrated development environment built with Node.js as a backend and with a supercharged JavaScript/HTML5 frontend, licensed under GPL version 3. This project originates from Cloud9 v2 project.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/pylonide/pylon/master/doc/screenshot02.png",
      "image": "linuxserver/pylon:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "GITURL",
          "label": "GITURL",
          "default": "https://github.com/linuxserver/docker-pylon.git",
          "description": "Specify a git repo to checkout on first startup"
        },
        {
          "name": "PYUSER",
          "label": "PYUSER",
          "default": "myuser",
          "description": "Specify a basic auth user."
        },
        {
          "name": "PYPASS",
          "label": "PYPASS",
          "default": "mypass",
          "description": "Specify a basic auth password."
        }
      ],
      "ports": ["3131:3131/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pylon/config"
        },
        {
          "container": "/code",
          "bind": "/volume1/docker/pylon/code"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Qbittorrent",
      "name": "Qbittorrent",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/qbittorrent/config<br>mkdir -p /volume1/docker/qbittorrent/downloads</p>",
      "description": "The [Qbittorrent](https://www.qbittorrent.org/) project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "platform": "linux",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/qbittorrent-icon.png",
      "image": "linuxserver/qbittorrent:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "WEBUI_PORT",
          "label": "WEBUI_PORT",
          "default": "8080",
          "description": "for changing the port of the webui, see below for explanation"
        }
      ],
      "ports": ["8080:8080/tcp", "6881:6881/tcp", "6881:6881/udp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/qbittorrent/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/qbittorrent/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Qdirstat",
      "name": "Qdirstat",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/qdirstat/config<br>mkdir -p /volume1/docker/qdirstat/data</p>",
      "description": "[QDirStat](https://github.com/shundhammer/qdirstat) Qt-based directory statistics: KDirStat without any KDE -- from the author of the original KDirStat.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/qdirstat-logo.png",
      "image": "linuxserver/qdirstat:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/qdirstat/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/qdirstat/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Quassel-core",
      "name": "Quassel-core",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/quassel-core/config</p>",
      "description": "[Quassel-core](http://quassel-irc.org/) is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core. This container handles the IRC connection (quasselcore) and requires a desktop client (quasselclient) to be used and configured. It is designed to be always on and will keep your identity present in IRC even when your clients cannot be online. Backlog (history) is downloaded by your client upon reconnection allowing infinite scrollback through time.",
      "platform": "linux",
      "logo": "http://icons.iconarchive.com/icons/oxygen-icons.org/oxygen/256/Apps-quassel-icon.png",
      "image": "linuxserver/quassel-core:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "RUN_OPTS",
          "label": "RUN_OPTS",
          "default": "--config-from-environment",
          "description": "Custom CLI options for Quassel"
        }
      ],
      "ports": ["4242:4242/tcp", "113:10113/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/quassel-core/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Quassel-web",
      "name": "Quassel-web",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/quassel-web/config</p>",
      "description": "[Quassel-web](https://github.com/magne4000/quassel-webserver) is a web client for Quassel. Note that a Quassel-Core instance is required, we have a container available [here.](https://hub.docker.com/r/linuxserver/quassel-core/)",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/quassel-web-banner.png",
      "image": "linuxserver/quassel-web:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "QUASSEL_CORE",
          "label": "QUASSEL_CORE",
          "default": "192.168.1.10",
          "description": "specify the URL or IP address of your Quassel Core instance"
        },
        {
          "name": "QUASSEL_PORT",
          "label": "QUASSEL_PORT",
          "default": "4242",
          "description": "specify the port of your Quassel Core instance"
        },
        {
          "name": "URL_BASE",
          "label": "URL_BASE",
          "default": "/quassel",
          "description": "Specify a url-base in reverse proxy setups ie. `/quassel`"
        }
      ],
      "ports": ["64443:64443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/quassel-web/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Radarr",
      "name": "Radarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/radarr/config<br>mkdir -p /volume1/docker/radarr/movies<br>mkdir -p /volume1/docker/radarr/downloads</p>",
      "description": "[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr.png",
      "image": "linuxserver/radarr:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["7878:7878/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/radarr/config"
        },
        {
          "container": "/movies",
          "bind": "/volume1/docker/radarr/movies"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/radarr/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Raneto",
      "name": "Raneto",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/raneto/config</p>",
      "description": "[Raneto](http://raneto.com/) - is an open source Knowledgebase platform that uses static Markdown files to power your Knowledgebase.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/gilbitron/Raneto/master/logo/logo_readme.png",
      "image": "linuxserver/raneto:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/raneto/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Rdesktop",
      "name": "Rdesktop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p><br>mkdir -p /volume1/docker/rdesktop/config</p>",
      "description": "[Rdesktop](http://xrdp.org/) - Containers containing full desktop environments in many popular flavors for Alpine, Ubuntu, Arch, and Fedora accessible via RDP.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/rdesktop.png",
      "image": "linuxserver/rdesktop:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3389:3389/tcp"],
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        },
        {
          "container": "/config",
          "bind": "/volume1/docker/rdesktop/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Remmina",
      "name": "Remmina",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/remmina/config</p>",
      "description": "[Remmina](https://remmina.org/) is a remote desktop client written in GTK, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large or tiny screens. Remmina supports multiple network protocols, in an integrated and consistent user interface. Currently RDP, VNC, SPICE, NX, XDMCP, SSH and EXEC are supported.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/remmina-icon.png",
      "image": "linuxserver/remmina:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/remmina/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Requestrr",
      "name": "Requestrr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/requestrr/config</p>",
      "description": "[Requestrr](https://github.com/darkalfx/requestrr) is a chatbot used to simplify using services like Sonarr/Radarr/Ombi via the use of chat.",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://github.com/darkalfx/requestrr/raw/master/Logos/requestrr_discord_Icon_512.png",
      "image": "linuxserver/requestrr:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["4545:4545/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/requestrr/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Resilio-sync",
      "name": "Resilio-sync",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/resilio-sync/config<br>mkdir -p /volume1/docker/resilio-sync/downloads<br>mkdir -p /volume1/docker/resilio-sync/sync</p>",
      "description": "[Resilio-sync](https://www.resilio.com/individuals/) (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both. There is an official sync image but we created this one as it supports user mapping to simplify permissions for volumes.",
      "platform": "linux",
      "logo": "https://www.resilio.com/img/individual/freeproduct.jpg",
      "image": "linuxserver/resilio-sync:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8888:8888/tcp", "55555:55555/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/resilio-sync/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/resilio-sync/downloads"
        },
        {
          "container": "/sync",
          "bind": "/volume1/docker/resilio-sync/sync"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Rsnapshot",
      "name": "Rsnapshot",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/rsnapshot/config<br>mkdir -p /volume1/docker/rsnapshot/.snapshots<br>mkdir -p /volume1/docker/rsnapshot/data</p>",
      "description": "[Rsnapshot](http://www.rsnapshot.org/) is a filesystem snapshot utility based on rsync. rsnapshot makes it easy to make periodic snapshots of local machines, and remote machines over ssh. The code makes extensive use of hard links whenever possible, to greatly reduce the disk space required.'",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/rsnapshot.png",
      "image": "linuxserver/rsnapshot:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/rsnapshot/config"
        },
        {
          "container": "/.snapshots",
          "bind": "/volume1/docker/rsnapshot/.snapshots"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/rsnapshot/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Sabnzbd",
      "name": "Sabnzbd",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sabnzbd/config<br>mkdir -p /volume1/docker/sabnzbd/downloads<br>mkdir -p /volume1/docker/sabnzbd/incomplete-downloads</p>",
      "description": "[Sabnzbd](http://sabnzbd.org/) makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sabnzbd-banner.png",
      "image": "linuxserver/sabnzbd:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/sabnzbd/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/sabnzbd/downloads"
        },
        {
          "container": "/incomplete-downloads",
          "bind": "/volume1/docker/sabnzbd/incomplete-downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Sickchill",
      "name": "Sickchill",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sickchill/config<br>mkdir -p /volume1/docker/sickchill/downloads<br>mkdir -p /volume1/docker/sickchill/tv</p>",
      "description": "[Sickchill](https://github.com/SickChill/SickChill) is an Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sickchill-banner.png",
      "image": "linuxserver/sickchill:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8081:8081/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/sickchill/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/sickchill/downloads"
        },
        {
          "container": "/tv",
          "bind": "/volume1/docker/sickchill/tv"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Sickgear",
      "name": "Sickgear",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sickgear/config<br>mkdir -p /volume1/docker/sickgear/tv<br>mkdir -p /volume1/docker/sickgear/downloads</p>",
      "description": "[SickGear](https://github.com/sickgear/sickgear) provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.. For more information on SickGear visit their website and check it out: https://github.com/SickGear/SickGear",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/wiki/SickGear/SickGear.Wiki/images/SickGearLogo.png",
      "image": "linuxserver/sickgear:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8081:8081/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/sickgear/config"
        },
        {
          "container": "/tv",
          "bind": "/volume1/docker/sickgear/tv"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/sickgear/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Smokeping",
      "name": "Smokeping",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/smokeping/config<br>mkdir -p /volume1/docker/smokeping/data</p>",
      "description": "[Smokeping](https://oss.oetiker.ch/smokeping/) keeps track of your network latency. For a full example of what this application is capable of visit [UCDavis](http://smokeping.ucdavis.edu/cgi-bin/smokeping.fcgi).",
      "platform": "linux",
      "logo": "https://camo.githubusercontent.com/e0694ef783e3fd1d74e6776b28822ced01c7cc17/687474703a2f2f6f73732e6f6574696b65722e63682f736d6f6b6570696e672f696e632f736d6f6b6570696e672d6c6f676f2e706e67",
      "image": "linuxserver/smokeping:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/smokeping/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/smokeping/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Snapdrop",
      "name": "Snapdrop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/snapdrop/config</p>",
      "description": "[Snapdrop](https://github.com/RobinLinus/snapdrop) A local file sharing in your browser. Inspired by Apple's Airdrop.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/RobinLinus/snapdrop/master/client/images/logo_transparent_512x512.png",
      "image": "linuxserver/snapdrop:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/snapdrop/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Snipe-it",
      "name": "Snipe-it",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/snipe-it/config</p>",
      "description": "[Snipe-it](https://github.com/snipe/snipe-it) makes asset management easy. It was built by people solving real-world IT and asset management problems, and a solid UX has always been a top priority. Straightforward design and bulk actions mean getting things done faster.",
      "platform": "linux",
      "logo": "https://s3-us-west-2.amazonaws.com/linuxserver-docs/images/snipe-it-logo500x500.png",
      "image": "linuxserver/snipe-it:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "APP_URL",
          "label": "APP_URL",
          "default": "http://localhost:8080",
          "description": "Hostname or IP and port if applicable, be sure to define https/http"
        },
        {
          "name": "MYSQL_PORT_3306_TCP_ADDR",
          "label": "MYSQL_PORT_3306_TCP_ADDR",
          "default": "<mysql host>",
          "description": "Mysql hostname or IP to use"
        },
        {
          "name": "MYSQL_PORT_3306_TCP_PORT",
          "label": "MYSQL_PORT_3306_TCP_PORT",
          "default": "<mysql port>",
          "description": "Mysql port to use"
        },
        {
          "name": "MYSQL_DATABASE",
          "label": "MYSQL_DATABASE",
          "default": "<mysql database>",
          "description": "Mysql database to use"
        },
        {
          "name": "MYSQL_USER",
          "label": "MYSQL_USER",
          "default": "<mysql pass>",
          "description": "Mysql user to use"
        },
        {
          "name": "MYSQL_PASSWORD",
          "label": "MYSQL_PASSWORD",
          "default": "changeme",
          "description": "Mysql password to use"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/snipe-it/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Sonarr",
      "name": "Sonarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sonarr/config<br>mkdir -p /volume1/docker/sonarr/tv<br>mkdir -p /volume1/docker/sonarr/downloads</p>",
      "description": "[Sonarr](https://sonarr.tv/) (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "categories": ["Media"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sonarr-banner.png",
      "image": "linuxserver/sonarr:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8989:8989/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/sonarr/config"
        },
        {
          "container": "/tv",
          "bind": "/volume1/docker/sonarr/tv"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/sonarr/downloads"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Sqlitebrowser",
      "name": "Sqlitebrowser",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sqlitebrowser/config</p>",
      "description": "[DB Browser for SQLite](https://sqlitebrowser.org/) is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sqlitebrowser-banner.png",
      "image": "linuxserver/sqlitebrowser:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/sqlitebrowser/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Swag",
      "name": "Swag",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/swag/config</p>",
      "description": "SWAG - Secure Web Application Gateway (formerly known as letsencrypt, no relation to Let's Encrypt™) sets up an Nginx webserver and reverse proxy with php support and a built-in certbot client that automates free SSL server certificate generation and renewal processes (Let's Encrypt and ZeroSSL). It also contains fail2ban for intrusion prevention.",
      "platform": "linux",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/swag.gif",
      "image": "linuxserver/swag:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "URL",
          "label": "URL",
          "default": "yourdomain.url",
          "description": "Top url you have control over (`customdomain.com` if you own it, or `customsubdomain.ddnsprovider.com` if dynamic dns)."
        },
        {
          "name": "VALIDATION",
          "label": "VALIDATION",
          "default": "http",
          "description": "Certbot validation method to use, options are `http` or `dns` (`dns` method also requires `DNSPLUGIN` variable set)."
        },
        {
          "name": "SUBDOMAINS",
          "label": "SUBDOMAINS",
          "default": "www,",
          "description": "Subdomains you'd like the cert to cover (comma separated, no spaces) ie. `www,ftp,cloud`. For a wildcard cert, set this *exactly* to `wildcard` (wildcard cert is available via `dns` validation only)"
        },
        {
          "name": "CERTPROVIDER",
          "label": "CERTPROVIDER",
          "default": "",
          "description": "Optionally define the cert provider. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Otherwise defaults to Let's Encrypt."
        },
        {
          "name": "DNSPLUGIN",
          "label": "DNSPLUGIN",
          "default": "cloudflare",
          "description": "Required if `VALIDATION` is set to `dns`. Options are `acmedns`, `aliyun`, `azure`, `cloudflare`, `cloudxns`, `cpanel`, `desec`, `digitalocean`, `directadmin`, `dnsimple`, `dnsmadeeasy`, `dnspod`, `do`, `domeneshop`, `duckdns`, `dynu`, `gandi`, `gehirn`, `godaddy`, `google`, `he`, `hetzner`, `infomaniak`, `inwx`, `ionos`, `linode`, `loopia`, `luadns`, `netcup`, `njalla`, `nsone`, `ovh`, `porkbun`, `rfc2136`, `route53`, `sakuracloud`, `standalone`, `transip`, and `vultr`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`."
        },
        {
          "name": "PROPAGATION",
          "label": "PROPAGATION",
          "default": "",
          "description": "Optionally override (in seconds) the default propagation time for the dns plugins."
        },
        {
          "name": "EMAIL",
          "label": "EMAIL",
          "default": "",
          "description": "Optional e-mail address used for cert expiration notifications (Required for ZeroSSL)."
        },
        {
          "name": "ONLY_SUBDOMAINS",
          "label": "ONLY_SUBDOMAINS",
          "default": "false",
          "description": "If you wish to get certs only for certain subdomains, but not the main domain (main domain may be hosted on another machine and cannot be validated), set this to `true`"
        },
        {
          "name": "EXTRA_DOMAINS",
          "label": "EXTRA_DOMAINS",
          "default": "",
          "description": "Additional fully qualified domain names (comma separated, no spaces) ie. `extradomain.com,subdomain.anotherdomain.org,*.anotherdomain.org`"
        },
        {
          "name": "STAGING",
          "label": "STAGING",
          "default": "false",
          "description": "Set to `true` to retrieve certs in staging mode. Rate limits will be much higher, but the resulting cert will not pass the browser's security test. Only to be used for testing purposes."
        }
      ],
      "ports": ["443:443/tcp", "80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/swag/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Synclounge",
      "name": "Synclounge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "description": "[Synclounge](https://github.com/samcm/synclounge) is a third party tool that allows you to watch Plex in sync with your friends/family, wherever you are.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/synclounge-banner.png",
      "image": "linuxserver/synclounge:latest",
      "env": [
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "AUTH_LIST",
          "label": "AUTH_LIST",
          "default": "plexuser1,plexuser2,email1,machineid1",
          "description": "If set, only the users defined here and the users of the plex servers defined here will be able to access the server. Use e-mails, plex usernames and/or plex server machine ids, comma separated, no spaces."
        },
        {
          "name": "AUTOJOIN_ENABLED",
          "label": "AUTOJOIN_ENABLED",
          "default": "false",
          "description": "DEPRECATED - (Still works but will be removed in the future in favor of the built-in var `autojoin__room`) - Set to `true` to let users autojoin the server and a room (specified by the `AUTOJOIN_ROOM` var)."
        },
        {
          "name": "AUTOJOIN_ROOM",
          "label": "AUTOJOIN_ROOM",
          "default": "roomname",
          "description": "DEPRECATED - (Still works but will be removed in the future in favor of the built-in var `autojoin__room`) - Set the room name for auto joining (requires `AUTOJOIN_ENABLED` set to `true`)."
        }
      ],
      "ports": ["8088:8088/tcp"],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Syncthing",
      "name": "Syncthing",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/syncthing/config<br>mkdir -p /volume1/docker/syncthing/data1<br>mkdir -p /volume1/docker/syncthing/data2</p>",
      "description": "[Syncthing](https://syncthing.net) replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/syncthing-banner.png",
      "image": "linuxserver/syncthing:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": [
        "8384:8384/tcp",
        "22000:22000/tcp",
        "22000:22000/udp",
        "21027:21027/udp"
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/syncthing/config"
        },
        {
          "container": "/data1",
          "bind": "/volume1/docker/syncthing/data1"
        },
        {
          "container": "/data2",
          "bind": "/volume1/docker/syncthing/data2"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Syslog-ng",
      "name": "Syslog-ng",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/syslog-ng/config<br></p>",
      "description": "[syslog-ng](https://www.syslog-ng.com/products/open-source-log-management/) allows you to flexibly collect, parse, classify, rewrite and correlate logs from across your infrastructure and store or route them to log analysis tools.",
      "categories": ["System Tools"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/syslog-ng-logo.png",
      "image": "linuxserver/syslog-ng:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["514:5514/udp", "601:6601/tcp", "6514:6514/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/syslog-ng/config"
        },
        {
          "container": "/var/log",
          "bind": "/var/log"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Tautulli",
      "name": "Tautulli",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/tautulli/config</p>",
      "description": "[Tautulli](http://tautulli.com) is a python based web application for monitoring, analytics and notifications for Plex Media Server.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/tautulli-icon.png",
      "image": "linuxserver/tautulli:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8181:8181/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/tautulli/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Thelounge",
      "name": "Thelounge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/thelounge/config</p>",
      "description": "[Thelounge](https://thelounge.github.io/) (a fork of shoutIRC) is a web IRC client that you host on your own server.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/thelounge/thelounge/master/client/img/logo-vertical-transparent-bg.svg?sanitize=true",
      "image": "linuxserver/thelounge:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["9000:9000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/thelounge/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Transmission",
      "name": "Transmission",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/transmission/config<br>mkdir -p /volume1/docker/transmission/downloads<br>mkdir -p /volume1/docker/transmission/watch</p>",
      "description": "[Transmission](https://www.transmissionbt.com/) is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png",
      "image": "linuxserver/transmission:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "TRANSMISSION_WEB_HOME",
          "label": "TRANSMISSION_WEB_HOME",
          "default": "/combustion-release/",
          "description": "Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu), [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission), and [`/transmissionic/`](https://github.com/6c65726f79/Transmissionic)."
        },
        {
          "name": "USER",
          "label": "USER",
          "default": "username",
          "description": "Specify an optional username for the interface"
        },
        {
          "name": "PASS",
          "label": "PASS",
          "default": "password",
          "description": "Specify an optional password for the interface"
        },
        {
          "name": "WHITELIST",
          "label": "WHITELIST",
          "default": "iplist",
          "description": "Specify an optional list of comma separated ip whitelist. Fills rpc-whitelist setting."
        },
        {
          "name": "PEERPORT",
          "label": "PEERPORT",
          "default": "peerport",
          "description": "Specify an optional port for torrent TCP/UDP connections. Fills peer-port setting."
        },
        {
          "name": "HOST_WHITELIST",
          "label": "HOST_WHITELIST",
          "default": "dnsname list",
          "description": "Specify an optional list of comma separated dns name whitelist. Fills rpc-host-whitelist setting."
        }
      ],
      "ports": ["9091:9091/tcp", "51413:51413/tcp", "51413:51413/udp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/transmission/config"
        },
        {
          "container": "/downloads",
          "bind": "/volume1/docker/transmission/downloads"
        },
        {
          "container": "/watch",
          "bind": "/volume1/docker/transmission/watch"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Tvheadend",
      "name": "Tvheadend",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/tvheadend/config<br>mkdir -p /volume1/docker/tvheadend/recordings</p>",
      "description": "[Tvheadend](https://www.tvheadend.org/) works as a proxy server: is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT>IP and HDHomeRun as input sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming. Multiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/tvheadend-big.png",
      "image": "linuxserver/tvheadend:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "RUN_OPTS",
          "label": "RUN_OPTS",
          "default": "",
          "description": "Optionally specify additional arguments to be passed. See Additional runtime parameters."
        }
      ],
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/tvheadend/config"
        },
        {
          "container": "/recordings",
          "bind": "/volume1/docker/tvheadend/recordings"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Ubooquity",
      "name": "Ubooquity",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ubooquity/config<br>mkdir -p /volume1/docker/ubooquity/books<br>mkdir -p /volume1/docker/ubooquity/comics<br>mkdir -p /volume1/docker/ubooquity/files</p>",
      "description": "[Ubooquity](https://vaemendis.net/ubooquity/) is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ubooquity-banner.png",
      "image": "linuxserver/ubooquity:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "MAXMEM",
          "label": "MAXMEM",
          "default": "<maxmem>",
          "description": "To set the maximum memory. ( ex: set '1024' for 1GB )"
        }
      ],
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/ubooquity/config"
        },
        {
          "container": "/books",
          "bind": "/volume1/docker/ubooquity/books"
        },
        {
          "container": "/comics",
          "bind": "/volume1/docker/ubooquity/comics"
        },
        {
          "container": "/files",
          "bind": "/volume1/docker/ubooquity/files"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Unifi-controller",
      "name": "Unifi-controller",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/unifi-controller/config</p>",
      "description": "The [Unifi-controller](https://www.ubnt.com/enterprise/#unifi) software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.",
      "categories": ["Networking"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/unifi-banner.png",
      "image": "linuxserver/unifi-controller:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "MEM_LIMIT",
          "label": "MEM_LIMIT",
          "default": "1024",
          "description": "Optionally change the Java memory limit. Set to `default` to reset to default"
        },
        {
          "name": "MEM_STARTUP",
          "label": "MEM_STARTUP",
          "default": "1024",
          "description": "Optionally change the Java initial/minimum memory. Set to `default` to reset to default"
        }
      ],
      "ports": [
        "8443:8443/tcp",
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "1900:1900/udp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp",
        "5514:5514/udp"
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/unifi-controller/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Webgrabplus",
      "name": "Webgrabplus",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/webgrabplus/config<br>mkdir -p /volume1/docker/webgrabplus/data</p>",
      "description": "[Webgrabplus](http://www.webgrabplus.com) is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.",
      "platform": "linux",
      "logo": "http://www.webgrabplus.com/sites/default/themes/WgTheme/images/slideshows/EPG_fading.jpg",
      "image": "linuxserver/webgrabplus:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/webgrabplus/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/webgrabplus/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Webtop",
      "name": "Webtop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/webtop/config<br></p>",
      "description": "[Webtop](https://github.com/linuxserver/docker-webtop) - Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser.",
      "categories": ["Utilities"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png",
      "image": "linuxserver/webtop:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`"
        },
        {
          "name": "KEYBOARD",
          "label": "KEYBOARD",
          "default": "en-us-qwerty",
          "description": "See the keyboard layouts section for more information and options."
        },
        {
          "name": "TITLE",
          "label": "TITLE",
          "default": "Webtop",
          "description": "String which will be used as page/tab title in the web browser."
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/webtop/config"
        },
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Wikijs",
      "name": "Wikijs",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wikijs/config<br>mkdir -p /volume1/docker/wikijs/data</p>",
      "description": "[Wikijs](https://github.com/Requarks/wiki) A modern, lightweight and powerful wiki app built on NodeJS.",
      "platform": "linux",
      "logo": "https://static.requarks.io/logo/wikijs-full.svg",
      "image": "linuxserver/wikijs:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/wikijs/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/wikijs/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Wireguard",
      "name": "Wireguard",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wireguard/config<br></p>",
      "description": "[WireGuard®](https://www.wireguard.com/) is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPsec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running on embedded interfaces and super computers alike, fit for many different circumstances. Initially released for the Linux kernel, it is now cross-platform (Windows, macOS, BSD, iOS, Android) and widely deployable. It is currently under heavy development, but already it might be regarded as the most secure, easiest to use, and simplest VPN solution in the industry.",
      "platform": "linux",
      "logo": "https://www.wireguard.com/img/wireguard.svg",
      "image": "linuxserver/wireguard:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SERVERURL",
          "label": "SERVERURL",
          "default": "wireguard.domain.com",
          "description": "External IP or domain name for docker host. Used in server mode. If set to `auto`, the container will try to determine and set the external IP automatically"
        },
        {
          "name": "SERVERPORT",
          "label": "SERVERPORT",
          "default": "51820",
          "description": "External port for docker host. Used in server mode."
        },
        {
          "name": "PEERS",
          "label": "PEERS",
          "default": "1",
          "description": "Number of peers to create confs for. Required for server mode. Can also be a list of names: `myPC,myPhone,myTablet` (alphanumeric only)"
        },
        {
          "name": "PEERDNS",
          "label": "PEERDNS",
          "default": "auto",
          "description": "DNS server set in peer/client configs (can be set as `8.8.8.8`). Used in server mode. Defaults to `auto`, which uses wireguard docker host's DNS via included CoreDNS forward."
        },
        {
          "name": "INTERNAL_SUBNET",
          "label": "INTERNAL_SUBNET",
          "default": "10.13.13.0",
          "description": "Internal subnet for the wireguard and server and peers (only change if it clashes). Used in server mode."
        },
        {
          "name": "ALLOWEDIPS",
          "label": "ALLOWEDIPS",
          "default": "0.0.0.0/0",
          "description": "The IPs/Ranges that the peers will be able to reach using the VPN connection. If not specified the default value is: '0.0.0.0/0, ::0/0' This will cause ALL traffic to route through the VPN, if you want split tunneling, set this to only the IPs you would like to use the tunnel AND the ip of the server's WG ip, such as 10.13.13.1."
        },
        {
          "name": "LOG_CONFS",
          "label": "LOG_CONFS",
          "default": "true",
          "description": "Generated QR codes will be displayed in the docker log. Set to `false` to skip log output."
        }
      ],
      "ports": ["51820:51820/udp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/wireguard/config"
        },
        {
          "container": "/lib/modules",
          "bind": "/lib/modules"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Wireshark",
      "name": "Wireshark",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wireshark/config</p>",
      "description": "[Wireshark](https://www.wireshark.org/) is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. Wireshark development thrives thanks to the volunteer contributions of networking experts around the globe and is the continuation of a project started by Gerald Combs in 1998.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/wireshark-icon.png",
      "image": "linuxserver/wireshark:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/wireshark/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Xbackbone",
      "name": "Xbackbone",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/xbackbone/config</p>",
      "description": "[Xbackbone](https://github.com/SergiX44/XBackBone) is a simple, self-hosted, lightweight PHP file manager that support the instant sharing tool ShareX and *NIX systems. It supports uploading and displaying images, GIF, video, code, formatted text, and file downloading and uploading. Also have a web UI with multi user management, past uploads history and search support.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/SergiX44/XBackBone/master/docs/img/xbackbone.png",
      "image": "linuxserver/xbackbone:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/xbackbone/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Yq",
      "name": "Yq",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/yq/config</p>",
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/yq for details.",
      "platform": "linux",
      "logo": "",
      "image": "linuxserver/yq:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/yq/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Znc",
      "name": "Znc",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/znc/config</p>",
      "description": "[Znc](http://wiki.znc.in/ZNC) is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "platform": "linux",
      "logo": "http://wiki.znc.in/resources/assets/wiki.png",
      "image": "linuxserver/znc:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["6501:6501/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/znc/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "categories": ["Authentication Server"],
      "description": "Authentik is an open-source Identity Provider focused on flexibility and versatility",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/mycroftwilde/portainer_templates/master/Images/goauthentik.png",
      "name": "Authentik",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/authentik.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Authentik",
      "type": 3
    },
    {
      "type": 1,
      "title": "Apprise-api",
      "name": "Apprise-api",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/apprise-api/config</p>",
      "description": "[Apprise-api](https://github.com/caronc/apprise-api) Takes advantage of [Apprise](https://github.com/caronc/apprise) through your network with a user-friendly API. * Send notifications to more then 65+ services. * An incredibly lightweight gateway to Apprise. * A production ready micro-service at your disposal. Apprise API was designed to easily fit into existing (and new) eco-systems that are looking for a simple notification solution.",
      "categories": ["Task Server"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/caronc/apprise-api/master/apprise_api/static/logo.png",
      "image": "linuxserver/apprise-api:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/apprise-api/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Pwndrop",
      "name": "Pwndrop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pwndrop/config</p>",
      "description": "[Pwndrop](https://github.com/kgretzky/pwndrop) is a self-deployable file hosting service for sending out red teaming payloads or securely sharing your private files over HTTP and WebDAV.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/kgretzky/pwndrop/master/media/pwndrop-logo-512.png",
      "image": "linuxserver/pwndrop:latest",
      "categories": ["Task Server"],
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SECRET_PATH",
          "label": "SECRET_PATH",
          "default": "/pwndrop",
          "description": "Secret path for admin access. Defaults to `/pwndrop`. This parameter only takes effect during initial install; it can later be changed in the web gui."
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pwndrop/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Family App Server"],
      "title": "Firefox",
      "name": "Firefox",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/firefox/config</p>",
      "description": "[Firefox](https://www.mozilla.org/en-US/firefox/) Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/firefox-logo.png",
      "image": "linuxserver/firefox:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/firefox/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "categories": ["Management Utility Server"],
      "description": "Remote Management Server",
      "env": [
        {
          "default": "/portainer/Files/AppData/MeshCentral/Config",
          "label": "Config Container Bind",
          "name": "CONFIG"
        },
        {
          "default": "/portainer/Files/AppData/MeshCentral/Files",
          "label": "Files Container Bind",
          "name": "FILES"
        },
        {
          "default": "/portainer/Files/AppData/MeshCentral/Backup",
          "label": "Backup Container Bind",
          "name": "BACK"
        },
        {
          "default": "443",
          "label": "Container Port 443",
          "name": "PORT4"
        },
        {
          "default": "80",
          "label": "Container Port 80",
          "name": "PORT8"
        }
      ],
      "logo": "https://raw.githubusercontent.com/mycroftwilde/portainer_templates/master/Images/meshc.png",
      "note": "MeshCentral",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/mesh.yml",
        "url": "https://github.com/mycroftwilde/portainer_templates"
      },
      "title": "MeshCentral",
      "type": 3
    },
    {
      "categories": ["Dashboard Server"],
      "description": "Freeboard is a turn-key HTML-based 'engine' for dashboards. Besides a nice looking layout engine, it provides a plugin architecture for creating datasources (which fetch data) and widgets (which display data)— freeboard then does all the work to connect the two together.",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/freeboard.jpg",
      "name": "freeboard",
      "repository": {
        "stackfile": "Template/Stack/freeboard.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["8000:80/tcp"],
      "restart_policy": "always",
      "title": "Freeboard",
      "type": 3
    },
    {
      "categories": ["Finance Server"],
      "description": "Ghostfolio is an open source wealth management software built with web technology.",
      "logo": "https://avatars.githubusercontent.com/u/82473144?s=200",
      "name": "Ghostfolio",
      "repository": {
        "stackfile": "Template/Stack/ghostfolio.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["3663:80/tcp"],
      "restart_policy": "always",
      "title": "Ghostfolio",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "A self-hosted bookmark management tool.",
      "logo": "https://github.com/beromir/Servas/raw/main/docs/images/home.png",
      "name": "Servas",
      "repository": {
        "stackfile": "Template/Stack/servas.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["8456:80/tcp"],
      "restart_policy": "always",
      "title": "Servas",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "wallabag is a web application allowing you to save web pages for later reading. Click, save and read it when you want.",
      "logo": "https://www.wallabag.org/user/themes/boxify/img/logo-wallabag.svg",
      "name": "Wallabag",
      "repository": {
        "stackfile": "Template/Stack/wallabag.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["8234:80/tcp"],
      "restart_policy": "always",
      "title": "Wallabag",
      "type": 3
    },
    {
      "categories": ["Usenet Server"],
      "description": "Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Sonarr, Radarr, Lidarr, and Readarr offering complete management of your indexers with no per app Indexer setup required (we do it all).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ghcr.io/linuxserver/prowlarr:develop",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/prowlarr.png",
      "name": "prowlarr",
      "platform": "linux",
      "ports": ["9696:9696/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Prowlarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Prowlarr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Network Server"],
      "description": "WIFI / LAN intruder detector",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "jokobsk/pi.alert",
      "logo": "https://raw.githubusercontent.com/pucherot/Pi.Alert/main/docs/img/1_devices.jpg",
      "name": "pi.alert",
      "platform": "linux",
      "ports": ["20211:20211/udp"],
      "restart_policy": "always",
      "title": "Pi.alert",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/pi.alert",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Notes Server"],
      "description": "Trilium Notes is a hierarchical note taking application with focus on building large personal knowledge bases",
      "env": [
        {
          "default": "/home/node/trilium-data",
          "label": "TRILIUM_DATA_DIR",
          "name": "TRILIUM_DATA_DIR"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "image": "zadam/trilium:latest",
      "logo": "https://www.saashub.com/images/app/service_logos/55/2901389fab77/large.png?1561117248",
      "name": "trilium",
      "platform": "linux",
      "ports": ["3388:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Trilium",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/trilium-data",
          "container": "/home/node/trilium-data"
        }
      ]
    },
    {
      "categories": ["Smart Home"],
      "description": "A complete and local NVR designed for Home Assistant with AI object detection. Uses OpenCV and Tensorflow to perform realtime object detection locally for IP cameras.",
      "logo": "https://raw.githubusercontent.com/blakeblackshear/frigate/master/docs/static/img/frigate.png",
      "name": "frigatenvr",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/frigatenvr.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Frigate NVR",
      "type": 3
    },
    {
      "categories": ["Dashboard Server"],
      "description": "Fenrus is a Node application and requires NodeJS to run. Once NodeJS is installed you can run Fenrus",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://user-images.githubusercontent.com/958400/154829266-62206846-c6ef-4718-9910-2b83eb6aa41c.png",
      "name": "Fenrus",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/fenrus.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Fenrus",
      "type": 3
    },
    {
      "categories": ["Library Server"],
      "description": "Audiobook Server",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ghcr.io/advplyr/audiobookshelf:latest",
      "logo": "https://raw.githubusercontent.com/mycroftwilde/portainer_templates/master/Images/AudioBookshelfLogo.png",
      "name": "Audiobookshelf",
      "platform": "linux",
      "ports": ["13378:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Audiobookshelf",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Audiobookshelf",
          "container": "/config"
        },
        {
          "bind": "/path/to/audiobooks",
          "container": "/audiobooks"
        },
        {
          "bind": "/path/to/podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/path/to/Metadata",
          "container": "/metadata"
        }
      ]
    },
    {
      "categories": ["Family App Server"],
      "description": "Vikunja is a self hosted, open-source to-do list application",
      "env": [
        {
          "default": "192.168.0.2",
          "label": "IP",
          "name": "IP"
        },
        {
          "default": "80",
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/go-vikunja/frontend/main/public/images/icons/android-chrome-192x192.png",
      "note": "Vikunja is a self hosted, open-source to-do list application",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/vikunja.yml",
        "url": "https://github.com/mycroftwilde/portainer_templates"
      },
      "title": "Vikunja",
      "type": 3
    },
    {
      "categories": ["Media Server"],
      "description": "Helps you organize your *Ahem* ...more MATURE Media material....",
      "env": [
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://dashy.to/img/dashy.png",
      "name": "Stash",
      "note": "## Keep configs, scrapers, and plugins here. </p><p> - /portainer/Files/AppData/Config/stash:/root/.stash </p><p> ## Point this at your collection. </p><p> - ./data:/data </p><p> ## This is where your stash's metadata lives </p><p> - /portainer/Files/AppData/Config/stashmeta:/metadata </p><p> ## Any other cache content. </p><p> - /portainer/Files/AppData/Config/stashcache:/cache </p><p> ## Where to store generated content (screenshots,previews,transcodes,sprites) </p><p> - /portainer/Files/AppData/Config/stashgenerated:/generated",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/stash.yml",
        "url": "https://github.com/mycroftwilde/portainer_templates"
      },
      "title": "Stash",
      "type": 3
    },
    {
      "categories": ["Chat Server"],
      "description": "Rocket.Chat Server",
      "logo": "https://raw.githubusercontent.com/portapps/rocketchat-portable/master/res/papp.png",
      "note": "Rocket.Chat Server Container",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/rocketchat.yml",
        "url": "https://github.com/mycroftwilde/portainer_templates"
      },
      "title": "Rocket Chat",
      "type": 3
    },
    {
      "categories": ["Notes Server"],
      "description": "Joplin is an open-source note-taking app",
      "env": [
        {
          "default": "22300",
          "label": "PORT",
          "name": "PORT"
        },
        {
          "default": "http://joplin.yourdomain.tld:22300",
          "label": "URL",
          "name": "URL"
        }
      ],
      "logo": "https://raw.githubusercontent.com/laurent22/joplin/master/Assets/SquareIcon512.png",
      "note": "Joplin is an open-source note-taking app",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/joplin.yml",
        "url": "https://github.com/mycroftwilde/portainer_templates"
      },
      "title": "Joplin",
      "type": 3
    },
    {
      "categories": ["Usenet Server"],
      "description": "Readarr usent server",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/readarr:nightly",
      "logo": "https://raw.githubusercontent.com/Readarr/Readarr/develop/Logo/128.png",
      "name": "Readerr",
      "platform": "linux",
      "ports": ["8787:8787/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Readarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Readarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/books",
          "container": "/books"
        }
      ]
    },
    {
      "type": 1,
      "categories": ["Library Server"],
      "title": "Calibre",
      "name": "Calibre",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/calibre/config</p>",
      "description": "Calibre is a powerful and easy to use e-book manager. Users say it’s outstanding and a must-have. It’ll allow you to do nearly everything and it takes things a step beyond normal e-book software. It’s also completely free and open source and great for both casual users and computer experts.",
      "platform": "linux",
      "logo": "https://github.com/kovidgoyal/calibre/raw/master/resources/images/lt.png",
      "image": "linuxserver/calibre:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PASSWORD",
          "label": "PASSWORD",
          "default": "",
          "description": "Optionally set a password for the gui."
        },
        {
          "name": "CLI_ARGS",
          "label": "CLI_ARGS",
          "default": "",
          "description": "Optionally pass cli start arguments to calibre."
        }
      ],
      "ports": ["8080:8080/tcp", "8081:8081/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/calibre/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Smart Home"],
      "title": "Habridge",
      "name": "Habridge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/habridge/config</p>",
      "description": "Habridge emulates Philips Hue API to other home automation gateways such as an Amazon Echo/Dot Gen 1 (gen 2 has issues discovering ha-bridge) or other systems that support Philips Hue.  [https://github.com/bwssytems/ha-bridge/wiki](https://github.com/bwssytems/ha-bridge/wiki)",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/bwssytems/ha-bridge/master/src/main/resources/public/img/favicon.ico",
      "image": "linuxserver/habridge:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "SEC_KEY",
          "label": "SEC_KEY",
          "default": "<Your Key To Encrypt Security Data>",
          "description": "Key used to secure communication."
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:8080/tcp", "50000:50000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/habridge/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "categories": ["Dashboard Server"],
      "description": "MagicMirror2 Server",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "karsten13/magicmirror:latest",
      "logo": "https://github.com/MichMich/MagicMirror/raw/master/.github/header.png",
      "name": "MagicMirror2",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "command": "/bin/bash -c \"npm run server\" && exit 777",
      "title": "MagicMirror2",
      "type": 1,
      "volumes": [
        {
          "container": "/opt/magic_mirror/config"
        },
        {
          "container": "/opt/magic_mirror/modules"
        },
        {
          "container": "/opt/magic_mirror/css"
        }
      ]
    },
    {
      "categories": ["Library Server"],
      "description": "Koomga Manga, Comic and E-Book Server",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "gotson/komga:latest",
      "logo": "https://raw.githubusercontent.com/gotson/komga/master/.github/readme-images/app-icon.png",
      "name": "Komga",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Komga",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/manga"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Library Server"],
      "description": "Kavita Manga, Comic and E-Book Server",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "kizaing/kavita:latest",
      "logo": "https://raw.githubusercontent.com/Kareadita/Kavita/main/UI/Web/src/assets/images/logo.png",
      "name": "Kavita",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Kavita",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/manga"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "categories": ["Management Utility Server"],
      "title": "Snipe-it",
      "name": "Snipe-it",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/snipe-it/config</p>",
      "description": "Snipe-it makes asset management easy. It was built by people solving real-world IT and asset management problems, and a solid UX has always been a top priority. Straightforward design and bulk actions mean getting things done faster.",
      "platform": "linux",
      "logo": "https://s3-us-west-2.amazonaws.com/linuxserver-docs/images/snipe-it-logo500x500.png",
      "image": "linuxserver/snipe-it:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "APP_URL",
          "label": "APP_URL",
          "default": "<hostname or ip>",
          "description": "Hostname or IP and port if applicable IE <ip or hostname>:8080"
        },
        {
          "name": "MYSQL_PORT_3306_TCP_ADDR",
          "label": "MYSQL_PORT_3306_TCP_ADDR",
          "default": "<mysql host>",
          "description": "Mysql hostname or IP to use"
        },
        {
          "name": "MYSQL_PORT_3306_TCP_PORT",
          "label": "MYSQL_PORT_3306_TCP_PORT",
          "default": "<mysql port>",
          "description": "Mysql port to use"
        },
        {
          "name": "MYSQL_DATABASE",
          "label": "MYSQL_DATABASE",
          "default": "<mysql database>",
          "description": "Mysql database to use"
        },
        {
          "name": "MYSQL_USER",
          "label": "MYSQL_USER",
          "default": "<mysql pass>",
          "description": "Mysql user to use"
        },
        {
          "name": "MYSQL_PASSWORD",
          "label": "MYSQL_PASSWORD",
          "default": "changeme",
          "description": "Mysql password to use"
        }
      ],
      "ports": ["8080:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/snipe-it/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "categories": ["Task Server"],
      "description": "It is a self-hosted monitoring tool like Uptime Robot",
      "image": "louislam/uptime-kuma:latest",
      "logo": "https://images.opencollective.com/uptime-kuma/29c5113/logo/256.png",
      "name": "uptime-kuma",
      "platform": "linux",
      "ports": ["3001:3001/tcp"],
      "restart_policy": "always",
      "title": "Uptime Kuma",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UptimeKuma",
          "container": "/app/data"
        }
      ]
    },
    {
      "type": 1,
      "title": "Grafana",
      "description": "Metrics Graphing Tool",
      "logo": "https://raw.githubusercontent.com/grafana/grafana/main/docs/logo-horizontal.png",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "categories": ["Dashboard Server"],
      "image": "grafana/grafana:latest",
      "ports": ["3000/tcp"],
      "network": "bridge",
      "volumes": [
        {
          "container": "/etc/grafana/grafana.ini"
        },
        {
          "container": "/var/lib/grafana"
        },
        {
          "container": "/var/log/grafana"
        }
      ]
    },
    {
      "categories": ["Smart Home"],
      "description": "Node-RED provides a browser-based flow editor that makes it easy to wire together flows using the wide range of nodes in the palette.",
      "image": "nodered/node-red",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/node-red-icon.svg",
      "name": "nodered",
      "platform": "linux",
      "ports": ["1880:1880/tcp"],
      "restart_policy": "always",
      "title": "Nodered",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nodered",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Management Utility Server"],
      "description": "draw.io (formerly Diagramly) is free online diagram software. You can use it as a flowchart maker, network diagram software, to create UML online, as an ER diagram tool, to design database schema, to build BPMN online, as a circuit diagram maker, and more. draw.io can import .vsdx, Gliffy™ and Lucidchart™ files.",
      "image": "jgraph/drawio:latest",
      "logo": "https://raw.githubusercontent.com/qwerty00007/portainer_templates/master/Images/draw.io.png",
      "name": "draw.io",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "draw.io",
      "type": 1
    },
    {
      "categories": ["Dashboard Server"],
      "description": "Helps you organize your self-hosted services by making them accessible from a single place.",
      "logo": "https://dashy.to/img/dashy.png",
      "name": "Dashy",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/dashy.yml",
        "url": "https://github.com/mycroftwilde/portainer_templates"
      },
      "title": "Dashy",
      "type": 3
    },
    {
      "categories": ["Music Server"],
      "description": "Navidrome is an open source web-based music collection server and streamer. It gives you freedom to listen to your music collection from any browser or mobile device. It's like your personal Spotify!",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://github.com/navidrome/navidrome/raw/master/resources/logo-192x192.png",
      "name": "Navidrome",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/navidrome.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Navidrome",
      "type": 3
    },
    {
      "categories": ["Dashboard Server"],
      "description": "Flame is self-hosted startpage for your server. Its design is inspired (heavily) by SUI. Flame is very easy to setup and use. With built-in editors, it allows you to setup your very own application hub in no time - no file editing necessary.",
      "image": "pawelmalak/flame",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/flame.png",
      "name": "flame-dashboard",
      "platform": "linux",
      "ports": ["5005:5005/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Flame-Dashboard",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/flame-dashboard",
          "container": "/app/data"
        }
      ]
    },
    {
      "type": 1,
      "categories": ["Tools"],
      "title": "Foldingathome",
      "name": "Foldingathome",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/foldingathome/config</p>",
      "description": "[Folding@home](https://foldingathome.org/) is a distributed computing project for simulating protein dynamics, including the process of protein folding and the movements of proteins implicated in a variety of diseases. It brings together citizen scientists who volunteer to run simulations of protein dynamics on their personal computers. Insights from this data are helping scientists to better understand biology, and providing new opportunities for developing therapeutics.",
      "platform": "linux",
      "logo": "https://foldingathome.org/wp-content/uploads/2016/09/folding-at-home-logo.png",
      "image": "linuxserver/foldingathome:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["7396:7396/tcp", "36330:36330/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/foldingathome/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "categories": ["Authentication Server"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "hotio/bazarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bazarr.png",
      "name": "Bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music Server"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Password Server"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bitwarden.png",
      "name": "vaultwarden",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": [":80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Vaultwarden",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Library Server"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Notes Server"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Library Server"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Library Server"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "note": "Configuration <ul><li><b>/config</b> - Where Calibre-web should store it's database</li><li><b>/books</b> - Path to your calibre library metadata.db file</li></ul>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Family App Server"],
      "description": "ave recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Code Server"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Code Server"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music Server"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Dashboard Server"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP Server"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/davos.png",
      "name": "davos",
      "note": "Configuration <ul><li><b>/config</b> - AppData Location</li><li><b>/downloads</b> - File Download Location</li></ul>",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Torrent Server"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/deluge-icon.png",
      "name": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Smart Home"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "note": "<b>Configuration</b></br>First, go to duckdns site, register your subdomain and retrieve your token<br/>Then run the docker create command above with your subdomain(s) and token<br/>It will update your IP with the DuckDNS service every 5 minutes",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup and Sync Server"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/emby.png",
      "name": "Emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/embystat.png",
      "name": "EmbyStat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management Utility Server"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Smart Home"],
      "description": "A free, self-hostable rss aggregator.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Library Server"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Management Utility Server"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Family App Server"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utility.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Dashboard Server"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Dashboard Server"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Task Server"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Proxy Server"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jellyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Library Server"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Proxy Server"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/swag:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt / SWAG",
      "note": "Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.<ul><li>- Port 443 on the internet side of the router should be forwarded to this container's port 443.</li><li>- If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains can be www,ftp,cloud</li><li>- The container detects changes to url and subdomains, revokes existing certs and generates new ones during start.</li><li>- It also detects changes to the DHLEVEL parameter and replaces the dhparams file.</li><li>- If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file <code>docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd \u0026lt;username\u0026gt;</code>",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt / SWAG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Task Server"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/lidarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Database Server"],
      "description": "An Enhanced drop in replacement for Mysql.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music Server"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone.",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Chat Server"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music Server"],
      "description": "MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Dashboard Server"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Proxy Server"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Family App Server"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Proxy Server"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy Server"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jc21/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "env": [
        {
          "label": "DB_SQLITE_FILE",
          "name": "DB_SQLITE_FILE",
          "default": "/data/database.sqlite"
        }
      ],
      "ports": ["80:80/tcp", "81:81/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/data",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/letsencrypt",
          "container": "/etc/letsencrypt"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Ombi allows you to host your own Plex Request and user management system.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["VPN Server"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Dashboard Server"],
      "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": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Overseerr is a free and open source software application for managing requests for your media library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/overseerr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/overseerr-icon.png",
      "name": "Overseerr",
      "platform": "linux",
      "ports": ["5055:5055/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Overseerr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Overseerr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Family App Server"],
      "description": "ownCloud is a self-hosted file sync and share server. It provides access to your data through a web interface, sync clients or WebDAV while providing a platform to view, sync and share across devices easily—all under your control. ownCloud’s open architecture is extensible via a simple but powerful API for applications and plugins and it works with any storage.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "OWNCLOUD_DOMAIN",
          "name": "OWNCLOUD_DOMAIN"
        },
        {
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "label": "ADMIN_USERNAME",
          "name": "ADMIN_USERNAME"
        },
        {
          "label": "ADMIN_PASSWORD",
          "name": "ADMIN_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/docker-library/docs/9d36b4ed7cabc35dbd3849272ba2bd7abe482172/owncloud/logo.png",
      "name": "Owncloud",
      "note": "The database user is owncloud and the database is owncloud.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/owncloud.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Owncloud",
      "type": 3
    },
    {
      "categories": ["Media Server"],
      "description": "Petio is a third party companion app available to Plex server owners to allow their users to request, review and discover content.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/petio-icon.png",
      "name": "Petio",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/petio.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Petio",
      "type": 3
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["Torrent Server"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/radarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Backup and Sync Server"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Torrent Server"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Family App Server"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Task Server"],
      "description": "SmokePing is a latency logging and graphing and alerting system. It consists of a daemon process which organizes the latency measurements and a CGI which presents the graphs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Code Server"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/snibox.png",
      "name": "Snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Usenet Server"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/sonarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup and Sync Server"],
      "description": "Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Media Server"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "note": "<b>Port 8181</b> The webui for Tautulli's webui<br/></br>Configuration <ul><li><b>/config</b> - Storing Configuration and the Tautulli database</li><li><b>/logs</b> - Map to you plex logs (required for IP logging)</li></ul>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Notes Server"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Smart Home"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Torrent Server"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Torrent Server"],
      "description": "This container contains OpenVPN and Transmission with a configuration where Transmission is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Library Server"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Smart Home"],
      "description": "The Unifi-controller Controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Task Server"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "note": "Configuration <ul><li><b>/config</b> - This is where WebGrab+Plus will store it's configuration</li><li><b>/data</b> - This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.</li></ul>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Family App Server"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Notes Server"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/wikijs.png",
      "name": "Wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Dashboard Server"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "type": 1,
      "categories": ["Tools"],
      "title": "Audacity",
      "name": "Audacity",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/audacity/config</p>",
      "description": "[Audacity](https://www.audacityteam.org/) is an easy-to-use, multi-track audio editor and recorder. Developed by a group of volunteers as open source.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/audacity-logo.png",
      "image": "linuxserver/audacity:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/audacity/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Library Server"],
      "title": "Booksonic-air",
      "name": "Booksonic-air",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/booksonic-air/config<br>mkdir -p /volume1/docker/booksonic-air/audiobooks<br>mkdir -p /volume1/docker/booksonic-air/podcasts<br>mkdir -p /volume1/docker/booksonic-air/othermedia</p>",
      "description": "[Booksonic-air](http://booksonic.org) is a platform for accessing the audibooks you own wherever you are. At the moment the platform consists of Booksonic Air - A server for streaming your audiobooks, successor to the original Booksonic server and based on Airsonic. Booksonic App - An DSub based Android app for connection to Booksonic-Air servers. .",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/booksonic-air.png",
      "image": "linuxserver/booksonic-air:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CONTEXT_PATH",
          "label": "CONTEXT_PATH",
          "default": "url-base",
          "description": "Base url for use with reverse proxies etc."
        }
      ],
      "ports": ["4040:4040/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/booksonic-air/config"
        },
        {
          "container": "/audiobooks",
          "bind": "/volume1/docker/booksonic-air/audiobooks"
        },
        {
          "container": "/podcasts",
          "bind": "/volume1/docker/booksonic-air/podcasts"
        },
        {
          "container": "/othermedia",
          "bind": "/volume1/docker/booksonic-air/othermedia"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Code Server"],
      "title": "Cloud9",
      "name": "Cloud9",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/cloud9/config<br>mkdir -p /volume1/docker/cloud9/code<br></p>",
      "description": "[Cloud9](https://github.com/c9/core) Cloud9 is a complete web based IDE with terminal access. This container is for running their core SDK locally and developing plugins.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/cloud9.png",
      "image": "linuxserver/cloud9:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "GITURL",
          "label": "GITURL",
          "default": "https://github.com/linuxserver/docker-cloud9.git",
          "description": "Specify a git repo to checkout on first startup"
        },
        {
          "name": "USERNAME",
          "label": "USERNAME",
          "default": "",
          "description": "Optionally specify a username for http auth"
        },
        {
          "name": "PASSWORD",
          "label": "PASSWORD",
          "default": "",
          "description": "Optionally specify a password for http auth (if USERNAME and PASSWORD are not set, there will be no http auth)"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/cloud9/config"
        },
        {
          "container": "/code",
          "bind": "/volume1/docker/cloud9/code"
        },
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Notes Server"],
      "title": "Dokuwiki",
      "name": "Dokuwiki",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/dokuwiki/config</p>",
      "description": "[Dokuwiki](https://www.dokuwiki.org/dokuwiki/) is a simple to use and highly versatile Open Source wiki software that doesn't require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/dokuwiki-icon.png",
      "image": "linuxserver/dokuwiki:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/dokuwiki/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Gaming Server"],
      "title": "Emulatorjs",
      "name": "Emulatorjs",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/emulatorjs/config<br>mkdir -p /volume1/docker/emulatorjs/data</p>",
      "description": "[Emulatorjs](https://github.com/linuxserver/emulatorjs) - In browser web based emulation portable to nearly any device for many retro consoles. A mix of emulators is used between Libretro and EmulatorJS.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/emulatorjs-logo.png",
      "image": "linuxserver/emulatorjs:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a subfolder for reverse proxies IE '/FOLDER/'"
        }
      ],
      "ports": ["3000:3000/tcp", "80:80/tcp", "4001:4001/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/emulatorjs/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/emulatorjs/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Tools"],
      "title": "Endlessh",
      "name": "Endlessh",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/endlessh/config</p>",
      "description": "[Endlessh](https://github.com/skeeto/endlessh) is an SSH tarpit that very slowly sends an endless, random SSH banner. It keeps SSH clients locked up for hours or even days at a time. The purpose is to put your real SSH server on another port and then let the script kiddies get stuck in this tarpit instead of bothering a real server.",
      "platform": "linux",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/openssh-server-logo.png",
      "image": "linuxserver/endlessh:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "MSDELAY",
          "label": "MSDELAY",
          "default": "10000",
          "description": "The endless banner is sent one line at a time. This is the delay in milliseconds between individual lines."
        },
        {
          "name": "MAXLINES",
          "label": "MAXLINES",
          "default": "32",
          "description": "The length of each line is randomized. This controls the maximum length of each line. Shorter lines may keep clients on for longer if they give up after a certain number of bytes."
        },
        {
          "name": "MAXCLIENTS",
          "label": "MAXCLIENTS",
          "default": "4096",
          "description": "Maximum number of connections to accept at a time. Connections beyond this are not immediately rejected, but will wait in the queue."
        },
        {
          "name": "LOGFILE",
          "label": "LOGFILE",
          "default": "false",
          "description": "By default, the app logs to container log. If this is set to `true`, the log will be output to file under `/config/logs/endlessh` (`/config` needs to be mapped)."
        },
        {
          "name": "BINDFAMILY",
          "label": "BINDFAMILY",
          "default": "",
          "description": "By default, the app binds to IPv4 and IPv6 addresses. Set it to `4` or `6` to bind to IPv4 only or IPv6 only, respectively. Leave blank to bind to both."
        }
      ],
      "ports": ["22:2222/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/endlessh/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Media Server"],
      "title": "Ffmpeg",
      "name": "Ffmpeg",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ffmpeg/config</p>",
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/ffmpeg for details.",
      "platform": "linux",
      "logo": "",
      "image": "linuxserver/ffmpeg:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/ffmpeg/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["FTP Server"],
      "title": "Filezilla",
      "name": "Filezilla",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/filezilla/config</p>",
      "description": "[FIleZilla](https://filezilla-project.org/) Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/filezilla-logo.png",
      "image": "linuxserver/filezilla:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/filezilla/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Task Server"],
      "title": "Healthchecks",
      "name": "Healthchecks",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/healthchecks/config</p>",
      "description": "[Healthchecks](https://github.com/healthchecks/healthchecks) is a watchdog for your cron jobs. It's a web server that listens for pings from your cron jobs, plus a web interface.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/healthchecks/healthchecks/master/static/img/up.png",
      "image": "linuxserver/healthchecks:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "SITE_ROOT",
          "label": "SITE_ROOT",
          "default": "<SITE_ROOT>",
          "description": "The site's top-level URL and the port it listens to if differrent than 80 or 443 (e.g., https://healthchecks.example.com:8000)"
        },
        {
          "name": "SITE_NAME",
          "label": "SITE_NAME",
          "default": "<SITE_NAME>",
          "description": "The site's name (e.g., 'Example Corp HealthChecks')"
        },
        {
          "name": "DEFAULT_FROM_EMAIL",
          "label": "DEFAULT_FROM_EMAIL",
          "default": "<DEFAULT_FROM_EMAIL>",
          "description": "From email for alerts"
        },
        {
          "name": "EMAIL_HOST",
          "label": "EMAIL_HOST",
          "default": "<EMAIL_HOST>",
          "description": "SMTP host"
        },
        {
          "name": "EMAIL_PORT",
          "label": "EMAIL_PORT",
          "default": "<EMAIL_PORT>",
          "description": "SMTP port"
        },
        {
          "name": "EMAIL_HOST_USER",
          "label": "EMAIL_HOST_USER",
          "default": "<EMAIL_HOST_USER>",
          "description": "SMTP user"
        },
        {
          "name": "EMAIL_HOST_PASSWORD",
          "label": "EMAIL_HOST_PASSWORD",
          "default": "<EMAIL_HOST_PASSWORD>",
          "description": "SMTP password"
        },
        {
          "name": "EMAIL_USE_TLS",
          "label": "EMAIL_USE_TLS",
          "default": "<True or False>",
          "description": "Use TLS for SMTP (`True` or `False`)"
        },
        {
          "name": "ALLOWED_HOSTS",
          "label": "ALLOWED_HOSTS",
          "default": "<ALLOWED_HOSTS>",
          "description": "array of valid hostnames for the server `['test.com','test2.com']` (default: `['*']`)"
        },
        {
          "name": "SUPERUSER_EMAIL",
          "label": "SUPERUSER_EMAIL",
          "default": "<SUPERUSER_EMAIL>",
          "description": "Superuser email"
        },
        {
          "name": "SUPERUSER_PASSWORD",
          "label": "SUPERUSER_PASSWORD",
          "default": "<SUPERUSER_PASSWORD>",
          "description": "Superuser password"
        },
        {
          "name": "REGENERATE_SETTINGS",
          "label": "REGENERATE_SETTINGS",
          "default": "True/False",
          "description": "Defaults to False. Set to true to always override the `local_settings.py` file with values from environment variables. Do not set to True if you have made manual modifications to this file."
        },
        {
          "name": "SITE_LOGO_URL",
          "label": "SITE_LOGO_URL",
          "default": "<SITE_LOGO_URL>",
          "description": "Custom site logo URL"
        },
        {
          "name": "SECRET_KEY",
          "label": "SECRET_KEY",
          "default": "<SECRET_KEY>",
          "description": "A secret key used for cryptographic signing. docker-healthchecks will generate a secure value if one does not exist"
        },
        {
          "name": "APPRISE_ENABLED",
          "label": "APPRISE_ENABLED",
          "default": "True/False",
          "description": "Defaults to False. A boolean that turns on/off the Apprise integration (https://github.com/caronc/apprise)"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/healthchecks/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Smart Home"],
      "title": "Homeassistant",
      "name": "Homeassistant",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/homeassistant/config</p>",
      "description": "[Home Assistant Core](https://www.home-assistant.io/) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.",
      "platform": "linux",
      "logo": "https://github.com/home-assistant/home-assistant.io/raw/next/source/images/favicon-192x192-full.png",
      "image": "linuxserver/homeassistant:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8123:8123/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/homeassistant/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Media Server"],
      "title": "Kanzi",
      "name": "Kanzi",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/kanzi/config</p>",
      "description": "[Kanzi](https://lexigr.am/), formerly titled Kodi-Alexa, this custom skill is the ultimate voice remote control for navigating Kodi. It can do anything you can think of (100+ intents). This container also contains lexigram-cli to setup Kanzi with an Amazon Developer Account and automatically deploy it to Amazon.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/kanzi.png",
      "image": "linuxserver/kanzi:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "INVOCATION_NAME",
          "label": "INVOCATION_NAME",
          "default": "kanzi",
          "description": "Specify an invocation name for this skill, use either kanzi or kod."
        },
        {
          "name": "URL_ENDPOINT",
          "label": "URL_ENDPOINT",
          "default": "https://server.com/kanzi/",
          "description": "Specify the URL at which the webserver is reachable either `https://kanzi.server.com/` or `https://server.com/kanzi/` Note the trailing slash **MUST** be included."
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/kanzi/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Proxy Server"],
      "title": "Ldap-auth",
      "name": "Ldap-auth",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "description": "[Ldap-auth](https://github.com/nginxinc/nginx-ldap-auth) software is for authenticating users who request protected resources from servers proxied by nginx. It includes a daemon (ldap-auth) that communicates with an authentication server, and a webserver daemon that generates an authentication cookie based on the user’s credentials. The daemons are written in Python for use with a Lightweight Directory Access Protocol (LDAP) authentication server (OpenLDAP or Microsoft Windows Active Directory 2003 and 2012).",
      "platform": "linux",
      "logo": "https://jumpcloud.com/wp-content/uploads/2016/12/LDAP_Logo-1420591101.jpg",
      "image": "linuxserver/ldap-auth:latest",
      "env": [
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "FERNETKEY",
          "label": "FERNETKEY",
          "default": "",
          "description": "Optionally define a custom fernet key, has to be base64-encoded 32-byte (only needed if container is frequently recreated, or if using multi-node setups, invalidating previous authentications)"
        },
        {
          "name": "CERTFILE",
          "label": "CERTFILE",
          "default": "",
          "description": "Point this to a certificate file to enable HTTP over SSL (HTTPS) for the ldap auth daemon"
        },
        {
          "name": "KEYFILE",
          "label": "KEYFILE",
          "default": "",
          "description": "Point this to the private key file, matching the certificate file referred to in CERTFILE"
        }
      ],
      "ports": ["8888:8888/tcp", "9000:9000/tcp"],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Family App Server"],
      "title": "Libreoffice",
      "name": "Libreoffice",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/libreoffice/config</p>",
      "description": "[LibreOffice](https://www.libreoffice.org/) is a free and powerful office suite, and a successor to OpenOffice.org (commonly known as OpenOffice). Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/libreoffice-logo.png",
      "image": "linuxserver/libreoffice:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/libreoffice/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Code Server"],
      "title": "Limnoria",
      "name": "Limnoria",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/limnoria/config</p>",
      "description": "[Limnoria](https://github.com/ProgVal/limnoria) A robust, full-featured, and user/programmer-friendly Python IRC bot, with many existing plugins. Successor of the well-known Supybot.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-limnoria/master/logo.png",
      "image": "linuxserver/limnoria:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["8080:8080/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/limnoria/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Tools"],
      "title": "Nano",
      "name": "Nano",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nano/config</p>",
      "description": "[Nano](https://nano.org/) is a digital payment protocol designed to be accessible and lightweight, with a focus on removing inefficiencies present in other cryptocurrencies. With ultrafast transactions and zero fees on a secure, green and decentralized network, this makes Nano ideal for everyday transactions.",
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Nano_logo.png/640px-Nano_logo.png",
      "image": "linuxserver/nano:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PEER_HOST",
          "label": "PEER_HOST",
          "default": "localhost",
          "description": "Default peer host (can be overidden with an array by command line options)"
        },
        {
          "name": "LIVE_GENESIS_PUB",
          "label": "LIVE_GENESIS_PUB",
          "default": "GENESIS_PUBLIC",
          "description": "Genesis block public key"
        },
        {
          "name": "LIVE_GENESIS_ACCOUNT",
          "label": "LIVE_GENESIS_ACCOUNT",
          "default": "nano_xxxxxx",
          "description": "Genesis block account"
        },
        {
          "name": "LIVE_GENESIS_WORK",
          "label": "LIVE_GENESIS_WORK",
          "default": "WORK_FOR_BLOCK",
          "description": "Genesis block proof of work"
        },
        {
          "name": "LIVE_GENESIS_SIG",
          "label": "LIVE_GENESIS_SIG",
          "default": "BLOCK_SIGNATURE",
          "description": "Genesis block signature"
        },
        {
          "name": "CLI_OPTIONS",
          "label": "CLI_OPTIONS",
          "default": "--config node.enable_voting=true",
          "description": "Node run command cli args"
        },
        {
          "name": "LMDB_BOOTSTRAP_URL",
          "label": "LMDB_BOOTSTRAP_URL",
          "default": "http://example.com/Nano_64_version_20.7z",
          "description": "HTTP/HTTPS endpoint to download a 7z file with the data.ldb to bootstrap to this node"
        }
      ],
      "ports": ["8075:8075/tcp", "7076:3000/tcp", "7077:3001/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/nano/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Tools"],
      "title": "Nano-wallet",
      "name": "Nano-wallet",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "description": "[Nano-wallet](https://nano.org/) is a digital payment protocol designed to be accessible and lightweight, with a focus on removing inefficiencies present in other cryptocurrencies. With ultrafast transactions and zero fees on a secure, green and decentralized network, this makes Nano ideal for everyday transactions. This container is a simple nginx wrapper for the light wallet located [here](https://github.com/linuxserver/nano-wallet). You will need to pass a valid RPC host when accessing this container.",
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Nano_logo.png/640px-Nano_logo.png",
      "image": "linuxserver/nano-wallet:latest",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Management Utility Server"],
      "title": "Netbox",
      "name": "Netbox",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/netbox/config</p>",
      "description": "[Netbox](https://github.com/netbox-community/netbox) is an IP address management (IPAM) and data center infrastructure management (DCIM) tool. Initially conceived by the network engineering team at DigitalOcean, NetBox was developed specifically to address the needs of network and infrastructure engineers. It is intended to function as a domain-specific source of truth for network operations.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/netbox-community/netbox/develop/docs/netbox_logo.png",
      "image": "linuxserver/netbox:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUPERUSER_EMAIL",
          "label": "SUPERUSER_EMAIL",
          "default": "<SUPERUSER_EMAIL>",
          "description": "Email address for `admin` account"
        },
        {
          "name": "SUPERUSER_PASSWORD",
          "label": "SUPERUSER_PASSWORD",
          "default": "<SUPERUSER_PASSWORD>",
          "description": "Password for `admin` account"
        },
        {
          "name": "ALLOWED_HOST",
          "label": "ALLOWED_HOST",
          "default": "<ALLOWED_HOST>",
          "description": "The hostname you will use to access the app (i.e., netbox.example.com)"
        },
        {
          "name": "DB_NAME",
          "label": "DB_NAME",
          "default": "<DB_NAME>",
          "description": "Database name (default: netbox)"
        },
        {
          "name": "DB_USER",
          "label": "DB_USER",
          "default": "<DB_USER>",
          "description": "Database user"
        },
        {
          "name": "DB_PASSWORD",
          "label": "DB_PASSWORD",
          "default": "<DB_PASSWORD>",
          "description": "Database password"
        },
        {
          "name": "DB_HOST",
          "label": "DB_HOST",
          "default": "<DB_HOST>",
          "description": "Database host (default: postgres)"
        },
        {
          "name": "DB_PORT",
          "label": "DB_PORT",
          "default": "<DB_PORT>",
          "description": "Database port (defaul: 5432)"
        },
        {
          "name": "REDIS_HOST",
          "label": "REDIS_HOST",
          "default": "<REDIS_HOST>",
          "description": "Redis host (default: redis)"
        },
        {
          "name": "REDIS_PORT",
          "label": "REDIS_PORT",
          "default": "<REDIS_PORT>",
          "description": "Redis port number (default: 6379)"
        },
        {
          "name": "REDIS_PASSWORD",
          "label": "REDIS_PASSWORD",
          "default": "<REDIS_PASSWORD>",
          "description": "Redis password (default: none)"
        },
        {
          "name": "REDIS_DB_TASK",
          "label": "REDIS_DB_TASK",
          "default": "<REDIS_DB_TASK>",
          "description": "Redis database ID for tasks (default: 0)"
        },
        {
          "name": "REDIS_DB_CACHE",
          "label": "REDIS_DB_CACHE",
          "default": "<REDIS_DB_CACHE>",
          "description": "Redis database ID for caching (default: 1)"
        },
        {
          "name": "BASE_PATH",
          "label": "BASE_PATH",
          "default": "<BASE_PATH>",
          "description": "The path you will use to access the app (i.e., /netbox, optional, default: none)"
        },
        {
          "name": "REMOTE_AUTH_ENABLED",
          "label": "REMOTE_AUTH_ENABLED",
          "default": "<REMOTE_AUTH_ENABLED>",
          "description": "Enable remote authentication (optional, default: False)"
        },
        {
          "name": "REMOTE_AUTH_BACKEND",
          "label": "REMOTE_AUTH_BACKEND",
          "default": "<REMOTE_AUTH_BACKEND>",
          "description": "Python path to the custom Django authentication backend to use for external user authentication (optional, default: netbox.authentication.RemoteUserBackend)"
        },
        {
          "name": "REMOTE_AUTH_HEADER",
          "label": "REMOTE_AUTH_HEADER",
          "default": "<REMOTE_AUTH_HEADER>",
          "description": "Name of the HTTP header which informs NetBox of the currently authenticated user. (optional, default: HTTP_REMOTE_USER)"
        },
        {
          "name": "REMOTE_AUTH_AUTO_CREATE_USER",
          "label": "REMOTE_AUTH_AUTO_CREATE_USER",
          "default": "<REMOTE_AUTH_AUTO_CREATE_USER>",
          "description": "If true, NetBox will automatically create local accounts for users authenticated via a remote service (optional, default: False)"
        },
        {
          "name": "REMOTE_AUTH_DEFAULT_GROUPS",
          "label": "REMOTE_AUTH_DEFAULT_GROUPS",
          "default": "<REMOTE_AUTH_DEFAULT_GROUPS>",
          "description": "The list of groups to assign a new user account when created using remote authentication (optional, default: [])"
        },
        {
          "name": "REMOTE_AUTH_DEFAULT_PERMISSIONS",
          "label": "REMOTE_AUTH_DEFAULT_PERMISSIONS",
          "default": "<REMOTE_AUTH_DEFAULT_PERMISSIONS>",
          "description": "A mapping of permissions to assign a new user account when created using remote authentication (optional, default: {})"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/netbox/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Management Utility Server"],
      "title": "Openssh-server",
      "name": "Openssh-server",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/openssh-server/config</p>",
      "description": "[Openssh-server](https://www.openssh.com/) is a sandboxed environment that allows ssh access without giving keys to the entire server. Giving ssh access via private key often means giving full access to the server. This container creates a limited and sandboxed environment that others can ssh into. The users only have access to the folders mapped and the processes running inside this container.",
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/en/6/65/OpenSSH_logo.png",
      "image": "linuxserver/openssh-server:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PUBLIC_KEY",
          "label": "PUBLIC_KEY",
          "default": "yourpublickey",
          "description": "Optional ssh public key, which will automatically be added to authorized_keys."
        },
        {
          "name": "PUBLIC_KEY_FILE",
          "label": "PUBLIC_KEY_FILE",
          "default": "/path/to/file",
          "description": "Optionally specify a file containing the public key (works with docker secrets)."
        },
        {
          "name": "PUBLIC_KEY_DIR",
          "label": "PUBLIC_KEY_DIR",
          "default": "/path/to/directory/containing/_only_/pubkeys",
          "description": "Optionally specify a directory containing the public keys (works with docker secrets)."
        },
        {
          "name": "PUBLIC_KEY_URL",
          "label": "PUBLIC_KEY_URL",
          "default": "https://github.com/username.keys",
          "description": "Optionally specify a URL containing the public key."
        },
        {
          "name": "SUDO_ACCESS",
          "label": "SUDO_ACCESS",
          "default": "false",
          "description": "Set to `true` to allow `linuxserver.io`, the ssh user, sudo access. Without `USER_PASSWORD` set, this will allow passwordless sudo access."
        },
        {
          "name": "PASSWORD_ACCESS",
          "label": "PASSWORD_ACCESS",
          "default": "false",
          "description": "Set to `true` to allow user/password ssh access. You will want to set `USER_PASSWORD` or `USER_PASSWORD_FILE` as well."
        },
        {
          "name": "USER_PASSWORD",
          "label": "USER_PASSWORD",
          "default": "password",
          "description": "Optionally set a sudo password for `linuxserver.io`, the ssh user. If this or `USER_PASSWORD_FILE` are not set but `SUDO_ACCESS` is set to true, the user will have passwordless sudo access."
        },
        {
          "name": "USER_PASSWORD_FILE",
          "label": "USER_PASSWORD_FILE",
          "default": "/path/to/file",
          "description": "Optionally specify a file that contains the password. This setting supersedes the `USER_PASSWORD` option (works with docker secrets)."
        },
        {
          "name": "USER_NAME",
          "label": "USER_NAME",
          "default": "linuxserver.io",
          "description": "Optionally specify a user name (Default:`linuxserver.io`)"
        }
      ],
      "ports": ["2222:2222/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/openssh-server/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Family App Server"],
      "title": "Paperless-ng",
      "name": "Paperless-ng",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/paperless-ng/config<br>mkdir -p /volume1/docker/paperless-ng/data</p>",
      "description": "[Paperless-ng](https://github.com/jonaswinkler/paperless-ng) is an application by Daniel Quinn and contributors that indexes your scanned documents and allows you to easily search for documents and store metadata alongside your documents.'",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/jonaswinkler/paperless-ng/master/resources/logo/web/png/Color%20logo%20with%20background.png",
      "image": "linuxserver/paperless-ng:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "REDIS_URL",
          "label": "REDIS_URL",
          "default": "",
          "description": "Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/paperless-ng/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/paperless-ng/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Family App Server"],
      "title": "Papermerge",
      "name": "Papermerge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/papermerge/config<br>mkdir -p /volume1/docker/papermerge/data</p>",
      "description": "[Papermerge](https://www.papermerge.com/) is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents. Instead of having piles of paper documents all over your desk, office or drawers - you can quickly scan them and configure your scanner to directly upload to Papermerge DMS.'",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/ciur/papermerge/master/artwork/logo.png",
      "image": "linuxserver/papermerge:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "REDIS_URL",
          "label": "REDIS_URL",
          "default": "",
          "description": "Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py"
        }
      ],
      "ports": ["8000:8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/papermerge/config"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/papermerge/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Chat Server"],
      "title": "Pidgin",
      "name": "Pidgin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pidgin/config</p>",
      "description": "[Pidgin](https://pidgin.im/) is a chat program which lets you log into accounts on multiple chat networks simultaneously. This means that you can be chatting with friends on XMPP and sitting in an IRC channel at the same time.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/pidgin-logo.png",
      "image": "linuxserver/pidgin:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pidgin/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Management Utility Server"],
      "title": "Rdesktop",
      "name": "Rdesktop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p><br>mkdir -p /volume1/docker/rdesktop/config</p>",
      "description": "[Rdesktop](http://xrdp.org/) - Ubuntu based containers containing full desktop environments in officially supported flavors accessible via RDP.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/rdesktop.png",
      "image": "linuxserver/rdesktop:latest",
      "privileged": true,
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3389:3389/tcp"],
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        },
        {
          "container": "/config",
          "bind": "/volume1/docker/rdesktop/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Backup and Sync Server"],
      "title": "Rsnapshot",
      "name": "Rsnapshot",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/rsnapshot/config<br>mkdir -p /volume1/docker/rsnapshot/.snapshots<br>mkdir -p /volume1/docker/rsnapshot/data</p>",
      "description": "[Rsnapshot](http://www.rsnapshot.org/) is a filesystem snapshot utility based on rsync. rsnapshot makes it easy to make periodic snapshots of local machines, and remote machines over ssh. The code makes extensive use of hard links whenever possible, to greatly reduce the disk space required.'",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/rsnapshot.png",
      "image": "linuxserver/rsnapshot:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/rsnapshot/config"
        },
        {
          "container": "/.snapshots",
          "bind": "/volume1/docker/rsnapshot/.snapshots"
        },
        {
          "container": "/data",
          "bind": "/volume1/docker/rsnapshot/data"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["Family App Server"],
      "title": "Snapdrop",
      "name": "Snapdrop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/snapdrop/config</p>",
      "description": "[Snapdrop](https://github.com/RobinLinus/snapdrop) A local file sharing in your browser. Inspired by Apple's Airdrop.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/RobinLinus/snapdrop/master/client/images/logo_transparent_512x512.png",
      "image": "linuxserver/snapdrop:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["80:80/tcp", "443:443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/snapdrop/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Webtop",
      "name": "Webtop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/webtop/config<br></p>",
      "description": "[Webtop](https://github.com/linuxserver/docker-webtop) - Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser.",
      "categories": ["Management Utility Server"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png",
      "image": "linuxserver/webtop:latest",
      "privileged": true,
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SUBFOLDER",
          "label": "SUBFOLDER",
          "default": "/",
          "description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/webtop/config"
        },
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "categories": ["VPN Server"],
      "title": "Wireguard",
      "name": "Wireguard",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wireguard/config<br></p>",
      "description": "[WireGuard®](https://www.wireguard.com/) is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPsec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running on embedded interfaces and super computers alike, fit for many different circumstances. Initially released for the Linux kernel, it is now cross-platform (Windows, macOS, BSD, iOS, Android) and widely deployable. It is currently under heavy development, but already it might be regarded as the most secure, easiest to use, and simplest VPN solution in the industry.",
      "platform": "linux",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Logo_of_WireGuard.png/320px-Logo_of_WireGuard.png",
      "image": "linuxserver/wireguard:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "SERVERURL",
          "label": "SERVERURL",
          "default": "wireguard.domain.com",
          "description": "External IP or domain name for docker host. Used in server mode. If set to `auto`, the container will try to determine and set the external IP automatically"
        },
        {
          "name": "SERVERPORT",
          "label": "SERVERPORT",
          "default": "51820",
          "description": "External port for docker host. Used in server mode."
        },
        {
          "name": "PEERS",
          "label": "PEERS",
          "default": "1",
          "description": "Number of peers to create confs for. Required for server mode. Can also be a list of names: `myPC,myPhone,myTablet` (alphanumeric only)"
        },
        {
          "name": "PEERDNS",
          "label": "PEERDNS",
          "default": "auto",
          "description": "DNS server set in peer/client configs (can be set as `8.8.8.8`). Used in server mode. Defaults to `auto`, which uses wireguard docker host's DNS via included CoreDNS forward."
        },
        {
          "name": "INTERNAL_SUBNET",
          "label": "INTERNAL_SUBNET",
          "default": "10.13.13.0",
          "description": "Internal subnet for the wireguard and server and peers (only change if it clashes). Used in server mode."
        },
        {
          "name": "ALLOWEDIPS",
          "label": "ALLOWEDIPS",
          "default": "0.0.0.0/0",
          "description": "The IPs/Ranges that the peers will be able to reach using the VPN connection. If not specified the default value is: '0.0.0.0/0, ::0/0' This will cause ALL traffic to route through the VPN, if you want split tunneling, set this to only the IPs you would like to use the tunnel AND the ip of the server's WG ip, such as 10.13.13.1."
        }
      ],
      "ports": ["51820:51820/udp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/wireguard/config"
        },
        {
          "container": "/lib/modules",
          "bind": "/lib/modules"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "categories": ["Management Utility Server"],
      "type": 1,
      "title": "Wireshark",
      "name": "Wireshark",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wireshark/config</p>",
      "description": "[Wireshark](https://www.wireshark.org/) is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. Wireshark development thrives thanks to the volunteer contributions of networking experts around the globe and is the continuation of a project started by Gerald Combs in 1998.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/wireshark-icon.png",
      "image": "linuxserver/wireshark:latest",
      "network": "host",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["3000:3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/wireshark/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Airsonic-advanced",
      "name": "Airsonic-advanced",
      "categories": ["Music Server"],
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/airsonic-advanced/config<br>mkdir -p /volume1/docker/airsonic-advanced/music<br>mkdir -p /volume1/docker/airsonic-advanced/playlists<br>mkdir -p /volume1/docker/airsonic-advanced/podcasts<br>mkdir -p /volume1/docker/airsonic-advanced/media</p>",
      "description": "[Airsonic-advanced](https://github.com/airsonic-advanced/airsonic-advanced) is a free, web-based media streamer, providing ubiquitious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/airsonic-banner.png",
      "image": "linuxserver/airsonic-advanced:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "CONTEXT_PATH",
          "label": "CONTEXT_PATH",
          "default": "<URL_BASE>",
          "description": "For setting url-base in reverse proxy setups."
        },
        {
          "name": "JAVA_OPTS",
          "label": "JAVA_OPTS",
          "default": "<options>",
          "description": "For passing additional java options."
        }
      ],
      "ports": ["4040:4040/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/airsonic-advanced/config"
        },
        {
          "container": "/music",
          "bind": "/volume1/docker/airsonic-advanced/music"
        },
        {
          "container": "/playlists",
          "bind": "/volume1/docker/airsonic-advanced/playlists"
        },
        {
          "container": "/podcasts",
          "bind": "/volume1/docker/airsonic-advanced/podcasts"
        },
        {
          "container": "/media",
          "bind": "/volume1/docker/airsonic-advanced/media"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Phpmyadmin",
      "name": "Phpmyadmin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/phpmyadmin/config</p>",
      "description": "[Phpmyadmin](https://github.com/phpmyadmin/phpmyadmin/) is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB.",
      "categories": ["Database Server"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/phpmyadmin-logo.png",
      "image": "linuxserver/phpmyadmin:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PMA_ARBITRARY",
          "label": "PMA_ARBITRARY",
          "default": "1",
          "description": "Set to `1` to allow you to connect to any server. Setting to `0` will only allow you to connect to specified hosts (See Application Setup)"
        },
        {
          "name": "PMA_ABSOLUTE_URI",
          "label": "PMA_ABSOLUTE_URI",
          "default": "https://phpmyadmin.example.com",
          "description": "Set the URL you will use to access the web frontend"
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/phpmyadmin/config"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Pixapop",
      "name": "Pixapop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pixapop/config<br>mkdir -p /volume1/docker/pixapop/photos</p>",
      "description": "[Pixapop](https://github.com/bierdok/pixapop) is an open-source single page application to view your photos in the easiest way possible.",
      "categories": ["Photos"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/pixapop.png",
      "image": "linuxserver/pixapop:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "APP_USERNAME",
          "label": "APP_USERNAME",
          "default": "admin",
          "description": "Specify a username to enable authentication."
        },
        {
          "name": "APP_PASSWORD",
          "label": "APP_PASSWORD",
          "default": "admin",
          "description": "Specify a password to enable authentication."
        }
      ],
      "ports": ["80:80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/pixapop/config"
        },
        {
          "container": "/photos",
          "bind": "/volume1/docker/pixapop/photos"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Syslog-ng",
      "name": "Syslog-ng",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/syslog-ng/config<br></p>",
      "description": "[syslog-ng](https://www.syslog-ng.com/products/open-source-log-management/) allows you to flexibly collect, parse, classify, rewrite and correlate logs from across your infrastructure and store or route them to log analysis tools.",
      "categories": ["Task Server"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/syslog-ng-logo.png",
      "image": "linuxserver/syslog-ng:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "1024",
          "description": "for GroupID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "100",
          "description": "for UserID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        }
      ],
      "ports": ["514:5514/udp", "601:6601/tcp", "6514:6514/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/volume1/docker/syslog-ng/config"
        },
        {
          "container": "/var/log",
          "bind": "/var/log"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "title": "Wowza",
      "description": "Streaming media server",
      "categories": ["Media Server"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wowza.png",
      "image": "sameersbn/wowza:4.1.2-8",
      "env": [
        {
          "name": "WOWZA_ACCEPT_LICENSE",
          "label": "Agree to Wowza EULA",
          "set": "yes"
        },
        {
          "name": "WOWZA_KEY",
          "label": "License key"
        }
      ],
      "ports": ["1935/tcp", "8086/tcp", "8087/tcp", "8088/tcp"],
      "volumes": [
        {
          "container": "/var/lib/wowza"
        }
      ]
    },
    {
      "type": 1,
      "title": "MySQL",
      "description": "The most popular open-source database",
      "categories": ["Database Server"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mysql.png",
      "image": "mysql:latest",
      "env": [
        {
          "name": "MYSQL_ROOT_PASSWORD",
          "label": "Root password"
        }
      ],
      "ports": ["3306/tcp"],
      "volumes": [
        {
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "type": 1,
      "title": "Gitlab CE",
      "description": "Open-source end-to-end software development platform",
      "note": "Default username is <b>root</b>. Check the <a href=\"https://docs.gitlab.com/omnibus/docker/README.html#after-starting-a-container\" target=\"_blank\">Gitlab documentation</a> to get started.",
      "categories": ["Code Server"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/gitlab_ce.png",
      "image": "gitlab/gitlab-ce:latest",
      "ports": ["80/tcp", "443/tcp", "22/tcp"],
      "volumes": [
        {
          "container": "/etc/gitlab"
        },
        {
          "container": "/var/log/gitlab"
        },
        {
          "container": "/var/opt/gitlab"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Adblocking"],
      "description": "AdGuard Home is a network-wide software for blocking ads & tracking. After you set it up, it’ll cover ALL your home devices, and you don’t need any client-side software for that. With the rise of Internet-Of-Things and connected devices, it becomes more and more important to be able to control your wnetwork.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "adguard home"
        }
      ],
      "image": "adguard/adguardhome:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/adguard.png",
      "name": "adguard",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "68:68/tcp",
        "68:68/udp",
        "80:80/tcp",
        "443:443/tcp",
        "853:853/tcp",
        "3000:3000/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Adguard",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Adguard/Workdir",
          "container": "/opt/adguardhome/work"
        },
        {
          "bind": "/portainer/Files/AppData/Adguard/Conf",
          "container": "/opt/adguardhome/conf"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "hotio/bazarr:latest",
      "logo": "https://www.bazarr.media/assets/img/logo.png",
      "name": "Bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Social", "Forum"],
      "description": "Zusam is a free and open-source way to self-host private forums for groups of friends.",
      "env": [
        {
          "default": "email@domain.example",
          "label": "INIT_USER",
          "name": "INIT_USER"
        },
        {
          "default": "initpass zusam",
          "label": "INIT_PASSWORD",
          "name": "INIT_PASSWORD"
        }
      ],
      "image": "zusam/zusam",
      "logo": "https://github.com/zusam/zusam/raw/master/app/src/assets/zusam_logo.png",
      "name": "Zusam",
      "platform": "linux",
      "ports": ["4180:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Zus.am",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Zusam",
          "container": "/zusam/data"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/bitwarden.png",
      "name": "vaultwarden",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": [":80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Vaultwarden",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Productivity"],
      "description": "Trilium Notes is a hierarchical note taking application with focus on building large personal knowledge bases",
      "env": [
        {
          "default": "/home/node/trilium-data",
          "label": "TRILIUM_DATA_DIR",
          "name": "TRILIUM_DATA_DIR"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "image": "zadam/trilium:latest",
      "logo": "https://www.saashub.com/images/app/service_logos/55/2901389fab77/large.png?1561117248",
      "name": "trilium",
      "platform": "linux",
      "ports": ["3388:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Trilium",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/trilium-data",
          "container": "/home/node/trilium-data"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "Lighting fast with a slick design, Kavita is a rocket fueled self-hosted digital library which supports a vast array of file formats. Install to start reading and share your server with your friends.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "kizaing/kavita:latest",
      "logo": "https://www.kavitareader.com/img/logo.png",
      "name": "kavita",
      "platform": "linux",
      "ports": ["5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Kavita",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/kavita",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "note": "Configuration <ul><li><b>/config</b> - Where Calibre-web should store it's database</li><li><b>/books</b> - Path to your calibre library metadata.db file</li></ul>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Photos"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Have recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "The recipe manager that allows you to manage your ever growing collection of digital recipes.",
      "image": "vabene1111/recipes:latest",
      "logo": "https://docs.tandoor.dev/logo_color.svg",
      "name": "Tandoor",
      "platform": "linux",
      "ports": ["3280:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tandoor",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Tandoor",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Dashboard"],
      "description": "Another application bookmark , with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/davos.png",
      "name": "davos",
      "note": "Configuration <ul><li><b>/config</b> - AppData Location</li><li><b>/downloads</b> - File Download Location</li></ul>",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["6595:6595/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/deluge-icon.png",
      "name": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "note": "<b>Configuration</b></br>First, go to duckdns site, register your subdomain and retrieve your token<br/>Then run the docker create command above with your subdomain(s) and token<br/>It will update your IP with the DuckDNS service every 5 minutes",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/emby.png",
      "name": "Emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/embystat.png",
      "name": "EmbyStat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utility.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "HTPC Manager, a front end for many htpc related applications. Uses the Hellowlol HTPC Manager fork.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Dashboard"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Dashboard"],
      "description": "A dead simple static Homepage for your server to keep your services on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/homer-dashboard.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Tools", "Dashboard"],
      "description": "Helps you organize your self-hosted services by making them accessible from a single place.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://dashy.to/img/dashy.png",
      "name": "Dashy",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/dashy.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Dashy",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "Koillection is a self-hosted collection manager created to keep track of physical (mostly) collections of any kind like books, DVDs, stamps, games..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://user-images.githubusercontent.com/20560781/80213166-0e560e00-8639-11ea-944e-4f79fdbcef55.png",
      "name": "Koillection",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/koillection.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Koillection",
      "type": 3
    },
    {
      "categories": ["Tools", "Productivity"],
      "description": "The to-do app to organize your life.| Before use create custom template and Edit: VIKUNJA_SERVICE_FRONTENDURL , VIKUNJA_API_URL & VIKUNJA_SERVICE_JWTSECRET",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://vikunja.io/images/vikunja.png",
      "name": "Vikunja",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/vikunja.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Vikunja",
      "type": 3
    },
    {
      "categories": ["Multimedia", "Audio"],
      "description": "Self hosted audiobook and podcast server",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://github.com/advplyr/audiobookshelf/raw/master/images/banner.svg",
      "name": "Audiobookshelf",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/audiobookshelf.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Audiobookshelf",
      "type": 3
    },
    {
      "categories": ["Tools", "Dashboard"],
      "description": "Fenrus is a Node application and requires NodeJS to run. Once NodeJS is installed you can run Fenrus",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://user-images.githubusercontent.com/958400/154829266-62206846-c6ef-4718-9910-2b83eb6aa41c.png",
      "name": "Fenrus",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/fenrus.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Fenrus",
      "type": 3
    },
    {
      "categories": ["Tools", "Authentication"],
      "description": "Authentik is an open-source Identity Provider focused on flexibility and versatility",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://goauthentik.io/img/icon_left_brand.svg",
      "name": "Authentik",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/authentik.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Authentik",
      "type": 3
    },
    {
      "categories": ["Multimedia", "Music"],
      "description": "Navidrome is an open source web-based music collection server and streamer. It gives you freedom to listen to your music collection from any browser or mobile device. It's like your personal Spotify!",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://github.com/navidrome/navidrome/raw/master/resources/logo-192x192.png",
      "name": "Navidrome",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/navidrome.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Navidrome",
      "type": 3
    },
    {
      "categories": ["Tools", "Dashboard"],
      "description": "Flame is self-hosted startpage for your server. Its design is inspired (heavily) by SUI. Flame is very easy to setup and use. With built-in editors, it allows you to setup your very own application hub in no time - no file editing necessary.",
      "image": "pawelmalak/flame",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/flame.png",
      "name": "flame-dashboard",
      "platform": "linux",
      "ports": ["5005:5005/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Flame-Dashboard",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/flame-dashboard",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Eufy Security Web Socket. Edit container and add username & password.",
      "env": [
        {
          "default": "InputUSER-email",
          "label": "USERNAME",
          "name": "USERNAME"
        },
        {
          "default": "InputPWD",
          "label": "PASSWORD",
          "name": "PASSWORD"
        }
      ],
      "image": "bropat/eufy-security-ws:latest",
      "logo": "https://github.com/bropat/eufy-security-ws/raw/master/docs/_media/eufy-security-ws.png",
      "name": "eufy-security-ws",
      "platform": "linux",
      "ports": ["3993:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Eufy Security WS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/eufy-security-ws",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jellyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "categories": ["Tools"],
          "description": "GoAccess for NGINX Proxy Manager Logs.",
          "env": [
            {
              "default": "1000",
              "label": "PUID",
              "name": "PUID"
            },
            {
              "default": "1000",
              "label": "PGID",
              "name": "PGID"
            },
            {
              "label": "TZ",
              "name": "TZ"
            },
            {
              "label": "PORT",
              "name": "PORT"
            }
          ],
          "logo": "https://www.hugeserver.com/kb/wp-content/uploads/2017/09/goaccess.png",
          "name": "GoAccessnpm",
          "platform": "linux",
          "repository": {
            "stackfile": "Template/Stack/goaccessnpm.yml",
            "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
          },
          "title": "GoAccess for NPM logs",
          "type": 3
        },
        {
          "categories": ["Tools"],
          "description": "Facebox detects and identifies faces in photos. You can teach facebox with as little as one sample image.",
          "env": [],
          "logo": "https://machinebox.io/assets/shared/static/img/machina.svg",
          "name": "Facebox",
          "platform": "linux",
          "repository": {
            "stackfile": "Template/Stack/facebox.yml",
            "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
          },
          "title": "Facebox",
          "type": 3
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/swag:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt / SWAG",
      "note": "Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.<ul><li>- Port 443 on the internet side of the router should be forwarded to this container's port 443.</li><li>- If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains can be www,ftp,cloud</li><li>- The container detects changes to url and subdomains, revokes existing certs and generates new ones during start.</li><li>- It also detects changes to the DHLEVEL parameter and replaces the dhparams file.</li><li>- If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file <code>docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd \u0026lt;username\u0026gt;</code>",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt / SWAG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Network"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/lidarr:release",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "An Enhanced drop in replacement for Mysql.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Network"],
      "description": "WIFI / LAN intruder detector",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "jokobsk/pi.alert",
      "logo": "https://raw.githubusercontent.com/pucherot/Pi.Alert/main/docs/img/1_devices.jpg",
      "name": "pi.alert",
      "platform": "linux",
      "ports": ["20211:20211/udp"],
      "restart_policy": "always",
      "title": "Pi.alert",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/pi.alert",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards. The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone.",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Tools"],
      "description": "MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools", "Network"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jc21/nginx-proxy-manager",
      "logo": "https://nginxproxymanager.com/icon.png",
      "name": "npm",
      "repository": {
        "stackfile": "Template/Stack/npm.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["8000:80/tcp"],
      "restart_policy": "always",
      "title": "Nginx Proxy Manager",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module (CAM). The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Network"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Overseerr is a free and open source software application for managing requests for your media library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/overseerr:release",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/overseerr-icon.png",
      "name": "Overseerr",
      "platform": "linux",
      "ports": ["5055:5055/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Overseerr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Overseerr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Web"],
      "description": "ownCloud is a self-hosted file sync and share server. It provides access to your data through a web interface, sync clients or WebDAV while providing a platform to view, sync and share across devices easily—all under your control. ownCloud’s open architecture is extensible via a simple but powerful API for applications and plugins and it works with any storage.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "OWNCLOUD_DOMAIN",
          "name": "OWNCLOUD_DOMAIN"
        },
        {
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "label": "ADMIN_USERNAME",
          "name": "ADMIN_USERNAME"
        },
        {
          "label": "ADMIN_PASSWORD",
          "name": "ADMIN_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/docker-library/docs/9d36b4ed7cabc35dbd3849272ba2bd7abe482172/owncloud/logo.png",
      "name": "Owncloud",
      "note": "The database user is owncloud and the database is owncloud.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/owncloud.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Owncloud",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "Petio is a third party companion app available to Plex server owners to allow their users to request, review and discover content.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/petio-icon.png",
      "name": "Petio",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/petio.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Petio",
      "type": 3
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Adblocking"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Sonarr, Radarr, Lidarr, and Readarr offering complete management of your indexers with no per app Indexer setup required (we do it all).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ghcr.io/linuxserver/prowlarr:develop",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/prowlarr.png",
      "name": "prowlarr",
      "platform": "linux",
      "ports": ["9696:9696/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Prowlarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Prowlarr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core - much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/radarr:release",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management", "Network"],
      "description": "SmokePing is a latency logging and graphing and alerting system. It consists of a daemon process which organizes the latency measurements and a CGI which presents the graphs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://user-images.githubusercontent.com/312873/35063615-acf68302-fbd8-11e7-91c5-0b3b6f5966c4.png",
      "name": "Snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/sonarr:release",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Tools"],
      "description": "Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "note": "<b>Port 8181</b> The webui for Tautulli's webui<br/></br>Configuration <ul><li><b>/config</b> - Storing Configuration and the Tautulli database</li><li><b>/logs</b> - Map to you plex logs (required for IP logging)</li></ul>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Wiki"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration where Transmission is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT\u0026gt;IP and HDHomeRun as input sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT\u0026gt;IP streaming. Multiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": "The Unifi-controller Controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "note": "Configuration <ul><li><b>/config</b> - This is where WebGrab+Plus will store it's configuration</li><li><b>/data</b> - This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.</li></ul>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Wiki"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/wikijs.png",
      "name": "Wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Tools", "Network"],
      "description": "It is a self-hosted monitoring tool like Uptime Robot",
      "image": "louislam/uptime-kuma:latest",
      "logo": "https://images.opencollective.com/uptime-kuma/29c5113/logo/256.png",
      "name": "uptime-kuma",
      "platform": "linux",
      "ports": ["3001:3001/tcp"],
      "restart_policy": "always",
      "title": "Uptime Kuma",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UptimeKuma",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Tools"],
      "description": "Dozzle is a small lightweight application with a web based interface to monitor Docker logs. It doesn’t store any log files. It is for live monitoring of your container logs only.",
      "image": "amir20/dozzle:latest",
      "logo": "https://dozzle.dev/favicon.ico",
      "name": "dozzle",
      "platform": "linux",
      "ports": ["8888:8080/tcp"],
      "restart_policy": "always",
      "title": "Dozzle",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Social"],
      "description": "Monica is a great open source personal relationship management system to organize the interactions with your loved ones.",
      "image": "monica",
      "logo": "https://raw.githubusercontent.com/docker-library/docs/b962028212dbd77c9531dbcf8d5a81db79d4a735/monica/logo.svg",
      "name": "monica",
      "platform": "linux",
      "ports": ["7777:80/tcp"],
      "restart_policy": "always",
      "title": "Monica",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/monica",
          "container": "/var/www/html/storage"
        }
      ]
    },
    {
      "categories": ["Network"],
      "description": "NetBox is an infrastructure resource modeling (IRM) application designed to empower network automation. Initially conceived by the network engineering team at DigitalOcean, NetBox was developed specifically to address the needs of network and infrastructure engineers.",
      "image": "netboxcommunity/netbox:latest",
      "logo": "https://github.com/TheLustriVA/xneo1_portainer_templates/raw/master/Images/netbox_icon.svg",
      "name": "netbox",
      "platform": "linux",
      "ports": ["8000:80/tcp"],
      "restart_policy": "always",
      "title": "Netbox",
      "type": 1
    },
    {
      "categories": ["Dashboard", "IoT"],
      "description": "Freeboard is a turn-key HTML-based 'engine' for dashboards. Besides a nice looking layout engine, it provides a plugin architecture for creating datasources (which fetch data) and widgets (which display data)— freeboard then does all the work to connect the two together.",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/freeboard.jpg",
      "name": "freeboard",
      "repository": {
        "stackfile": "Template/Stack/freeboard.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["8000:80/tcp"],
      "restart_policy": "always",
      "title": "Freeboard",
      "type": 3
    },
    {
      "categories": ["Finance"],
      "description": "Ghostfolio is an open source wealth management software built with web technology.",
      "logo": "https://avatars.githubusercontent.com/u/82473144?s=200",
      "name": "Ghostfolio",
      "repository": {
        "stackfile": "Template/Stack/ghostfolio.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["3663:80/tcp"],
      "restart_policy": "always",
      "title": "Ghostfolio",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "A self-hosted bookmark management tool.",
      "logo": "https://github.com/beromir/Servas/raw/main/docs/images/home.png",
      "name": "Servas",
      "repository": {
        "stackfile": "Template/Stack/servas.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["8456:80/tcp"],
      "restart_policy": "always",
      "title": "Servas",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "wallabag is a web application allowing you to save web pages for later reading. Click, save and read it when you want.",
      "logo": "https://www.wallabag.org/user/themes/boxify/img/logo-wallabag.svg",
      "name": "Wallabag",
      "repository": {
        "stackfile": "Template/Stack/wallabag.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "ports": ["8234:80/tcp"],
      "restart_policy": "always",
      "title": "Wallabag",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "Teleport allows engineers and security professionals to unify access for SSH servers, Kubernetes clusters, web applications, and databases across all environments.",
      "logo": "https://bookface-images.s3.amazonaws.com/logos/386100350818400a035ac8e0caa84111de3316eb.png",
      "name": "teleport",
      "repository": {
        "stackfile": "Template/Stack/teleport.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "platform": "linux",
      "restart_policy": "always",
      "title": "Teleport",
      "type": 3
    },
    {
      "categories": ["Dashboard", "Crypto", "Finance"],
      "description": "Cryptofolio is an open-source, and self-hosted solution for tracking your cryptocurrency holdings. It features a web interface, an Android mobile app, and a cross-platform desktop application for Windows, macOS, and Linux.",
      "image": "xtrendence/cryptofolio:latest",
      "logo": "https://i.imgur.com/5v8lzea.png",
      "name": "cryptofolio",
      "platform": "linux",
      "ports": ["7280:80/tcp"],
      "restart_policy": "always",
      "title": "Cryptofolio",
      "type": 1
    },
    {
      "categories": ["Dashboard", "IoT"],
      "description": "Node-RED provides a browser-based flow editor that makes it easy to wire together flows using the wide range of nodes in the palette.",
      "image": "nodered/node-red",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/node-red-icon.svg",
      "name": "nodered",
      "platform": "linux",
      "ports": ["1880:1880/tcp"],
      "restart_policy": "always",
      "title": "Nodered",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nodered",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Network"],
      "description": "Self-hosted website change detection monitoring.",
      "image": "dgtlmoon/changedetection.io",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/changedetection-custom.png",
      "name": "changedetection",
      "platform": "linux",
      "restart_policy": "always",
      "title": "Change Detection",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/changedetection",
          "container": "/datastore"
        }
      ]
    },
    {
      "categories": ["Presentation"],
      "description": "It is an open source HTML presentation framework. It enables anyone with a web browser to create fully featured and beautiful presentations for free | Production Mode",
      "image": "cloudogu/reveal.js",
      "logo": "https://pbs.twimg.com/profile_images/1260911777929400325/_ClbHpsz_400x400.jpg",
      "name": "revealjs",
      "platform": "linux",
      "ports": ["6060:8080/tcp"],
      "restart_policy": "always",
      "title": "Reveal.js",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/revealjs/docs/slides",
          "container": "/reveal/docs/slides"
        },
        {
          "bind": "/portainer/Files/AppData/Config/revealjs/scripts/test",
          "container": "/resources"
        }
      ]
    },
    {
      "categories": ["Network"],
      "description": "An easy to use Status Page for your websites and applications. Statping will automatically fetch the application and render a beautiful status page with tons of features for you to build an even better status page.",
      "image": "statping/statping:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/statping.png",
      "name": "statping",
      "platform": "linux",
      "ports": ["4040:8080/tcp"],
      "restart_policy": "always",
      "title": "Statping",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/statping",
          "container": "/app"
        }
      ]
    },
    {
      "categories": ["Network"],
      "description": "Network UPS Tools server",
      "image": "upshift/nut-upsd",
      "logo": "",
      "name": "nuts",
      "platform": "linux",
      "ports": ["3493:3493/tcp"],
      "restart_policy": "always",
      "title": "NUTS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/nuts",
          "container": "/app"
        }
      ]
    },
    {
      "categories": ["Browsers"],
      "description": "Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards.",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/Firefox.png",
      "name": "firefox",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/firefox.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Firefox",
      "type": 3
    },
    {
      "categories": ["Tools"],
      "description": "Your Budgets, Calendars, Meals, Inventory, Tasks, and so much more in one simple app.For everyone in your household.On all of your devices.In the cloud or self-hosted",
      "logo": "https://homechart.app/images/homechart.min.776793e5e4334866f0799e8a84b8448efb1b06cb2762b2bb20f99068ac36136c.png",
      "name": "homechart",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/homechart.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Homechart",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "Webtop - Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/webtop:ubuntu-kde",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png",
      "name": "webtop",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "always",
      "title": "Webtop",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebTop",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Ferdi is a messaging browser that allows you to combine your favourite messaging services into one application",
      "logo": "https://raw.githubusercontent.com/getferdi/server/master/logo.png",
      "name": "ferdi-server",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/ferdiserver.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Ferdi Server",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "Snippet Box is a simple self-hosted app for organizing your code snippets. It allows you to easily create, edit, browse and manage your snippets in various languages.",
      "logo": "https://raw.githubusercontent.com/getferdi/server/master/logo.png",
      "name": "snippet-box",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/snippetbox.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Snippet Box",
      "type": 3
    },
    {
      "categories": ["Social"],
      "description": "LittleLink is an open source DIY self-hosted alternative to services like Linktree and many.link. ",
      "logo": "https://littlelink.io/images/avatar@2x.png",
      "name": "littlelink-server",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/littlelink.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "ports": ["3000:3000/tcp"],
      "title": "Littlelink Server",
      "type": 3
    },
    {
      "categories": ["Downloaders"],
      "description": "A perfect Aria2 Docker image. Out of the box, just add download tasks and don't need to think about anything else.",
      "logo": "https://imgcdn.p3terx.com/post/20201113041845.jpg",
      "name": "aria2-pro",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/aria2pro.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Aria2 Pro",
      "type": 3
    },
    {
      "categories": ["Photos", "AI"],
      "description": "PhotoPrism is an AI-powered app for browsing, organizing & sharing your photo collection. It makes use of the latest technologies to tag and find pictures automatically without getting in your way.| Copy as Custom stack and EDIT environment variables.",
      "logo": "https://photoprism.app/static/img/logo.svg",
      "name": "photoprism",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/photoprism.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Photoprism",
      "type": 3
    },
    {
      "categories": ["API"],
      "description": "Apprise API was designed to easily fit into existing (and new) eco-systems that are looking for a simple notification solution.70+ services",
      "logo": "https://raw.githubusercontent.com/caronc/apprise/master/apprise/assets/themes/default/apprise-logo.png",
      "name": "apprise-api",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/apprise.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Apprise-API",
      "type": 3
    },
    {
      "categories": ["Network"],
      "description": "IPerf3 Docker Build for Network Performance and Bandwidth Testing",
      "logo": "",
      "name": "iperf",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/iperf.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "iperf",
      "type": 3
    },
    {
      "categories": ["Docker"],
      "description": "Lazytainer monitors network traffic to containers. If there is traffic, the container runs, otherwise the container is stopped/paused.",
      "logo": "",
      "name": "lazytainer",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/lazytainer.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Lazytainer",
      "type": 3
    },
    {
      "categories": ["Dashboard"],
      "description": "Homepage is a new dashboard implementation that creates a super fast static site.",
      "logo": "https://raw.githubusercontent.com/benphelps/homepage/main/images/preview.png",
      "name": "homepage",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/homepage.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Homepage",
      "type": 3
    },
    {
      "categories": ["Finance"],
      "description": "I hate money is a web application made to ease shared budget management. It keeps track of who bought what, when, and for whom; and helps to settle the bills.",
      "logo": "",
      "name": "ihatemoney",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/ihatemoney.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "I hate money",
      "type": 3
    },
    {
      "categories": ["Finance"],
      "description": "OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle and inspired by YNAB and Buckets.",
      "logo": "https://github.com/TheAxelander/OpenBudgeteer/raw/master/assets/banner.png",
      "name": "openbudgeteer",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/openbudgeteer.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "OpenBudgeteer",
      "type": 3
    },
    {
      "categories": ["Multimedia"],
      "description": "Fireshare: Share your game clips, videos, or other media via unique links.",
      "logo": "https://github.com/ShaneIsrael/fireshare/raw/main/app/client/src/assets/logo.png",
      "name": "fireshare",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/fireshare.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Fireshare",
      "type": 3
    },
    {
      "categories": ["Downloading"],
      "description": "Peer-to-peer file transfers in your browser",
      "logo": "https://raw.githubusercontent.com/kern/filepizza/master/src/static/images/wordmark.png",
      "name": "filepizza",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/filepizza.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Filepizza",
      "type": 3
    },
    {
      "categories": ["Dashboard"],
      "description": "Jump is yet another self-hosted startpage for your server designed to be simple, stylish, fast and secure.",
      "logo": "",
      "name": "jump",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/jump.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Jump",
      "type": 3
    },
    {
      "categories": ["Productivity"],
      "description": "Hasty Paste is a fast and minimal paste bin, written in Python using Quart.",
      "logo": "",
      "name": "hasty-paste",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/hasty-paste.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Hasty-Paste",
      "type": 3
    },
    {
      "categories": ["Wiki"],
      "description": "Xwiki s a free wiki software platform written in Java with a design emphasis on extensibility. XWiki is an enterprise wiki.",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/e/e2/Logo-xwikiorange.svg",
      "name": "xwiki",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/xwiki.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Xwiki",
      "type": 3
    },
    {
      "categories": ["Productivity"],
      "description": "Leantime is an open source project management solution to make your ideas reality.",
      "logo": "https://s3-us-west-2.amazonaws.com/leantime-website/wp-content/uploads/2022/07/24022056/logo-large.png",
      "name": "leantime",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/leantime.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Leantime",
      "type": 3
    },
    {
      "categories": ["Entertainment"],
      "description": "Jellyseerr is a free and open source fork of Overseerr for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Jellyfin!",
      "logo": "https://raw.githubusercontent.com/Fallenbagel/jellyseerr/develop/public/logo_full.svg",
      "name": "jellyseer",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/jellyseer.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Jellyseer",
      "type": 3
    },
    {
      "categories": ["Productivity"],
      "description": "Trudesk is an Open Source Help Desk Software and Ticketing System",
      "logo": "https://trudesk.io/wp-content/uploads/2019/10/logo-med.png",
      "name": "trudesk",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/trudesk.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Trudesk",
      "type": 3
    },
    {
      "categories": ["System"],
      "description": "Dashdot is a modern server dashboard, running on the latest tech, designed with glassmorphism in mind. It is intended to be used for smaller VPS and private servers.",
      "logo": "https://github.com/MauriceNino/dashdot/raw/main/.github/images/banner_muted.png",
      "name": "dashdot",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/dashdot.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Dashdot",
      "type": 3
    },
    {
      "categories": ["Productivity"],
      "description": "Open source no-code database and Airtable alternative.Create your own online database without technical experience. Our user friendly no-code tool gives you the powers of a developer without leaving your browser.",
      "logo": "https://baserow.io/_nuxt/img/logo.1421f77.svg",
      "name": "Baserow",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/baserow.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Baserow",
      "type": 3
    },
    {
      "categories": ["Smart Home"],
      "description": "BroadlinkManager is a Flask powerd, easy to use system that hepls you to work with Broadlink Devices.",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/broadlink.png",
      "name": "broadlink-manager",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/broadlink-manager.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Broadlink Manager",
      "type": 3
    },
    {
      "categories": ["Smart Home"],
      "description": "HomeKit support for the impatient.",
      "logo": "https://raw.githubusercontent.com/homebridge/branding/master/logos/homebridge-color-round-stylized.png",
      "name": "homebridge",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/homebridge.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Homebridge",
      "type": 3
    },
    {
      "categories": ["Video", "AI"],
      "description": "A complete and local NVR designed for Home Assistant with AI object detection. Uses OpenCV and Tensorflow to perform realtime object detection locally for IP cameras.",
      "logo": "https://raw.githubusercontent.com/blakeblackshear/frigate/master/docs/static/img/frigate.png",
      "name": "frigatenvr",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/frigatenvr.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Frigate NVR",
      "type": 3
    },
    {
      "categories": ["Analytics"],
      "description": "Umami is a simple, easy to use, self-hosted web analytics solution. The goal is to provide you with a friendlier, privacy-focused alternative to Google Analytics and a free, open-sourced alternative to paid solutions",
      "logo": "https://icons.duckduckgo.com/ip3/umami.is.ico",
      "name": "umami",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/umami.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "ports": ["3000:3000/tcp"],
      "title": "Umami.is",
      "type": 3
    },
    {
      "categories": ["Analytics"],
      "description": "Google Analytics alternative that protects your data and your customers' privacy",
      "logo": "https://gallery.ncnet.nl/upload/2020/05/22/20200522171613-9205fa32.png",
      "name": "matomo",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/matomo.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "ports": ["8282:80/tcp"],
      "title": "Matomo",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "Simple room management system for n.eko. Self hosted rabb.it alternative. --Please add .env file as stated in neko.yml",
      "logo": "https://raw.githubusercontent.com/m1k1o/neko/master/docs/_media/logo.png",
      "name": "neko",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/neko.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Neko",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "Create your own platform on the web. Ghost is a powerful app for new-media creators to publish, share, and grow a business around their content. It comes with modern tools to build a website, publish content, send newsletters & offer paid subscriptions to members.",
      "logo": "https://ghost.org/images/docs/logos/ghost-logo-orb.png",
      "name": "ghost",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/ghost.yml",
        "url": "https://github.com/TheLustriVA/xneo1_portainer_templates"
      },
      "title": "Ghost",
      "type": 3
    },
    {
      "categories": ["Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/xneo1/portainer_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "AdGuard Home is a network-wide software for blocking ads & tracking. After you set it up, it’ll cover ALL your home devices, and you don’t need any client-side software for that. With the rise of Internet-Of-Things and connected devices, it becomes more and more important to be able to control your whole network.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "adguard home"
        }
      ],
      "image": "adguard/adguardhome:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/adguard.png",
      "name": "adguard",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "68:68/tcp",
        "68:68/udp",
        "80:80/tcp",
        "443:443/tcp",
        "853:853/tcp",
        "3000:3000/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Adguard",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Adguard/Workdir",
          "container": "/opt/adguardhome/work"
        },
        {
          "bind": "/portainer/Files/AppData/Adguard/Conf",
          "container": "/opt/adguardhome/conf"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available \u003ca href='https://docs.authelia.com/deployment/deployment-ha'\u003ehere\u003c/a\u003e.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available \u003ca href='https://docs.authelia.com/deployment/deployment-ha'\u003ehere\u003c/a\u003e.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/bazarr.png",
      "name": "Bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "bitwardenrs/server:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/bitwarden.png",
      "name": "bitwardenrs",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": [":80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bitwarden RS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bitwarden-rs",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/bookstack/docker-stack.yml",
        "url": "https://github.com/mikestraney/portainer-templates"
      },
      "title": "Bookstack",
      "type": 2
    },
    {
      "type": 1,
      "title": "Caddy",
      "description": "HTTP/2 web server with automatic HTTPS",
      "categories": ["webserver"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/caddy.png",
      "image": "abiosoft/caddy:latest",
      "ports": ["80/tcp", "443/tcp", "2015/tcp"],
      "volumes": [
        {
          "container": "/root/.caddy"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "ave recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "type": 2,
      "title": "CockroachDB",
      "description": "CockroachDB cluster",
      "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/cockroachdb/docker-stack.yml"
      }
    },
    {
      "type": 4,
      "title": "CockroachDB",
      "description": "CockroachDB cluster",
      "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
      "stackfile": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/stacks/cockroachdb/edge/docker-stack.yml"
    },
    {
      "type": 1,
      "title": "CockroachDB",
      "description": "An open-source, survivable, strongly consistent, scale-out SQL database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
      "image": "cockroachdb/cockroach:latest",
      "ports": ["26257/tcp", "8080/tcp"],
      "volumes": [
        {
          "container": "/cockroach/cockroach-data"
        }
      ],
      "command": "start --insecure"
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "CommandBox",
      "description": "ColdFusion (CFML) CLI",
      "categories": ["development"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-commandbox.png",
      "image": "ortussolutions/commandbox:latest",
      "env": [
        {
          "name": "CFENGINE",
          "set": "lucee@4.5"
        }
      ],
      "ports": ["8080/tcp", "8443/tcp"]
    },
    {
      "type": 1,
      "title": "ContentBox",
      "description": "Open-source modular CMS",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-contentbox.png",
      "image": "ortussolutions/contentbox:latest",
      "env": [
        {
          "name": "express",
          "set": "true"
        },
        {
          "name": "install",
          "set": "true"
        },
        {
          "name": "CFENGINE",
          "set": "lucee@4.5"
        }
      ],
      "ports": ["8080/tcp", "8443/tcp"],
      "volumes": [
        {
          "container": "/data/contentbox/db"
        },
        {
          "container": "/app/includes/shared/media"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "type": 1,
      "title": "CrateDB",
      "description": "An open-source distributed SQL database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cratedb.png",
      "image": "crate:latest",
      "ports": ["4200/tcp", "4300/tcp"],
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "type": 1,
      "title": "Datadog agent",
      "description": "Collect events and metrics",
      "categories": ["Monitoring"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
      "image": "datadog/agent:latest",
      "env": [
        {
          "name": "DD_API_KEY",
          "label": "Datadog API key"
        }
      ],
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock",
          "readonly": true
        },
        {
          "container": "/host/sys/fs/cgroup",
          "bind": "/sys/fs/cgroup",
          "readonly": true
        },
        {
          "container": "/host/proc",
          "bind": "/proc",
          "readonly": true
        }
      ]
    },
    {
      "title": "Datadog agent",
      "type": 2,
      "categories": ["Monitoring"],
      "description": "Collect events and metrics",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
      "platform": "linux",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/datadog-agent/docker-stack.yml"
      },
      "env": [
        {
          "name": "API_KEY",
          "label": "Datadog API key"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/davos.png",
      "name": "davos",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to \u003ca href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'\u003ethis page\u003c/a\u003e for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/deluge-icon.png",
      "namme": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "Drupal",
      "description": "Open-source content management framework",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/drupal.png",
      "image": "drupal:latest",
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/duckdns.png",
      "name": "duckdns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "type": 1,
      "title": "Elasticsearch",
      "description": "Open-source search and analytics engine",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/elasticsearch.png",
      "image": "elasticsearch:latest",
      "ports": ["9200/tcp", "9300/tcp"],
      "volumes": [
        {
          "container": "/usr/share/elasticsearch/data"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/emby.png",
      "name": "Emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/embystat.png",
      "name": "EmbyStat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "File browser",
      "description": "A web file manager",
      "note": "Default credentials: admin/admin",
      "categories": ["filesystem", "storage"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/filebrowser.png",
      "image": "filebrowser/filebrowser:latest",
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/srv"
        }
      ],
      "command": "--port 80 --database /data/database.db --root /srv"
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "type": 1,
      "title": "Ghost",
      "description": "Free and open-source blogging platform",
      "categories": ["blog"],
      "note": "Access the blog management interface under <code>/ghost/</code>.",
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ghost.png",
      "image": "ghost:latest",
      "ports": ["2368/tcp"],
      "volumes": [
        {
          "container": "/var/lib/ghost/content"
        }
      ]
    },
    {
      "type": 1,
      "title": "Gitlab CE",
      "description": "Open-source end-to-end software development platform",
      "note": "Default username is <b>root</b>. Check the <a href=\"https://docs.gitlab.com/omnibus/docker/README.html#after-starting-a-container\" target=\"_blank\">Gitlab documentation</a> to get started.",
      "categories": ["development", "project-management"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/gitlab_ce.png",
      "image": "gitlab/gitlab-ce:latest",
      "ports": ["80/tcp", "443/tcp", "22/tcp"],
      "volumes": [
        {
          "container": "/etc/gitlab"
        },
        {
          "container": "/var/log/gitlab"
        },
        {
          "container": "/var/opt/gitlab"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "Httpd",
      "description": "Open-source HTTP server",
      "categories": ["webserver"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/httpd.png",
      "image": "httpd:latest",
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/usr/local/apache2/htdocs/"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation \u003ca href='https://github.com/invoiceninja/dockerfiles'\u003ehere\u003c/a\u003e. ",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/invoice-ninja/docker-stack.yml",
        "url": "https://github.com/mikestraney/portainer-templates"
      },
      "title": "Invoice Ninja",
      "type": 2
    },
    {
      "type": 2,
      "title": "IronFunctions",
      "description": "Open-source serverless computing platform",
      "note": "Deploys the IronFunctions API and UI.",
      "categories": ["serverless"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/ironfunctions/docker-stack.yml"
      }
    },
    {
      "type": 1,
      "title": "IronFunctions API",
      "description": "Open-source serverless computing platform",
      "categories": ["serverless"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "image": "iron/functions:latest",
      "ports": ["8080/tcp"],
      "volumes": [
        {
          "container": "/app/data"
        }
      ],
      "privileged": true
    },
    {
      "type": 1,
      "title": "IronFunctions UI",
      "description": "Open-source user interface for IronFunctions",
      "categories": ["serverless"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "image": "iron/functions-ui:latest",
      "ports": ["4000/tcp"],
      "volumes": [
        {
          "container": "/app/data"
        }
      ],
      "env": [
        {
          "name": "API_URL",
          "label": "API URL"
        }
      ],
      "privileged": true
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "type": 1,
      "title": "Jenkins",
      "description": "Open-source continuous integration tool",
      "categories": ["continuous-integration"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/jenkins.png",
      "image": "jenkins/jenkins:lts",
      "ports": ["8080/tcp", "50000/tcp"],
      "env": [
        {
          "name": "JENKINS_OPTS",
          "label": "Jenkins options"
        }
      ],
      "volumes": [
        {
          "container": "/var/jenkins_home"
        }
      ]
    },
    {
      "type": 1,
      "title": "Joomla",
      "description": "Another free and open-source CMS",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/joomla.png",
      "image": "joomla:latest",
      "env": [
        {
          "name": "JOOMLA_DB_HOST",
          "label": "MySQL database host",
          "type": "container"
        },
        {
          "name": "JOOMLA_DB_PASSWORD",
          "label": "Database password"
        }
      ],
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd \u0026lt;username\u0026gt;",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/swag:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/letsencrypt.png",
      "name": "letsencrypt / SWAG",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt / SWAG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "type": 1,
      "title": "Magento 2",
      "description": "Open-source e-commerce platform",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/magento.png",
      "image": "alankent/gsd:latest",
      "ports": ["80/tcp", "3000/tcp", "3001/tcp"],
      "volumes": [
        {
          "container": "/var/www/html/"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "MariaDB",
      "description": "Performance beyond MySQL",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mariadb.png",
      "image": "mariadb:latest",
      "env": [
        {
          "name": "MYSQL_ROOT_PASSWORD",
          "label": "Root password"
        }
      ],
      "ports": ["3306/tcp"],
      "volumes": [
        {
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "type": 1,
      "title": "Mautic",
      "description": "Open-source marketing automation platform",
      "categories": ["marketing"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mautic.png",
      "image": "mautic/mautic:latest",
      "env": [
        {
          "name": "MAUTIC_DB_HOST",
          "label": "MySQL database host",
          "type": "container"
        },
        {
          "name": "MAUTIC_DB_PASSWORD",
          "label": "Database password"
        }
      ],
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "type": 2,
      "title": "Microsoft OMS Agent",
      "description": "Microsoft Operations Management Suite Linux agent.",
      "categories": ["OPS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/microsoft-oms/docker-stack.yml"
      },
      "env": [
        {
          "name": "AZURE_WORKSPACE_ID",
          "label": "Workspace ID",
          "description": "Azure Workspace ID"
        },
        {
          "name": "AZURE_PRIMARY_KEY",
          "label": "Primary key",
          "description": "Azure primary key"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "type": 1,
      "title": "Minio",
      "description": "A distributed object storage server built for cloud applications and devops",
      "categories": ["storage"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/minio.png",
      "image": "minio/minio:latest",
      "ports": ["9000/tcp"],
      "env": [
        {
          "name": "MINIO_ACCESS_KEY",
          "label": "Minio access key"
        },
        {
          "name": "MINIO_SECRET_KEY",
          "label": "Minio secret key"
        }
      ],
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/root/.minio"
        }
      ],
      "command": "server /data"
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "type": 1,
      "title": "Mongo",
      "description": "Open-source document-oriented database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mongo.png",
      "image": "mongo:latest",
      "ports": ["27017/tcp"],
      "volumes": [
        {
          "container": "/data/db"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "type": 1,
      "title": "MySQL",
      "description": "The most popular open-source database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mysql.png",
      "image": "mysql:latest",
      "env": [
        {
          "name": "MYSQL_ROOT_PASSWORD",
          "label": "Root password"
        }
      ],
      "ports": ["3306/tcp"],
      "volumes": [
        {
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/nextcloud/docker-stack.yml",
        "url": "https://github.com/mikestraney/portainer-templates"
      },
      "title": "Nextcloud",
      "type": 2
    },
    {
      "type": 2,
      "title": "NextcloudStack",
      "description": "Nextcloud setup with a MySQL database",
      "note": "Deploys a Nextcloud instance connected to a MySQL database.",
      "categories": ["Cloud"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/nextcloud-icon.png",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/nextcloud/docker-stack.yml"
      },
      "env": [
        {
          "label": "MYSQL_PASSWORD",
          "name": "mypassword",
          "description": "password for sql"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "myrpassword",
          "description": "root password for sql"
        }
      ]
    },
    {
      "type": 1,
      "title": "Nginx",
      "description": "High performance web server",
      "categories": ["webserver"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/nginx.png",
      "image": "nginx:latest",
      "ports": ["80/tcp", "443/tcp"],
      "volumes": [
        {
          "container": "/etc/nginx"
        },
        {
          "container": "/usr/share/nginx/html"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jc21/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "env": [
        {
          "label": "DB_SQLITE_FILE",
          "name": "DB_SQLITE_FILE",
          "default": "/data/database.sqlite"
        }
      ],
      "ports": ["80:8080/tcp", "81:8181/tcp", "443:4443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/data",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/letsencrypt",
          "container": "/etc/letsencrypt"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "type": 1,
      "title": "Odoo",
      "description": "Open-source business apps",
      "categories": ["project-management"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/odoo.png",
      "image": "odoo:latest",
      "env": [
        {
          "name": "HOST",
          "label": "PostgreSQL database host",
          "type": "container"
        },
        {
          "name": "USER",
          "label": "Database user"
        },
        {
          "name": "PASSWORD",
          "label": "Database password"
        }
      ],
      "ports": ["8069/tcp"],
      "volumes": [
        {
          "container": "/var/lib/odoo"
        },
        {
          "container": "/mnt/extra-addons"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "type": 2,
      "title": "OpenFaaS",
      "name": "func",
      "description": "Serverless functions made simple",
      "note": "Deploys the API gateway and sample functions. You can access the UI on port 8080. <b>Warning</b>: the name of the stack must be 'func'.",
      "categories": ["serverless"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/openfaas.png",
      "repository": {
        "url": "https://github.com/openfaas/faas",
        "stackfile": "docker-compose.yml"
      }
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article \u003ca href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'\u003ehere\u003c/a\u003e if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "Plesk",
      "description": "WebOps platform and hosting control panel",
      "categories": ["CMS"],
      "platform": "linux",
      "note": "Default credentials: admin / changeme",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plesk.png",
      "image": "plesk/plesk:latest",
      "ports": [
        "21/tcp",
        "80/tcp",
        "443/tcp",
        "8880/tcp",
        "8443/tcp",
        "8447/tcp"
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "Plone",
      "description": "A free and open-source CMS built on top of Zope",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plone.png",
      "image": "plone:latest",
      "ports": ["8080/tcp"],
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "type": 2,
      "title": "Portainer Agent",
      "description": "Manage all the resources in your Swarm cluster",
      "note": "The agent will be deployed globally inside your cluster and available on port 9001.",
      "categories": ["portainer"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/portainer.png",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/portainer-agent/docker-stack.yml"
      }
    },
    {
      "type": 1,
      "title": "PostgreSQL",
      "description": "The most advanced open-source database",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/postgres.png",
      "image": "postgres:latest",
      "env": [
        {
          "name": "POSTGRES_USER",
          "label": "Superuser"
        },
        {
          "name": "POSTGRES_PASSWORD",
          "label": "Superuser password"
        }
      ],
      "ports": ["5432/tcp"],
      "volumes": [
        {
          "container": "/var/lib/postgresql/data"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation \u003ca href='https://hub.docker.com/r/shenxn/protonmail-bridge'/\u003ehere\u003c/a\u003e to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "RabbitMQ",
      "description": "Highly reliable enterprise messaging system",
      "categories": ["messaging"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/rabbitmq.png",
      "image": "rabbitmq:latest",
      "ports": ["5671/tcp", "5672/tcp"],
      "volumes": [
        {
          "container": "/var/lib/rabbitmq"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "type": 1,
      "title": "Redis",
      "description": "Open-source in-memory data structure store",
      "categories": ["database"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redis.png",
      "image": "redis:latest",
      "ports": ["6379/tcp"],
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "type": 1,
      "title": "Redmine",
      "description": "Open-source project management tool",
      "categories": ["project-management"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redmine.png",
      "image": "redmine:latest",
      "ports": ["3000/tcp"],
      "volumes": [
        {
          "container": "/usr/src/redmine/files"
        }
      ]
    },
    {
      "type": 1,
      "title": "Registry",
      "description": "Docker image registry",
      "categories": ["docker"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/registry.png",
      "image": "registry:latest",
      "ports": ["5000/tcp"],
      "volumes": [
        {
          "container": "/var/lib/registry"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "type": 1,
      "title": "Scality S3",
      "description": "Standalone AWS S3 protocol server",
      "categories": ["storage"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/scality-s3.png",
      "image": "scality/s3server",
      "ports": ["8000/tcp"],
      "env": [
        {
          "name": "SCALITY_ACCESS_KEY",
          "label": "Scality S3 access key"
        },
        {
          "name": "SCALITY_SECRET_KEY",
          "label": "Scality S3 secret key"
        }
      ],
      "volumes": [
        {
          "container": "/usr/src/app/localData"
        },
        {
          "container": "/usr/src/app/localMetadata"
        }
      ]
    },
    {
      "type": 1,
      "title": "Sematext Docker Agent",
      "description": "Collect logs, metrics and docker events",
      "categories": ["Log Management", "Monitoring"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
      "image": "sematext/sematext-agent-docker:latest",
      "name": "sematext-agent",
      "privileged": true,
      "env": [
        {
          "name": "LOGSENE_TOKEN",
          "label": "Logs token"
        },
        {
          "name": "SPM_TOKEN",
          "label": "SPM monitoring token"
        }
      ],
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        }
      ]
    },
    {
      "title": "Sematext Docker Agent",
      "type": 2,
      "categories": ["Log Management", "Monitoring"],
      "description": "Collect logs, metrics and docker events",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
      "platform": "linux",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/sematext-agent-docker/docker-stack.yml"
      },
      "env": [
        {
          "name": "LOGSENE_TOKEN",
          "label": "Logs token"
        },
        {
          "name": "SPM_TOKEN",
          "label": "SPM monitoring token"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/robocopAlpha/selfhosted_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/snibox.png",
      "name": "Snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "type": 1,
      "title": "Solr",
      "description": "Open-source enterprise search platform",
      "categories": ["search-engine"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/solr.png",
      "image": "solr:latest",
      "ports": ["8983/tcp"],
      "volumes": [
        {
          "container": "/opt/solr/mydata"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "type": 1,
      "title": "SQL Server",
      "description": "Microsoft SQL Server on Linux",
      "categories": ["database"],
      "platform": "linux",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "image": "microsoft/mssql-server-linux:2017-GA",
      "ports": ["1433/tcp"],
      "env": [
        {
          "name": "ACCEPT_EULA",
          "set": "Y"
        },
        {
          "name": "SA_PASSWORD",
          "label": "SA password"
        }
      ]
    },
    {
      "type": 1,
      "title": "SQL Server",
      "description": "Microsoft SQL Server Developer for Windows containers",
      "categories": ["database"],
      "platform": "windows",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "image": "microsoft/mssql-server-windows-developer:latest",
      "ports": ["1433/tcp"],
      "env": [
        {
          "name": "ACCEPT_EULA",
          "set": "Y"
        },
        {
          "name": "sa_password",
          "label": "SA password"
        }
      ],
      "volumes": [
        {
          "container": "C:/temp/"
        }
      ]
    },
    {
      "type": 1,
      "title": "SQL Server Express",
      "description": "Microsoft SQL Server Express for Windows containers",
      "categories": ["database"],
      "platform": "windows",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "image": "microsoft/mssql-server-windows-express:latest",
      "ports": ["1433/tcp"],
      "env": [
        {
          "name": "ACCEPT_EULA",
          "set": "Y"
        },
        {
          "name": "sa_password",
          "label": "SA password"
        }
      ],
      "volumes": [
        {
          "container": "C:/temp/"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available \u003ca href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/\u003ehere\u003c/a\u003e.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT\u0026gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT\u0026gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "title": "Urbackup",
      "description": "Open-source network backup",
      "categories": ["backup"],
      "platform": "linux",
      "note": "This application web interface is exposed on the port 55414 inside the container.",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/urbackup.png",
      "image": "cfstras/urbackup",
      "ports": ["55413/tcp", "55414/tcp", "55415/tcp", "35622/tcp"],
      "volumes": [
        {
          "container": "/var/urbackup"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/wikijs.png",
      "name": "Wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "type": 2,
      "title": "Wordpress",
      "description": "Wordpress setup with a MySQL database",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/wordpress/docker-stack.yml"
      },
      "env": [
        {
          "name": "MYSQL_DATABASE_PASSWORD",
          "label": "Database root password",
          "description": "Password used by the MySQL root user."
        }
      ]
    },
    {
      "type": 3,
      "title": "Wordpress",
      "description": "Wordpress setup with a MySQL database",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "categories": ["CMS"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
      "repository": {
        "url": "https://github.com/mikestraney/portainer-templates",
        "stackfile": "stacks/wordpress/docker-stack.yml"
      },
      "env": [
        {
          "name": "MYSQL_DATABASE_PASSWORD",
          "label": "Database root password",
          "description": "Password used by the MySQL root user."
        }
      ]
    },
    {
      "type": 4,
      "title": "Wordpress",
      "description": "Wordpress setup with a MySQL database",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "stackfile": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/stacks/wordpress/edge/docker-stack.yml"
    },
    {
      "type": 1,
      "title": "Wowza",
      "description": "Streaming media server",
      "categories": ["streaming"],
      "platform": "linux",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wowza.png",
      "image": "sameersbn/wowza:4.1.2-8",
      "env": [
        {
          "name": "WOWZA_ACCEPT_LICENSE",
          "label": "Agree to Wowza EULA",
          "set": "yes"
        },
        {
          "name": "WOWZA_KEY",
          "label": "License key"
        }
      ],
      "ports": ["1935/tcp", "8086/tcp", "8087/tcp", "8088/tcp"],
      "volumes": [
        {
          "container": "/var/lib/wowza"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/mikestraney/portainer-templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["docker"],
      "description": "Docker image registry",
      "image": "registry:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/registry.png",
      "platform": "linux",
      "ports": ["5000/tcp"],
      "title": "Registry",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/registry"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/wikijs.png",
      "name": "wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "UniFi Video"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/UniFiVideo-logo.png",
      "name": "UniFi Video",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1001",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1001",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:latest",
      "name": "deluge-openvpn",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/robocopAlpha/selfhosted_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT>IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Save recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cardigann.png",
      "name": "cardigann",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/davos.png",
      "name": "davos",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK",
          "name": "UMASK",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deluge-icon.png",
      "namme": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/emby.png",
      "name": "emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/pritunl/Images/pritunl.png",
      "name": "pritunl",
      "note": "Documentation on this containier can be found here: <a href=https://hub.docker.com/r/goofball222/pritunl>https://hub.docker.com/r/goofball222/pritunl</a>",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/pritunl.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jlesage/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "ports": ["80:8080/tcp", "81:8181/tcp", "443:4443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizrtools/organizr-v2:php-fpm",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/snibox.png",
      "name": "snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd <username>",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bazarr.png",
      "name": "bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "bitwardenrs/server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bitwarden.png",
      "name": "bitwardenrs",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bitwarden RS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bitwarden-rs",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/embystat.png",
      "name": "embystat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["continuous-integration"],
      "description": "Open-source continuous integration tool",
      "env": [
        {
          "label": "Jenkins options",
          "name": "JENKINS_OPTS"
        }
      ],
      "image": "jenkins/jenkins:lts",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/jenkins.png",
      "platform": "linux",
      "ports": ["8080/tcp", "50000/tcp"],
      "title": "Jenkins",
      "type": 1,
      "volumes": [
        {
          "container": "/var/jenkins_home"
        }
      ]
    },
    {
      "categories": ["project-management"],
      "description": "Open-source project management tool",
      "image": "redmine:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redmine.png",
      "platform": "linux",
      "ports": ["3000/tcp"],
      "title": "Redmine",
      "type": 1,
      "volumes": [
        {
          "container": "/usr/src/redmine/files"
        }
      ]
    },
    {
      "categories": ["project-management"],
      "description": "Open-source business apps",
      "env": [
        {
          "label": "PostgreSQL database host",
          "name": "HOST",
          "type": "container"
        },
        {
          "label": "Database user",
          "name": "USER"
        },
        {
          "label": "Database password",
          "name": "PASSWORD"
        }
      ],
      "image": "odoo:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/odoo.png",
      "platform": "linux",
      "ports": ["8069/tcp"],
      "title": "Odoo",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/odoo"
        },
        {
          "container": "/mnt/extra-addons"
        }
      ]
    },
    {
      "categories": ["backup"],
      "description": "Open-source network backup",
      "image": "cfstras/urbackup",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/urbackup.png",
      "note": "This application web interface is exposed on the port 55414 inside the container.",
      "platform": "linux",
      "ports": ["55413/tcp", "55414/tcp", "55415/tcp", "35622/tcp"],
      "title": "Urbackup",
      "type": 1,
      "volumes": [
        {
          "container": "/var/urbackup"
        }
      ]
    },
    {
      "categories": ["filesystem", "storage"],
      "command": "--port 80 --database /data/database.db --root /srv",
      "description": "A web file manager",
      "image": "filebrowser/filebrowser:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/filebrowser.png",
      "note": "Default credentials: admin/admin",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "File browser",
      "type": 1,
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/srv"
        }
      ]
    },
    {
      "categories": ["development"],
      "description": "ColdFusion (CFML) CLI",
      "env": [
        {
          "name": "CFENGINE",
          "set": "lucee@4.5"
        }
      ],
      "image": "ortussolutions/commandbox:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-commandbox.png",
      "platform": "linux",
      "ports": ["8080/tcp", "8443/tcp"],
      "title": "CommandBox",
      "type": 1
    },
    {
      "categories": ["CMS"],
      "description": "Open-source modular CMS",
      "env": [
        {
          "name": "express",
          "set": "true"
        },
        {
          "name": "install",
          "set": "true"
        },
        {
          "name": "CFENGINE",
          "set": "lucee@4.5"
        }
      ],
      "image": "ortussolutions/contentbox:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-contentbox.png",
      "platform": "linux",
      "ports": ["8080/tcp", "8443/tcp"],
      "title": "ContentBox",
      "type": 1,
      "volumes": [
        {
          "container": "/data/contentbox/db"
        },
        {
          "container": "/app/includes/shared/media"
        }
      ]
    },
    {
      "categories": ["portainer"],
      "description": "Manage all the resources in your Swarm cluster",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/portainer.png",
      "note": "The agent will be deployed globally inside your cluster and available on port 9001.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/portainer-agent/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Portainer Agent",
      "type": 2
    },
    {
      "categories": ["serverless"],
      "description": "Serverless functions made simple",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/openfaas.png",
      "name": "func",
      "note": "Deploys the API gateway and sample functions. You can access the UI on port 8080. <b>Warning</b>: the name of the stack must be 'func'.",
      "platform": "linux",
      "repository": {
        "stackfile": "docker-compose.yml",
        "url": "https://github.com/openfaas/faas"
      },
      "title": "OpenFaaS",
      "type": 2
    },
    {
      "categories": ["serverless"],
      "description": "Open-source serverless computing platform",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "note": "Deploys the IronFunctions API and UI.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/ironfunctions/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "IronFunctions",
      "type": 2
    },
    {
      "categories": ["database"],
      "description": "CockroachDB cluster",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
      "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/cockroachdb/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "CockroachDB",
      "type": 2
    },
    {
      "categories": ["CMS"],
      "description": "Wordpress setup with a MySQL database",
      "env": [
        {
          "description": "Password used by the MySQL root user.",
          "label": "Database root password",
          "name": "MYSQL_DATABASE_PASSWORD"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/wordpress/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Wordpress",
      "type": 2
    },
    {
      "categories": ["OPS"],
      "description": "Microsoft Operations Management Suite Linux agent.",
      "env": [
        {
          "description": "Azure Workspace ID",
          "label": "Workspace ID",
          "name": "AZURE_WORKSPACE_ID"
        },
        {
          "description": "Azure primary key",
          "label": "Primary key",
          "name": "AZURE_PRIMARY_KEY"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/microsoft-oms/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Microsoft OMS Agent",
      "type": 2
    },
    {
      "categories": ["Log Management", "Monitoring"],
      "description": "Collect logs, metrics and docker events",
      "env": [
        {
          "label": "Logs token",
          "name": "LOGSENE_TOKEN"
        },
        {
          "label": "SPM monitoring token",
          "name": "SPM_TOKEN"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/sematext-agent-docker/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Sematext Docker Agent",
      "type": 2
    },
    {
      "categories": ["Monitoring"],
      "description": "Collect events and metrics",
      "env": [
        {
          "label": "Datadog API key",
          "name": "API_KEY"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/datadog-agent/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Datadog agent",
      "type": 2
    },
    {
      "categories": ["marketing"],
      "description": "Open-source marketing automation platform",
      "env": [
        {
          "label": "MySQL database host",
          "name": "MAUTIC_DB_HOST",
          "type": "container"
        },
        {
          "label": "Database password",
          "name": "MAUTIC_DB_PASSWORD"
        }
      ],
      "image": "mautic/mautic:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mautic.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "Mautic",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "categories": ["streaming"],
      "description": "Streaming media server",
      "env": [
        {
          "label": "Agree to Wowza EULA",
          "name": "WOWZA_ACCEPT_LICENSE",
          "set": "yes"
        },
        {
          "label": "License key",
          "name": "WOWZA_KEY"
        }
      ],
      "image": "sameersbn/wowza:4.1.2-8",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wowza.png",
      "platform": "linux",
      "ports": ["1935/tcp", "8086/tcp", "8087/tcp", "8088/tcp"],
      "title": "Wowza",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/wowza"
        }
      ]
    },
    {
      "categories": ["webserver"],
      "description": "HTTP/2 web server with automatic HTTPS",
      "image": "abiosoft/caddy:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/caddy.png",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp", "2015/tcp"],
      "title": "Caddy",
      "type": 1,
      "volumes": [
        {
          "container": "/root/.caddy"
        }
      ]
    },
    {
      "categories": ["webserver"],
      "description": "High performance web server",
      "image": "nginx:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/nginx.png",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "container": "/etc/nginx"
        },
        {
          "container": "/usr/share/nginx/html"
        }
      ]
    },
    {
      "categories": ["webserver"],
      "description": "Open-source HTTP server",
      "image": "httpd:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/httpd.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "Httpd",
      "type": 1,
      "volumes": [
        {
          "container": "/usr/local/apache2/htdocs/"
        }
      ]
    },
    {
      "categories": ["webserver"],
      "description": "HTTP/2 web server with automatic HTTPS",
      "image": "abiosoft/caddy:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/caddy.png",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp", "2015/tcp"],
      "title": "Caddy",
      "type": 1,
      "volumes": [
        {
          "container": "/root/.caddy"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "The most popular open-source database",
      "env": [
        {
          "label": "Root password",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "image": "mysql:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mysql.png",
      "platform": "linux",
      "ports": ["3306/tcp"],
      "title": "MySQL",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "Performance beyond MySQL",
      "env": [
        {
          "label": "Root password",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "image": "mariadb:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mariadb.png",
      "platform": "linux",
      "ports": ["3306/tcp"],
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "The most advanced open-source database",
      "env": [
        {
          "label": "Superuser",
          "name": "POSTGRES_USER"
        },
        {
          "label": "Superuser password",
          "name": "POSTGRES_PASSWORD"
        }
      ],
      "image": "postgres:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/postgres.png",
      "platform": "linux",
      "ports": ["5432/tcp"],
      "title": "PostgreSQL",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/postgresql/data"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "Open-source document-oriented database",
      "image": "mongo:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mongo.png",
      "platform": "linux",
      "ports": ["27017/tcp"],
      "title": "Mongo",
      "type": 1,
      "volumes": [
        {
          "container": "/data/db"
        }
      ]
    },
    {
      "categories": ["database"],
      "command": "start --insecure",
      "description": "An open-source, survivable, strongly consistent, scale-out SQL database",
      "image": "cockroachdb/cockroach:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
      "platform": "linux",
      "ports": ["26257/tcp", "8080/tcp"],
      "title": "CockroachDB",
      "type": 1,
      "volumes": [
        {
          "container": "/cockroach/cockroach-data"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "An open-source distributed SQL database",
      "image": "crate:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cratedb.png",
      "platform": "linux",
      "ports": ["4200/tcp", "4300/tcp"],
      "title": "CrateDB",
      "type": 1,
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "Open-source search and analytics engine",
      "image": "elasticsearch:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/elasticsearch.png",
      "platform": "linux",
      "ports": ["9200/tcp", "9300/tcp"],
      "title": "Elasticsearch",
      "type": 1,
      "volumes": [
        {
          "container": "/usr/share/elasticsearch/data"
        }
      ]
    },
    {
      "categories": ["development", "project-management"],
      "description": "Open-source end-to-end software development platform",
      "image": "gitlab/gitlab-ce:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/gitlab_ce.png",
      "note": "Default username is <b>root</b>. Check the <a href=\"https://docs.gitlab.com/omnibus/docker/README.html#after-starting-a-container\" target=\"_blank\">Gitlab documentation</a> to get started.",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp", "22/tcp"],
      "title": "Gitlab CE",
      "type": 1,
      "volumes": [
        {
          "container": "/etc/gitlab"
        },
        {
          "container": "/var/log/gitlab"
        },
        {
          "container": "/var/opt/gitlab"
        }
      ]
    },
    {
      "categories": ["storage"],
      "command": "server /data",
      "description": "A distributed object storage server built for cloud applications and devops",
      "env": [
        {
          "label": "Minio access key",
          "name": "MINIO_ACCESS_KEY"
        },
        {
          "label": "Minio secret key",
          "name": "MINIO_SECRET_KEY"
        }
      ],
      "image": "minio/minio:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/minio.png",
      "platform": "linux",
      "ports": ["9000/tcp"],
      "title": "Minio",
      "type": 1,
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/root/.minio"
        }
      ]
    },
    {
      "categories": ["storage"],
      "description": "Standalone AWS S3 protocol server",
      "env": [
        {
          "label": "Scality S3 access key",
          "name": "SCALITY_ACCESS_KEY"
        },
        {
          "label": "Scality S3 secret key",
          "name": "SCALITY_SECRET_KEY"
        }
      ],
      "image": "scality/s3server",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/scality-s3.png",
      "platform": "linux",
      "ports": ["8000/tcp"],
      "title": "Scality S3",
      "type": 1,
      "volumes": [
        {
          "container": "/usr/src/app/localData"
        },
        {
          "container": "/usr/src/app/localMetadata"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "Microsoft SQL Server on Linux",
      "env": [
        {
          "name": "ACCEPT_EULA",
          "set": "Y"
        },
        {
          "label": "SA password",
          "name": "SA_PASSWORD"
        }
      ],
      "image": "microsoft/mssql-server-linux:2017-GA",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "platform": "linux",
      "ports": ["1433/tcp"],
      "title": "SQL Server",
      "type": 1
    },
    {
      "categories": ["database"],
      "description": "Microsoft SQL Server Developer for Windows containers",
      "env": [
        {
          "name": "ACCEPT_EULA",
          "set": "Y"
        },
        {
          "label": "SA password",
          "name": "sa_password"
        }
      ],
      "image": "microsoft/mssql-server-windows-developer:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "platform": "windows",
      "ports": ["1433/tcp"],
      "title": "SQL Server",
      "type": 1,
      "volumes": [
        {
          "container": "C:/temp/"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "Microsoft SQL Server Express for Windows containers",
      "env": [
        {
          "name": "ACCEPT_EULA",
          "set": "Y"
        },
        {
          "label": "SA password",
          "name": "sa_password"
        }
      ],
      "image": "microsoft/mssql-server-windows-express:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "note": "Password needs to include at least 8 characters including uppercase, lowercase letters, base-10 digits and/or non-alphanumeric symbols.",
      "platform": "windows",
      "ports": ["1433/tcp"],
      "title": "SQL Server Express",
      "type": 1,
      "volumes": [
        {
          "container": "C:/temp/"
        }
      ]
    },
    {
      "categories": ["serverless"],
      "description": "Open-source serverless computing platform",
      "image": "iron/functions:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "privileged": true,
      "title": "IronFunctions API",
      "type": 1,
      "volumes": [
        {
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["serverless"],
      "description": "Open-source user interface for IronFunctions",
      "env": [
        {
          "label": "API URL",
          "name": "API_URL"
        }
      ],
      "image": "iron/functions-ui:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "platform": "linux",
      "ports": ["4000/tcp"],
      "privileged": true,
      "title": "IronFunctions UI",
      "type": 1,
      "volumes": [
        {
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["search-engine"],
      "description": "Open-source enterprise search platform",
      "image": "solr:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/solr.png",
      "platform": "linux",
      "ports": ["8983/tcp"],
      "title": "Solr",
      "type": 1,
      "volumes": [
        {
          "container": "/opt/solr/mydata"
        }
      ]
    },
    {
      "categories": ["database"],
      "description": "Open-source in-memory data structure store",
      "image": "redis:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redis.png",
      "platform": "linux",
      "ports": ["6379/tcp"],
      "title": "Redis",
      "type": 1,
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["messaging"],
      "description": "Highly reliable enterprise messaging system",
      "image": "rabbitmq:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/rabbitmq.png",
      "platform": "linux",
      "ports": ["5671/tcp", "5672/tcp"],
      "title": "RabbitMQ",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/rabbitmq"
        }
      ]
    },
    {
      "categories": ["blog"],
      "description": "Free and open-source blogging platform",
      "image": "ghost:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ghost.png",
      "note": "Access the blog management interface under <code>/ghost/</code>.",
      "platform": "linux",
      "ports": ["2368/tcp"],
      "title": "Ghost",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/ghost/content"
        }
      ]
    },
    {
      "categories": ["CMS"],
      "description": "WebOps platform and hosting control panel",
      "image": "plesk/plesk:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plesk.png",
      "note": "Default credentials: admin / changeme",
      "platform": "linux",
      "ports": [
        "21/tcp",
        "80/tcp",
        "443/tcp",
        "8880/tcp",
        "8443/tcp",
        "8447/tcp"
      ],
      "title": "Plesk",
      "type": 1
    },
    {
      "categories": ["CMS"],
      "description": "Another free and open-source CMS",
      "env": [
        {
          "label": "MySQL database host",
          "name": "JOOMLA_DB_HOST",
          "type": "container"
        },
        {
          "label": "Database password",
          "name": "JOOMLA_DB_PASSWORD"
        }
      ],
      "image": "joomla:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/joomla.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "Joomla",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "categories": ["CMS"],
      "description": "Open-source content management framework",
      "image": "drupal:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/drupal.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "Drupal",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "categories": ["CMS"],
      "description": "A free and open-source CMS built on top of Zope",
      "image": "plone:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/plone.png",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "title": "Plone",
      "type": 1,
      "volumes": [
        {
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["CMS"],
      "description": "Open-source e-commerce platform",
      "image": "alankent/gsd:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/magento.png",
      "platform": "linux",
      "ports": ["80/tcp", "3000/tcp", "3001/tcp"],
      "title": "Magento 2",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/"
        }
      ]
    },
    {
      "categories": ["Log Management", "Monitoring"],
      "description": "Collect logs, metrics and docker events",
      "env": [
        {
          "label": "Logs token",
          "name": "LOGSENE_TOKEN"
        },
        {
          "label": "SPM monitoring token",
          "name": "SPM_TOKEN"
        }
      ],
      "image": "sematext/sematext-agent-docker:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
      "name": "sematext-agent",
      "platform": "linux",
      "privileged": true,
      "title": "Sematext Docker Agent",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Monitoring"],
      "description": "Collect events and metrics",
      "env": [
        {
          "label": "Datadog API key",
          "name": "DD_API_KEY"
        }
      ],
      "image": "datadog/agent:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
      "platform": "linux",
      "title": "Datadog agent",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock",
          "readonly": true
        },
        {
          "bind": "/sys/fs/cgroup",
          "container": "/host/sys/fs/cgroup",
          "readonly": true
        },
        {
          "bind": "/proc",
          "container": "/host/proc",
          "readonly": true
        }
      ]
    },
    {
      "categories": ["marketing"],
      "description": "Open-source marketing automation platform",
      "env": [
        {
          "label": "MySQL database host",
          "name": "MAUTIC_DB_HOST",
          "type": "container"
        },
        {
          "label": "Database password",
          "name": "MAUTIC_DB_PASSWORD"
        }
      ],
      "image": "mautic/mautic:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mautic.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "Mautic",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html"
        }
      ]
    },
    {
      "categories": ["streaming"],
      "description": "Streaming media server",
      "env": [
        {
          "label": "Agree to Wowza EULA",
          "name": "WOWZA_ACCEPT_LICENSE",
          "set": "yes"
        },
        {
          "label": "License key",
          "name": "WOWZA_KEY"
        }
      ],
      "image": "sameersbn/wowza:4.1.2-8",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wowza.png",
      "platform": "linux",
      "ports": ["1935/tcp", "8086/tcp", "8087/tcp", "8088/tcp"],
      "title": "Wowza",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/wowza"
        }
      ]
    },
    {
      "categories": ["continuous-integration"],
      "description": "Open-source continuous integration tool",
      "env": [
        {
          "label": "Jenkins options",
          "name": "JENKINS_OPTS"
        }
      ],
      "image": "jenkins/jenkins:lts",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/jenkins.png",
      "platform": "linux",
      "ports": ["8080/tcp", "50000/tcp"],
      "title": "Jenkins",
      "type": 1,
      "volumes": [
        {
          "container": "/var/jenkins_home"
        }
      ]
    },
    {
      "categories": ["project-management"],
      "description": "Open-source project management tool",
      "image": "redmine:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/redmine.png",
      "platform": "linux",
      "ports": ["3000/tcp"],
      "title": "Redmine",
      "type": 1,
      "volumes": [
        {
          "container": "/usr/src/redmine/files"
        }
      ]
    },
    {
      "categories": ["project-management"],
      "description": "Open-source business apps",
      "env": [
        {
          "label": "PostgreSQL database host",
          "name": "HOST",
          "type": "container"
        },
        {
          "label": "Database user",
          "name": "USER"
        },
        {
          "label": "Database password",
          "name": "PASSWORD"
        }
      ],
      "image": "odoo:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/odoo.png",
      "platform": "linux",
      "ports": ["8069/tcp"],
      "title": "Odoo",
      "type": 1,
      "volumes": [
        {
          "container": "/var/lib/odoo"
        },
        {
          "container": "/mnt/extra-addons"
        }
      ]
    },
    {
      "categories": ["backup"],
      "description": "Open-source network backup",
      "image": "cfstras/urbackup",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/urbackup.png",
      "note": "This application web interface is exposed on the port 55414 inside the container.",
      "platform": "linux",
      "ports": ["55413/tcp", "55414/tcp", "55415/tcp", "35622/tcp"],
      "title": "Urbackup",
      "type": 1,
      "volumes": [
        {
          "container": "/var/urbackup"
        }
      ]
    },
    {
      "categories": ["filesystem", "storage"],
      "command": "--port 80 --database /data/database.db --root /srv",
      "description": "A web file manager",
      "image": "filebrowser/filebrowser:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/filebrowser.png",
      "note": "Default credentials: admin/admin",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "File browser",
      "type": 1,
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/srv"
        }
      ]
    },
    {
      "categories": ["development"],
      "description": "ColdFusion (CFML) CLI",
      "env": [
        {
          "name": "CFENGINE",
          "set": "lucee@4.5"
        }
      ],
      "image": "ortussolutions/commandbox:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-commandbox.png",
      "platform": "linux",
      "ports": ["8080/tcp", "8443/tcp"],
      "title": "CommandBox",
      "type": 1
    },
    {
      "categories": ["CMS"],
      "description": "Open-source modular CMS",
      "env": [
        {
          "name": "express",
          "set": "true"
        },
        {
          "name": "install",
          "set": "true"
        },
        {
          "name": "CFENGINE",
          "set": "lucee@4.5"
        }
      ],
      "image": "ortussolutions/contentbox:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ortussolutions-contentbox.png",
      "platform": "linux",
      "ports": ["8080/tcp", "8443/tcp"],
      "title": "ContentBox",
      "type": 1,
      "volumes": [
        {
          "container": "/data/contentbox/db"
        },
        {
          "container": "/app/includes/shared/media"
        }
      ]
    },
    {
      "categories": ["portainer"],
      "description": "Manage all the resources in your Swarm cluster",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/portainer.png",
      "note": "The agent will be deployed globally inside your cluster and available on port 9001.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/portainer-agent/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Portainer Agent",
      "type": 2
    },
    {
      "categories": ["serverless"],
      "description": "Serverless functions made simple",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/openfaas.png",
      "name": "func",
      "note": "Deploys the API gateway and sample functions. You can access the UI on port 8080. <b>Warning</b>: the name of the stack must be 'func'.",
      "platform": "linux",
      "repository": {
        "stackfile": "docker-compose.yml",
        "url": "https://github.com/openfaas/faas"
      },
      "title": "OpenFaaS",
      "type": 2
    },
    {
      "categories": ["serverless"],
      "description": "Open-source serverless computing platform",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/ironfunctions.png",
      "note": "Deploys the IronFunctions API and UI.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/ironfunctions/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "IronFunctions",
      "type": 2
    },
    {
      "categories": ["database"],
      "description": "CockroachDB cluster",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
      "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/cockroachdb/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "CockroachDB",
      "type": 2
    },
    {
      "categories": ["CMS"],
      "description": "Wordpress setup with a MySQL database",
      "env": [
        {
          "description": "Password used by the MySQL root user.",
          "label": "Database root password",
          "name": "MYSQL_DATABASE_PASSWORD"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/wordpress/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Wordpress",
      "type": 2
    },
    {
      "categories": ["CMS"],
      "description": "Wordpress setup with a MySQL database",
      "env": [
        {
          "description": "Password used by the MySQL root user.",
          "label": "Database root password",
          "name": "MYSQL_DATABASE_PASSWORD"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/wordpress.png",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/wordpress/docker-compose.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Wordpress",
      "type": 3
    },
    {
      "categories": ["OPS"],
      "description": "Microsoft Operations Management Suite Linux agent.",
      "env": [
        {
          "description": "Azure Workspace ID",
          "label": "Workspace ID",
          "name": "AZURE_WORKSPACE_ID"
        },
        {
          "description": "Azure primary key",
          "label": "Primary key",
          "name": "AZURE_PRIMARY_KEY"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/microsoft.png",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/microsoft-oms/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Microsoft OMS Agent",
      "type": 2
    },
    {
      "categories": ["Log Management", "Monitoring"],
      "description": "Collect logs, metrics and docker events",
      "env": [
        {
          "label": "Logs token",
          "name": "LOGSENE_TOKEN"
        },
        {
          "label": "SPM monitoring token",
          "name": "SPM_TOKEN"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/sematext_agent.png",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/sematext-agent-docker/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Sematext Docker Agent",
      "type": 2
    },
    {
      "categories": ["Monitoring"],
      "description": "Collect events and metrics",
      "env": [
        {
          "label": "Datadog API key",
          "name": "API_KEY"
        }
      ],
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/datadog_agent.png",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/datadog-agent/docker-stack.yml",
        "url": "https://github.com/portainer/templates"
      },
      "title": "Datadog agent",
      "type": 2
    },
    {
      "description": "Wordpress setup with a MySQL database",
      "note": "Deploys a Wordpress instance connected to a MySQL database.",
      "stackfile": "https://raw.githubusercontent.com/portainer/templates/master/stacks/wordpress/edge/docker-stack.yml",
      "title": "Wordpress",
      "type": 4
    },
    {
      "description": "CockroachDB cluster",
      "note": "Deploys an insecure CockroachDB cluster, please refer to <a href=\"https://www.cockroachlabs.com/docs/stable/orchestrate-cockroachdb-with-docker-swarm.html\" target=\"_blank\">CockroachDB documentation</a> for production deployments.",
      "stackfile": "https://raw.githubusercontent.com/portainer/templates/master/stacks/cockroachdb/edge/docker-stack.yml",
      "title": "CockroachDB",
      "type": 4
    },
    {
      "description": "[Adguardhome-sync](https://github.com/bakito/adguardhome-sync/) is a tool to synchronize AdGuardHome config to replica instances.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/config/adguardhome-sync.yaml",
          "description": "Set a custom config file.",
          "label": "CONFIGFILE",
          "name": "CONFIGFILE"
        }
      ],
      "image": "linuxserver/adguardhome-sync:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/adguardhomesync-icon.png",
      "name": "Adguardhome-sync",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/adguardhome-sync/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Adguardhome-sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/adguardhome-sync/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Airsonic-advanced](https://github.com/airsonic-advanced/airsonic-advanced) is a free, web-based media streamer, providing ubiquitious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "<URL_BASE>",
          "description": "For setting url-base in reverse proxy setups.",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        },
        {
          "default": "<options>",
          "description": "For passing additional java options.",
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS"
        }
      ],
      "image": "linuxserver/airsonic-advanced:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/airsonic-banner.png",
      "name": "Airsonic-advanced",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/airsonic-advanced/config<br>mkdir -p /volume1/docker/airsonic-advanced/music<br>mkdir -p /volume1/docker/airsonic-advanced/playlists<br>mkdir -p /volume1/docker/airsonic-advanced/podcasts<br>mkdir -p /volume1/docker/airsonic-advanced/media</p>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic-advanced",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/airsonic-advanced/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/airsonic-advanced/music",
          "container": "/music"
        },
        {
          "bind": "/volume1/docker/airsonic-advanced/playlists",
          "container": "/playlists"
        },
        {
          "bind": "/volume1/docker/airsonic-advanced/podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/volume1/docker/airsonic-advanced/media",
          "container": "/media"
        }
      ]
    },
    {
      "categories": ["Notifications"],
      "description": "[Apprise-api](https://github.com/caronc/apprise-api) Takes advantage of [Apprise](https://github.com/caronc/apprise) through your network with a user-friendly API. * Send notifications to more then 65+ services. * An incredibly lightweight gateway to Apprise. * A production ready micro-service at your disposal. Apprise API was designed to easily fit into existing (and new) eco-systems that are looking for a simple notification solution.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/apprise-api:latest",
      "logo": "https://raw.githubusercontent.com/caronc/apprise-api/master/apprise_api/static/logo.png",
      "name": "Apprise-api",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/apprise-api/config</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Apprise-api",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/apprise-api/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Audacity](https://www.audacityteam.org/) is an easy-to-use, multi-track audio editor and recorder. Developed by a group of volunteers as open source.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/audacity:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/audacity-logo.png",
      "name": "Audacity",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/audacity/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Audacity",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/audacity/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Babybuddy](https://github.com/babybuddy/babybuddy) is a buddy for babies! Helps caregivers track sleep, feedings, diaper changes, tummy time and more to learn about and predict baby's needs without (as much) guess work.",
      "env": [
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/babybuddy:latest",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/babybuddy-logo.png",
      "name": "Babybuddy",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/babybuddy/config</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Babybuddy",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/babybuddy/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Bazarr](https://www.bazarr.media/) is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/bazarr.png",
      "name": "Bazarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/bazarr/config<br>mkdir -p /volume1/docker/bazarr/movies<br>mkdir -p /volume1/docker/bazarr/tv</p>",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/bazarr/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/bazarr/movies",
          "container": "/movies"
        },
        {
          "bind": "/volume1/docker/bazarr/tv",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Beets](http://beets.io/) is a music library manager and not, for the most part, a music player. It does include a simple player plugin and an experimental Web-based player, but it generally leaves actual sound-reproduction to specialized tools.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/beets-icon.png",
      "name": "Beets",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/beets/config<br>mkdir -p /volume1/docker/beets/music<br>mkdir -p /volume1/docker/beets/downloads</p>",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/beets/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/beets/music",
          "container": "/music"
        },
        {
          "bind": "/volume1/docker/beets/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Research"],
      "description": "[BOINC](https://boinc.berkeley.edu/) is a platform for high-throughput computing on a large scale (thousands or millions of computers). It can be used for volunteer computing (using consumer devices) or grid computing (using organizational resources). It supports virtualized, parallel, and GPU-based applications.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "",
          "description": "Optionally set a password for the gui.",
          "label": "PASSWORD",
          "name": "PASSWORD"
        }
      ],
      "image": "linuxserver/boinc:latest",
      "logo": "https://raw.githubusercontent.com/BOINC/boinc/master/doc/logo/boinc_logo_black.jpg",
      "name": "Boinc",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/boinc/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Boinc",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/boinc/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Booksonic](http://booksonic.org) is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "url-base",
          "description": "Base url for use with reverse proxies etc.",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/booksonic.png",
      "name": "Booksonic",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/booksonic/config<br>mkdir -p /volume1/docker/booksonic/audiobooks<br>mkdir -p /volume1/docker/booksonic/podcasts<br>mkdir -p /volume1/docker/booksonic/othermedia</p>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/booksonic/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/booksonic/audiobooks",
          "container": "/audiobooks"
        },
        {
          "bind": "/volume1/docker/booksonic/podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/volume1/docker/booksonic/othermedia",
          "container": "/othermedia"
        }
      ]
    },
    {
      "categories": ["Audio"],
      "description": "[Booksonic-air](http://booksonic.org) is a platform for accessing the audiobooks you own wherever you are. At the moment the platform consists of Booksonic Air - A server for streaming your audiobooks, successor to the original Booksonic server and based on Airsonic. Booksonic App - An DSub based Android app for connection to Booksonic-Air servers. .",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "url-base",
          "description": "Base url for use with reverse proxies etc.",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic-air:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/booksonic-air.png",
      "name": "Booksonic-air",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/booksonic-air/config<br>mkdir -p /volume1/docker/booksonic-air/audiobooks<br>mkdir -p /volume1/docker/booksonic-air/podcasts<br>mkdir -p /volume1/docker/booksonic-air/othermedia</p>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic-air",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/booksonic-air/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/booksonic-air/audiobooks",
          "container": "/audiobooks"
        },
        {
          "bind": "/volume1/docker/booksonic-air/podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/volume1/docker/booksonic-air/othermedia",
          "container": "/othermedia"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Bookstack](https://github.com/BookStackApp/BookStack) is a free and open source Wiki designed for creating beautiful documentation. Featuring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease. Powered by SQL and including a Markdown editor for those who prefer it, BookStack is geared towards making documentation more of a pleasure than a chore. For more information on BookStack visit their website and check it out: https://www.bookstackapp.com",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "description": "for specifying the IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com`",
          "label": "APP_URL",
          "name": "APP_URL"
        },
        {
          "default": "<yourdbhost>",
          "description": "for specifying the database host",
          "label": "DB_HOST",
          "name": "DB_HOST"
        },
        {
          "default": "<yourdbuser>",
          "description": "for specifying the database user",
          "label": "DB_USER",
          "name": "DB_USER"
        },
        {
          "default": "<yourdbpass>",
          "description": "for specifying the database password",
          "label": "DB_PASS",
          "name": "DB_PASS"
        },
        {
          "default": "bookstackapp",
          "description": "for specifying the database to be used",
          "label": "DB_DATABASE",
          "name": "DB_DATABASE"
        }
      ],
      "image": "linuxserver/bookstack:latest",
      "logo": "https://s3-us-west-2.amazonaws.com/linuxserver-docs/images/bookstack-logo500x500.png",
      "name": "Bookstack",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/bookstack/config</p>",
      "platform": "linux",
      "ports": ["6875:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bookstack",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/bookstack/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Budge](https://github.com/linuxserver/budge) is an open source 'budgeting with envelopes' personal finance app.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/budge:latest",
      "logo": "",
      "name": "Budge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/budge/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Budge",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/budge/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Calibre](https://calibre-ebook.com/) is a powerful and easy to use e-book manager. Users say it’s outstanding and a must-have. It’ll allow you to do nearly everything and it takes things a step beyond normal e-book software. It’s also completely free and open source and great for both casual users and computer experts.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "",
          "description": "Optionally set a password for the gui.",
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "default": "",
          "description": "Optionally pass cli start arguments to calibre.",
          "label": "CLI_ARGS",
          "name": "CLI_ARGS"
        }
      ],
      "image": "linuxserver/calibre:latest",
      "logo": "https://github.com/kovidgoyal/calibre/raw/master/resources/images/lt.png",
      "name": "Calibre",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/calibre/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/calibre/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "[Calibre-web](https://github.com/janeczku/calibre-web) is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. It is also possible to integrate google drive and edit metadata and your calibre library through the app itself. This software is a fork of library and licensed under the GPL v3 License.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "linuxserver/calibre-web:calibre",
          "description": "#optional & **x86-64 only** Adds the ability to perform ebook conversion",
          "label": "DOCKER_MODS",
          "name": "DOCKER_MODS"
        },
        {
          "default": "1",
          "description": "Optionally set this to allow Google OAUTH to work",
          "label": "OAUTHLIB_RELAX_TOKEN_SCOPE",
          "name": "OAUTHLIB_RELAX_TOKEN_SCOPE"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/calibre-web-icon.png",
      "name": "Calibre-web",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/calibre-web/config<br>mkdir -p /volume1/docker/calibre-web/books</p>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre-web",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/calibre-web/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/calibre-web/books",
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Websites"],
      "description": "[Chevereto](https://github.com/rodber/chevereto-free) is an image hosting software that allows you to create a beautiful and full-featured image hosting website on your own server. It's your hosting and your rules, so say goodbye to closures and restrictions.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/chevereto:latest",
      "logo": "",
      "name": "Chevereto",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/chevereto/config<br>mkdir -p /volume1/docker/chevereto/data</p>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/chevereto/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/chevereto/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Development"],
      "description": "[Cloud9](https://github.com/c9/core) Cloud9 is a complete web based IDE with terminal access. This container is for running their core SDK locally and developing plugins.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "https://github.com/linuxserver/docker-cloud9.git",
          "description": "Specify a git repo to checkout on first startup",
          "label": "GITURL",
          "name": "GITURL"
        },
        {
          "default": "",
          "description": "Optionally specify a username for http auth",
          "label": "USERNAME",
          "name": "USERNAME"
        },
        {
          "default": "",
          "description": "Optionally specify a password for http auth (if USERNAME and PASSWORD are not set, there will be no http auth)",
          "label": "PASSWORD",
          "name": "PASSWORD"
        }
      ],
      "image": "linuxserver/cloud9:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/cloud9.png",
      "name": "Cloud9",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/cloud9/config<br>mkdir -p /volume1/docker/cloud9/code<br></p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cloud9",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/cloud9/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/cloud9/code",
          "container": "/code"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Development"],
      "description": "[Code-server](https://coder.com) is VS Code running on a remote server, accessible through the browser. - Code on your Chromebook, tablet, and laptop with a consistent dev environment. - If you have a Windows or Mac workstation, more easily develop for Linux. - Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. - Preserve battery life when you're on the go. - All intensive computation runs on your server. - You're no longer running excess instances of Chrome.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "password",
          "description": "Optional web gui password, if `PASSWORD` or `HASHED_PASSWORD` is not provided, there will be no auth.",
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "default": "",
          "description": "Optional web gui password, overrides `PASSWORD`, instructions on how to create it is below.",
          "label": "HASHED_PASSWORD",
          "name": "HASHED_PASSWORD"
        },
        {
          "default": "password",
          "description": "If this optional variable is set, user will have sudo access in the code-server terminal with the specified password.",
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "",
          "description": "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`.",
          "label": "SUDO_PASSWORD_HASH",
          "name": "SUDO_PASSWORD_HASH"
        },
        {
          "default": "code-server.my.domain",
          "description": "If this optional variable is set, this domain will be proxied for subdomain proxying. See [Documentation](https://github.com/cdr/code-server/blob/master/docs/FAQ.md#sub-domains)",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        },
        {
          "default": "/config/workspace",
          "description": "If this optional variable is set, code-server will open this directory by default",
          "label": "DEFAULT_WORKSPACE",
          "name": "DEFAULT_WORKSPACE"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/code-server-banner.png",
      "name": "Code-server",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/code-server/config</p>",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code-server",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/code-server/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "[Cops](http://blog.slucas.fr/en/oss/calibre-opds-php-server) by Sébastien Lucas, stands for Calibre OPDS (and HTML) Php Server. COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices. Changes in your Calibre library are reflected immediately in your COPS pages. See : [COPS's home](http://blog.slucas.fr/en/oss/calibre-opds-php-server) for more details. Don't forget to check the [Wiki](https://github.com/seblucas/cops/wiki). ## Why? (taken from the author's site) In my opinion Calibre is a marvelous tool but is too big and has too much dependencies to be used for its content server. That's the main reason why I coded this OPDS server. I needed a simple tool to be installed on a small server (Seagate Dockstar in my case). I initially thought of Calibre2OPDS but as it generate static file no search was possible. Later I added an simple HTML catalog that should be usable on my Kobo. So COPS's main advantages are : * No need for many dependencies. * No need for a lot of CPU or RAM. * Not much code. * Search is available. * With Dropbox / owncloud it's very easy to have an up to date OPDS server. * It was fun to code. If you want to use the OPDS feed don't forget to specify feed.php at the end of your URL.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/cops-icon.png",
      "name": "Cops",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/cops/config<br>mkdir -p /volume1/docker/cops/books</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cops",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/cops/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/cops/books",
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Daapd](https://owntone.github.io/owntone-server/) (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), Chromecast, MPD and internet radio.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-git.png",
      "name": "Daapd",
      "network": "host",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/daapd/config<br>mkdir -p /volume1/docker/daapd/music</p>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/daapd/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/daapd/music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "[darktable](https://www.darktable.org/) is an open source photography workflow application and raw developer. A virtual lighttable and darkroom for photographers. It manages your digital negatives in a database, lets you view them through a zoomable lighttable and enables you to develop raw images and enhance them.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/darktable:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/darktable-logo.png",
      "name": "Darktable",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/darktable/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Darktable",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/darktable/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "[Davos](https://github.com/linuxserver/davos) is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/davos/master/docs/list.PNG",
      "name": "Davos",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/davos/config<br>mkdir -p /volume1/docker/davos/download</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/davos/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/davos/download",
          "container": "/download"
        }
      ]
    },
    {
      "categories": ["Networking"],
      "description": "[Ddclient](https://github.com/ddclient/ddclient) is a Perl client used to update dynamic DNS entries for accounts on Dynamic DNS Network Service Provider. It was originally written by Paul Burry and is now mostly by wimpunk. It has the capability to update more than just dyndns and it can fetch your WAN-ipaddress in a few different ways.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/ddclient:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ddclient-logo.png",
      "name": "Ddclient",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ddclient/config</p>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Ddclient",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/ddclient/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["File Management"],
      "description": "[Deluge](http://deluge-torrent.org/) is a lightweight, Free Software, cross-platform BitTorrent client. * Full Encryption * WebUI * Plugin System * Much more...",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "error",
          "description": "set the loglevel output when running Deluge, default is info for deluged and warning for delgued-web",
          "label": "DELUGE_LOGLEVEL",
          "name": "DELUGE_LOGLEVEL"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://avatars2.githubusercontent.com/u/6733935?v=3&s=200",
      "name": "Deluge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/deluge/config<br>mkdir -p /volume1/docker/deluge/downloads</p>",
      "platform": "linux",
      "ports": ["8112:8112/tcp", "6881:6881/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/deluge/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/deluge/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Photography"],
      "description": "[digiKam](https://www.digikam.org/): Professional Photo Management with the Power of Open Source",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/",
          "description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`",
          "label": "SUBFOLDER",
          "name": "SUBFOLDER"
        },
        {
          "default": "en-us-qwerty",
          "description": "See the keyboard layouts section for more information and options.",
          "label": "KEYBOARD",
          "name": "KEYBOARD"
        }
      ],
      "image": "linuxserver/digikam:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/digikam.png",
      "name": "Digikam",
      "network": "host",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/digikam/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Digikam",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/digikam/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Development"],
      "description": "[Dillinger](https://github.com/joemccann/dillinger) is a cloud-enabled, mobile-ready, offline-storage, AngularJS powered HTML5 Markdown editor.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/dillinger:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/dillinger.png",
      "name": "Dillinger",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/dillinger/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dillinger",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/dillinger/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "[Diskover](https://github.com/diskoverdata/diskover-community) is an open source file system indexer that uses Elasticsearch to index and manage data across heterogeneous storage systems.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "elasticsearch",
          "description": "ElasticSearch host (optional)",
          "label": "ES_HOST",
          "name": "ES_HOST"
        },
        {
          "default": "9200",
          "description": "ElasticSearch port (optional)",
          "label": "ES_PORT",
          "name": "ES_PORT"
        },
        {
          "default": "elastic",
          "description": "ElasticSearch username (optional)",
          "label": "ES_USER",
          "name": "ES_USER"
        },
        {
          "default": "changeme",
          "description": "ElasticSearch password (optional)",
          "label": "ES_PASS",
          "name": "ES_PASS"
        }
      ],
      "image": "linuxserver/diskover:latest",
      "logo": "https://raw.githubusercontent.com/diskoverdata/diskover-community/master/diskover-web/public/images/diskover.png",
      "name": "Diskover",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/diskover/config<br>mkdir -p /volume1/docker/diskover/data</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Diskover",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/diskover/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/diskover/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/docker-compose for details.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/docker-compose:latest",
      "logo": "",
      "name": "Docker-compose",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/docker-compose/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Docker-compose",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/docker-compose/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "[Dokuwiki](https://www.dokuwiki.org/dokuwiki/) is a simple to use and highly versatile Open Source wiki software that doesn't require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/dokuwiki:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/dokuwiki-icon.png",
      "name": "Dokuwiki",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/dokuwiki/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dokuwiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/dokuwiki/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Automation"],
      "description": "[Domoticz](https://www.domoticz.com) is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "domoticz",
          "description": "Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying.",
          "label": "WEBROOT",
          "name": "WEBROOT"
        },
        {
          "default": "<path to database>",
          "description": "Sets path to database. Do not set unless you know what this does.",
          "label": "DBASE",
          "name": "DBASE"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "Domoticz",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/domoticz/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "6144:6144/tcp", "1443:1443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/domoticz/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Doplarr](https://github.com/kiranshila/Doplarr) is an *arr request bot for Discord.'",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "<discord__token>",
          "description": "Specify your discord bot token.",
          "label": "DISCORD__TOKEN",
          "name": "DISCORD__TOKEN"
        },
        {
          "default": "<overseerr__api>",
          "description": "Specify your Overseerr API key. Leave blank if using Radarr/Sonarr.",
          "label": "OVERSEERR__API",
          "name": "OVERSEERR__API"
        },
        {
          "default": "http://localhost:5055",
          "description": "Specify your Overseerr URL. Leave blank if using Radarr/Sonarr.",
          "label": "OVERSEERR__URL",
          "name": "OVERSEERR__URL"
        },
        {
          "default": "<radarr__api>",
          "description": "Specify your Radarr API key. Leave blank if using Overseerr.",
          "label": "RADARR__API",
          "name": "RADARR__API"
        },
        {
          "default": "http://localhost:7878",
          "description": "Specify your Radarr URL. Leave blank if using Overseerr.",
          "label": "RADARR__URL",
          "name": "RADARR__URL"
        },
        {
          "default": "<sonarr__api>",
          "description": "Specify your Sonarr API key. Leave blank if using Overseerr.",
          "label": "SONARR__API",
          "name": "SONARR__API"
        },
        {
          "default": "http://localhost:8989",
          "description": "Specify your Sonarr URL. Leave blank if using Overseerr.",
          "label": "SONARR__URL",
          "name": "SONARR__URL"
        },
        {
          "default": "25",
          "description": "Sets the maximum size of the search results selection",
          "label": "DISCORD__MAX_RESULTS",
          "name": "DISCORD__MAX_RESULTS"
        },
        {
          "default": "<not_set_by_default>",
          "description": "The discord role id for users of the bot (omitting this lets everyone on the server use the bot)",
          "label": "DISCORD__ROLE_ID",
          "name": "DISCORD__ROLE_ID"
        },
        {
          "default": ":plain",
          "description": "Sets the style of the request alert message. One of `:plain` `:embed` `:none`",
          "label": "DISCORD__REQUESTED_MSG_STYLE",
          "name": "DISCORD__REQUESTED_MSG_STYLE"
        },
        {
          "default": "<not_set_by_default>",
          "description": "The name of the quality profile to use by default for Sonarr",
          "label": "SONARR__QUALITY_PROFILE",
          "name": "SONARR__QUALITY_PROFILE"
        },
        {
          "default": "<not_set_by_default>",
          "description": "The name of the quality profile to use by default for Radarr",
          "label": "RADARR__QUALITY_PROFILE",
          "name": "RADARR__QUALITY_PROFILE"
        },
        {
          "default": "<not_set_by_default>",
          "description": "The name of the language profile to use by default for Radarr",
          "label": "SONARR__LANGUAGE_PROFILE",
          "name": "SONARR__LANGUAGE_PROFILE"
        },
        {
          "default": "<not_set_by_default>",
          "description": "The Overseerr user id to use by default if there is no associated discord account for the requester",
          "label": "OVERSEERR__DEFAULT_ID",
          "name": "OVERSEERR__DEFAULT_ID"
        },
        {
          "default": "true",
          "description": "Sets whether users can request partial seasons.",
          "label": "PARTIAL_SEASONS",
          "name": "PARTIAL_SEASONS"
        },
        {
          "default": ":info",
          "description": "The log level for the logging backend. This can be changed for debugging purposes. One of trace `:debug` `:info` `:warn` `:error` `:fatal` `:report`",
          "label": "LOG_LEVEL",
          "name": "LOG_LEVEL"
        },
        {
          "default": "<not_set_by_default>",
          "description": "For passing additional java options.",
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS"
        }
      ],
      "image": "linuxserver/doplarr:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/doplarr-logo_title.png",
      "name": "Doplarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/doplarr/config</p>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Doplarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/doplarr/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["File Management"],
      "description": "[Double Commander](https://doublecmd.sourceforge.io/) is a free cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/doublecommander:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/doublecommander-icon.png",
      "name": "Doublecommander",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/doublecommander/config<br>mkdir -p /volume1/docker/doublecommander/data</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Doublecommander",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/doublecommander/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/doublecommander/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Duckdns](https://duckdns.org/) is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "subdomain1,subdomain2",
          "description": "multiple subdomains allowed, comma separated, no spaces",
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS"
        },
        {
          "default": "token",
          "description": "DuckDNS token",
          "label": "TOKEN",
          "name": "TOKEN"
        },
        {
          "default": "false",
          "description": "Set to `true` to log to file (also need to map /config).",
          "label": "LOG_FILE",
          "name": "LOG_FILE"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/duckdns.png",
      "name": "Duckdns",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/duckdns/config</p>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duckdns",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/duckdns/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Duplicati](https://www.duplicati.com/) works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive & S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "",
          "description": "Optionally specify any [CLI variables](https://duplicati.readthedocs.io/en/latest/07-other-command-line-utilities/) you want to launch the app with",
          "label": "CLI_ARGS",
          "name": "CLI_ARGS"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/duplicati-icon.png",
      "name": "Duplicati",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/duplicati/config<br>mkdir -p /volume1/docker/duplicati/backups<br>mkdir -p /volume1/docker/duplicati/source</p>",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/duplicati/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/duplicati/backups",
          "container": "/backups"
        },
        {
          "bind": "/volume1/docker/duplicati/source",
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Home Media"],
      "description": "[Emby](https://emby.media/) organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/emby-logo.png",
      "name": "Emby",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/emby/config<br>mkdir -p /volume1/docker/emby/data/tvshows<br>mkdir -p /volume1/docker/emby/data/movies<br></p>",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/emby/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/emby/data/tvshows",
          "container": "/data/tvshows"
        },
        {
          "bind": "/volume1/docker/emby/data/movies",
          "container": "/data/movies"
        },
        {
          "bind": "/opt/vc/lib",
          "container": "/opt/vc/lib"
        }
      ]
    },
    {
      "description": "[Embystat](https://github.com/mregni/EmbyStat) is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/embystat-logo.png",
      "name": "Embystat",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/embystat/config</p>",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Embystat",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/embystat/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Emulatorjs](https://github.com/linuxserver/emulatorjs) - In browser web based emulation portable to nearly any device for many retro consoles. A mix of emulators is used between Libretro and EmulatorJS.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/",
          "description": "Specify a subfolder for reverse proxies IE '/FOLDER/'",
          "label": "SUBFOLDER",
          "name": "SUBFOLDER"
        }
      ],
      "image": "linuxserver/emulatorjs:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/emulatorjs-logo.png",
      "name": "Emulatorjs",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/emulatorjs/config<br>mkdir -p /volume1/docker/emulatorjs/data</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp", "80:80/tcp", "4001:4001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emulatorjs",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/emulatorjs/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/emulatorjs/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Endlessh](https://github.com/skeeto/endlessh) is an SSH tarpit that very slowly sends an endless, random SSH banner. It keeps SSH clients locked up for hours or even days at a time. The purpose is to put your real SSH server on another port and then let the script kiddies get stuck in this tarpit instead of bothering a real server.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "10000",
          "description": "The endless banner is sent one line at a time. This is the delay in milliseconds between individual lines.",
          "label": "MSDELAY",
          "name": "MSDELAY"
        },
        {
          "default": "32",
          "description": "The length of each line is randomized. This controls the maximum length of each line. Shorter lines may keep clients on for longer if they give up after a certain number of bytes.",
          "label": "MAXLINES",
          "name": "MAXLINES"
        },
        {
          "default": "4096",
          "description": "Maximum number of connections to accept at a time. Connections beyond this are not immediately rejected, but will wait in the queue.",
          "label": "MAXCLIENTS",
          "name": "MAXCLIENTS"
        },
        {
          "default": "false",
          "description": "By default, the app logs to container log. If this is set to `true`, the log will be output to file under `/config/logs/endlessh` (`/config` needs to be mapped).",
          "label": "LOGFILE",
          "name": "LOGFILE"
        },
        {
          "default": "",
          "description": "By default, the app binds to IPv4 and IPv6 addresses. Set it to `4` or `6` to bind to IPv4 only or IPv6 only, respectively. Leave blank to bind to both.",
          "label": "BINDFAMILY",
          "name": "BINDFAMILY"
        }
      ],
      "image": "linuxserver/endlessh:latest",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/openssh-server-logo.png",
      "name": "Endlessh",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/endlessh/config</p>",
      "platform": "linux",
      "ports": ["22:2222/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Endlessh",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/endlessh/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/ffmpeg for details.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/ffmpeg:latest",
      "logo": "",
      "name": "Ffmpeg",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ffmpeg/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ffmpeg",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/ffmpeg/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[FIleZilla](https://filezilla-project.org/) Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/filezilla:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/filezilla-logo.png",
      "name": "Filezilla",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/filezilla/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Filezilla",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/filezilla/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Firefox](https://www.mozilla.org/en-US/firefox/) Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/firefox:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/firefox-logo.png",
      "name": "Firefox",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/firefox/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Firefox",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/firefox/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Fleet](https://github.com/linuxserver/fleet) provides an online web interface which displays a set of maintained images from one or more owned repositories.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "DATABASE",
          "description": "A switch to define how Fleet manages user logins. If set to DATABASE, see the related optional params. Can be set to either DATABASE or PROPERTIES.",
          "label": "fleet_admin_authentication_type",
          "name": "fleet_admin_authentication_type"
        },
        {
          "default": "jdbc:mariadb://<url>:3306/fleet",
          "description": "The full JDBC connection string to the Fleet database",
          "label": "fleet_database_url",
          "name": "fleet_database_url"
        },
        {
          "default": "fleet_user",
          "description": "The username with the relevant GRANT permissions for the database",
          "label": "fleet_database_username",
          "name": "fleet_database_username"
        },
        {
          "default": "dbuserpassword",
          "description": "The database user's password.",
          "label": "fleet_database_password",
          "name": "fleet_database_password"
        },
        {
          "default": "randomstring",
          "description": "A string used as part of the password key derivation process.",
          "label": "fleet_admin_secret",
          "name": "fleet_admin_secret"
        }
      ],
      "image": "linuxserver/fleet:latest",
      "logo": "",
      "name": "Fleet",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/fleet/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Fleet",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/fleet/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Folding@home](https://foldingathome.org/) is a distributed computing project for simulating protein dynamics, including the process of protein folding and the movements of proteins implicated in a variety of diseases. It brings together citizen scientists who volunteer to run simulations of protein dynamics on their personal computers. Insights from this data are helping scientists to better understand biology, and providing new opportunities for developing therapeutics.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/foldingathome:latest",
      "logo": "https://foldingathome.org/wp-content/uploads/2016/09/folding-at-home-logo.png",
      "name": "Foldingathome",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/foldingathome/config</p>",
      "platform": "linux",
      "ports": ["7396:7396/tcp", "36330:36330/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Foldingathome",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/foldingathome/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Freshrss](https://freshrss.org/) is a free, self-hostable aggregator for rss feeds.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/freshrss-banner.png",
      "name": "Freshrss",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/freshrss/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Freshrss",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/freshrss/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web Platform"],
      "description": "[Grav](https://github.com/getgrav/grav/) is a Fast, Simple, and Flexible, file-based Web-platform.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grav:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/grav-logo.png",
      "name": "Grav",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/grav/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grav",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/grav/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Grocy](https://github.com/grocy/grocy) is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utility. Keep track of your purchases, how much food you are wasting, what chores need doing and what batteries need charging with this proudly Open Source tool For more information on grocy visit their website and check it out: https://grocy.info",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://grocy.info/img/grocy_logo.svg",
      "name": "Grocy",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/grocy/config</p>",
      "platform": "linux",
      "ports": ["9283:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/grocy/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Guacd](https://guacamole.apache.org/) - Apache Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH. This container is only the backend server component needed to use The official or 3rd party HTML5 frontends.",
      "image": "linuxserver/guacd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/guacd.png",
      "name": "Guacd",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "platform": "linux",
      "ports": ["4822:4822/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacd",
      "type": 1
    },
    {
      "description": "[Habridge](http://bwssystems.com/#/habridge) emulates Philips Hue API to other home automation gateways such as an Amazon Echo/Dot Gen 1 (gen 2 has issues discovering ha-bridge) or other systems that support Philips Hue. The Bridge handles basic commands such as 'On', 'Off' and 'brightness' commands of the hue protocol. This bridge can control most devices that have a distinct API. In the cases of systems that require authorization and/or have APIs that cannot be handled in the current method, a module may need to be built. The Harmony Hub is such a module and so is the Nest module. The Bridge has helpers to build devices for the gateway for the Logitech Harmony Hub, Vera, Vera Lite or Vera Edge, Nest, Somfy Tahoma, Home Assistant, Domoticz, MQTT, HAL, Fibaro, HomeWizard, LIFX, OpenHAB, FHEM, Broadlink and the ability to proxy all of your real Hue bridges behind this bridge. This bridge was built to help put the Internet of Things together. For more information about how to use this software have a look at their Wiki [https://github.com/bwssytems/ha-bridge/wiki](https://github.com/bwssytems/ha-bridge/wiki)",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "<Your Key To Encrypt Security Data>",
          "description": "Key used to secure communication.",
          "label": "SEC_KEY",
          "name": "SEC_KEY"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/habridge:latest",
      "logo": "https://raw.githubusercontent.com/bwssytems/ha-bridge/master/src/main/resources/public/img/favicon.ico",
      "name": "Habridge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/habridge/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "50000:50000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Habridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/habridge/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Headphones](https://github.com/rembo10/headphones) is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/headphones-banner.png",
      "name": "Headphones",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/headphones/config<br>mkdir -p /volume1/docker/headphones/downloads<br>mkdir -p /volume1/docker/headphones/music</p>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/headphones/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/headphones/downloads",
          "container": "/downloads"
        },
        {
          "bind": "/volume1/docker/headphones/music",
          "container": "/music"
        }
      ]
    },
    {
      "description": "[Healthchecks](https://github.com/healthchecks/healthchecks) is a watchdog for your cron jobs. It's a web server that listens for pings from your cron jobs, plus a web interface.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "<SITE_ROOT>",
          "description": "The site's top-level URL and the port it listens to if differrent than 80 or 443 (e.g., https://healthchecks.example.com:8000)",
          "label": "SITE_ROOT",
          "name": "SITE_ROOT"
        },
        {
          "default": "<SITE_NAME>",
          "description": "The site's name (e.g., 'Example Corp HealthChecks')",
          "label": "SITE_NAME",
          "name": "SITE_NAME"
        },
        {
          "default": "<DEFAULT_FROM_EMAIL>",
          "description": "From email for alerts",
          "label": "DEFAULT_FROM_EMAIL",
          "name": "DEFAULT_FROM_EMAIL"
        },
        {
          "default": "<EMAIL_HOST>",
          "description": "SMTP host",
          "label": "EMAIL_HOST",
          "name": "EMAIL_HOST"
        },
        {
          "default": "<EMAIL_PORT>",
          "description": "SMTP port",
          "label": "EMAIL_PORT",
          "name": "EMAIL_PORT"
        },
        {
          "default": "<EMAIL_HOST_USER>",
          "description": "SMTP user",
          "label": "EMAIL_HOST_USER",
          "name": "EMAIL_HOST_USER"
        },
        {
          "default": "<EMAIL_HOST_PASSWORD>",
          "description": "SMTP password",
          "label": "EMAIL_HOST_PASSWORD",
          "name": "EMAIL_HOST_PASSWORD"
        },
        {
          "default": "<True or False>",
          "description": "Use TLS for SMTP (`True` or `False`)",
          "label": "EMAIL_USE_TLS",
          "name": "EMAIL_USE_TLS"
        },
        {
          "default": "<ALLOWED_HOSTS>",
          "description": "array of valid hostnames for the server `['test.com','test2.com']` (default: `['*']`)",
          "label": "ALLOWED_HOSTS",
          "name": "ALLOWED_HOSTS"
        },
        {
          "default": "<SUPERUSER_EMAIL>",
          "description": "Superuser email",
          "label": "SUPERUSER_EMAIL",
          "name": "SUPERUSER_EMAIL"
        },
        {
          "default": "<SUPERUSER_PASSWORD>",
          "description": "Superuser password",
          "label": "SUPERUSER_PASSWORD",
          "name": "SUPERUSER_PASSWORD"
        },
        {
          "default": "True/False",
          "description": "Defaults to False. Set to true to always override the `local_settings.py` file with values from environment variables. Do not set to True if you have made manual modifications to this file.",
          "label": "REGENERATE_SETTINGS",
          "name": "REGENERATE_SETTINGS"
        },
        {
          "default": "<SITE_LOGO_URL>",
          "description": "Custom site logo URL",
          "label": "SITE_LOGO_URL",
          "name": "SITE_LOGO_URL"
        },
        {
          "default": "<SECRET_KEY>",
          "description": "A secret key used for cryptographic signing. docker-healthchecks will generate a secure value if one does not exist",
          "label": "SECRET_KEY",
          "name": "SECRET_KEY"
        },
        {
          "default": "True/False",
          "description": "Defaults to False. A boolean that turns on/off the Apprise integration (https://github.com/caronc/apprise)",
          "label": "APPRISE_ENABLED",
          "name": "APPRISE_ENABLED"
        }
      ],
      "image": "linuxserver/healthchecks:latest",
      "logo": "https://raw.githubusercontent.com/healthchecks/healthchecks/master/static/img/welcome.png",
      "name": "Healthchecks",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/healthchecks/config</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Healthchecks",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/healthchecks/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Documentation"],
      "description": "[HedgeDoc](https://hedgedoc.org/) gives you access to all your files wherever you are. HedgeDoc is a real-time, multi-platform collaborative markdown note editor. This means that you can write notes with other people on your desktop, tablet or even on the phone. You can sign-in via multiple auth providers like Facebook, Twitter, GitHub and many more on the homepage.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "<hostname or ip>",
          "description": "Host address of mysql database",
          "label": "DB_HOST",
          "name": "DB_HOST"
        },
        {
          "default": "3306",
          "description": "Port to access mysql database default is 3306",
          "label": "DB_PORT",
          "name": "DB_PORT"
        },
        {
          "default": "hedgedoc",
          "description": "Database user",
          "label": "DB_USER",
          "name": "DB_USER"
        },
        {
          "default": "<secret password>",
          "description": "Database password",
          "label": "DB_PASS",
          "name": "DB_PASS"
        },
        {
          "default": "hedgedoc",
          "description": "Database name",
          "label": "DB_NAME",
          "name": "DB_NAME"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "localhost",
          "description": "The address the gui will be accessed at (ie. `192.168.1.1` or `hedgedoc.domain.com`).",
          "label": "CMD_DOMAIN",
          "name": "CMD_DOMAIN"
        },
        {
          "default": "true",
          "description": "Set to `false` if accessing at port `80` or `443`.",
          "label": "CMD_URL_ADDPORT",
          "name": "CMD_URL_ADDPORT"
        },
        {
          "default": "false",
          "description": "Set to `true` if accessing over https via reverse proxy.",
          "label": "CMD_PROTOCOL_USESSL",
          "name": "CMD_PROTOCOL_USESSL"
        },
        {
          "default": "3000",
          "description": "If you wish to access hedgedoc at a port different than 80, 443 or 3000, you need to set this to that port (ie. `CMD_PORT=5000`) and change the port mapping accordingly (5000:5000).",
          "label": "CMD_PORT",
          "name": "CMD_PORT"
        }
      ],
      "image": "linuxserver/hedgedoc:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/hedgedoc-banner.png",
      "name": "Hedgedoc",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/hedgedoc/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Hedgedoc",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/hedgedoc/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Heimdall](https://heimdall.site) is a way to organise all those links to your most used web sites and web applications in a simple way. Simplicity is the key to Heimdall. Why not use it as your browser start page? It even has the ability to include a search bar using either Google, Bing or DuckDuckGo.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/heimdall-banner.png",
      "name": "Heimdall",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/heimdall/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/heimdall/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Home Automation"],
      "description": "[Home Assistant Core](https://www.home-assistant.io/) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/homeassistant:latest",
      "logo": "https://github.com/home-assistant/home-assistant.io/raw/next/source/images/favicon-192x192-full.png",
      "name": "Homeassistant",
      "network": "host",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/homeassistant/config</p>",
      "platform": "linux",
      "ports": ["8123:8123/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homeassistant",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/homeassistant/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Htpcmanager](https://github.com/HTPC-Manager/HTPC-Manager) is a front end for many htpc related applications.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/htpcmanager-icon.png",
      "name": "Htpcmanager",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/htpcmanager/config</p>",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Htpcmanager",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/htpcmanager/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["P2P"],
      "description": "[Ipfs](https://ipfs.io/) - A peer-to-peer hypermedia protocol designed to make the web faster, safer, and more open.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/ipfs:latest",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Ipfs-logo-1024-ice-text.png/480px-Ipfs-logo-1024-ice-text.png",
      "name": "Ipfs",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ipfs/config</p>",
      "platform": "linux",
      "ports": [
        "80:80/tcp",
        "4001:4001/tcp",
        "5001:5001/tcp",
        "8080:8080/tcp",
        "443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Ipfs",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/ipfs/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Jackett](https://github.com/Jackett/Jackett) works as a proxy server: it translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping & translation logic - removing the burden from other apps.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "true",
          "description": "Allow Jackett to update inside of the container (currently recommended by Jackett and enabled by default)",
          "label": "AUTO_UPDATE",
          "name": "AUTO_UPDATE"
        },
        {
          "default": "<run options here>",
          "description": "Optionally specify additional arguments to be passed.",
          "label": "RUN_OPTS",
          "name": "RUN_OPTS"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jackett-banner.png",
      "name": "Jackett",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/jackett/config<br>mkdir -p /volume1/docker/jackett/downloads</p>",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/jackett/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/jackett/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[Jellyfin](https://jellyfin.github.io/) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "192.168.0.5",
          "description": "Set the autodiscovery response domain or IP address.",
          "label": "JELLYFIN_PublishedServerUrl",
          "name": "JELLYFIN_PublishedServerUrl"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true",
      "name": "Jellyfin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/jellyfin/config<br>mkdir -p /volume1/docker/jellyfin/data/tvshows<br>mkdir -p /volume1/docker/jellyfin/data/movies</p>",
      "platform": "linux",
      "ports": [
        "8096:8096/tcp",
        "8920:8920/tcp",
        "7359:7359/udp",
        "1900:1900/udp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/jellyfin/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/jellyfin/data/tvshows",
          "container": "/data/tvshows"
        },
        {
          "bind": "/volume1/docker/jellyfin/data/movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/jenkins-builder for details.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jenkins-builder:latest",
      "logo": "",
      "name": "Jenkins-builder",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/jenkins-builder/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jenkins-builder",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/jenkins-builder/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Kanzi](https://lexigr.am/), formerly titled Kodi-Alexa, this custom skill is the ultimate voice remote control for navigating Kodi. It can do anything you can think of (100+ intents). This container also contains lexigram-cli to setup Kanzi with an Amazon Developer Account and automatically deploy it to Amazon.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "kanzi",
          "description": "Specify an invocation name for this skill, use either kanzi or kod.",
          "label": "INVOCATION_NAME",
          "name": "INVOCATION_NAME"
        },
        {
          "default": "https://server.com/kanzi/",
          "description": "Specify the URL at which the webserver is reachable either `https://kanzi.server.com/` or `https://server.com/kanzi/` Note the trailing slash **MUST** be included.",
          "label": "URL_ENDPOINT",
          "name": "URL_ENDPOINT"
        }
      ],
      "image": "linuxserver/kanzi:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/kanzi.png",
      "name": "Kanzi",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/kanzi/config</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Kanzi",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/kanzi/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Lazylibrarian](https://lazylibrarian.gitlab.io/) is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. This container is based on the DobyTang fork.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "linuxserver/calibre-web:calibre|linuxserver/mods:lazylibrarian-ffmpeg",
          "description": "Allows additional functionality to be added, e.g. the Calibredb import program (optional, more info below)",
          "label": "DOCKER_MODS",
          "name": "DOCKER_MODS"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/lazylibrarian-icon.png",
      "name": "Lazylibrarian",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/lazylibrarian/config<br>mkdir -p /volume1/docker/lazylibrarian/downloads<br>mkdir -p /volume1/docker/lazylibrarian/books</p>",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lazylibrarian",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/lazylibrarian/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/lazylibrarian/downloads",
          "container": "/downloads"
        },
        {
          "bind": "/volume1/docker/lazylibrarian/books",
          "container": "/books"
        }
      ]
    },
    {
      "description": "[Ldap-auth](https://github.com/nginxinc/nginx-ldap-auth) software is for authenticating users who request protected resources from servers proxied by nginx. It includes a daemon (ldap-auth) that communicates with an authentication server, and a webserver daemon that generates an authentication cookie based on the user’s credentials. The daemons are written in Python for use with a Lightweight Directory Access Protocol (LDAP) authentication server (OpenLDAP or Microsoft Windows Active Directory 2003 and 2012).",
      "env": [
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "",
          "description": "Optionally define a custom fernet key, has to be base64-encoded 32-byte (only needed if container is frequently recreated, or if using multi-node setups, invalidating previous authentications)",
          "label": "FERNETKEY",
          "name": "FERNETKEY"
        },
        {
          "default": "",
          "description": "Point this to a certificate file to enable HTTP over SSL (HTTPS) for the ldap auth daemon",
          "label": "CERTFILE",
          "name": "CERTFILE"
        },
        {
          "default": "",
          "description": "Point this to the private key file, matching the certificate file referred to in CERTFILE",
          "label": "KEYFILE",
          "name": "KEYFILE"
        }
      ],
      "image": "linuxserver/ldap-auth:latest",
      "logo": "https://jumpcloud.com/wp-content/uploads/2016/12/LDAP_Logo-1420591101.jpg",
      "name": "Ldap-auth",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ldap-auth",
      "type": 1
    },
    {
      "categories": ["Productivity"],
      "description": "[LibreOffice](https://www.libreoffice.org/) is a free and powerful office suite, and a successor to OpenOffice.org (commonly known as OpenOffice). Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/libreoffice:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/libreoffice-logo.png",
      "name": "Libreoffice",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/libreoffice/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Libreoffice",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/libreoffice/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Librespeed](https://github.com/librespeed/speedtest) is a very lightweight Speedtest implemented in Javascript, using XMLHttpRequest and Web Workers. No Flash, No Java, No Websocket, No Bullshit.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "PASSWORD",
          "description": "Set the password for the results database.",
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "default": "false",
          "description": "(optional) set to `true` to enable custom results page in `/config/www/results/index.php`.",
          "label": "CUSTOM_RESULTS",
          "name": "CUSTOM_RESULTS"
        },
        {
          "default": "sqlite",
          "description": "Defaults to `sqlite`, can also be set to `mysql` or `postgresql`.",
          "label": "DB_TYPE",
          "name": "DB_TYPE"
        },
        {
          "default": "DB_NAME",
          "description": "Database name. Required for mysql and pgsql.",
          "label": "DB_NAME",
          "name": "DB_NAME"
        },
        {
          "default": "DB_HOSTNAME",
          "description": "Database address. Required for mysql and pgsql.",
          "label": "DB_HOSTNAME",
          "name": "DB_HOSTNAME"
        },
        {
          "default": "DB_USERNAME",
          "description": "Database username. Required for mysql and pgsql.",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "DB_PASSWORD",
          "description": "Database password. Required for mysql and pgsql.",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "DB_PORT",
          "description": "Database port. Required for mysql.",
          "label": "DB_PORT",
          "name": "DB_PORT"
        }
      ],
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/librespeed/speedtest/master/.logo/logo3.png",
      "name": "Librespeed",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/librespeed/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Librespeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/librespeed/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://github.com/lidarr/Lidarr/raw/develop/Logo/400.png",
      "name": "Lidarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/lidarr/config<br>mkdir -p /volume1/docker/lidarr/music<br>mkdir -p /volume1/docker/lidarr/downloads</p>",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/lidarr/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/lidarr/music",
          "container": "/music"
        },
        {
          "bind": "/volume1/docker/lidarr/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[Limnoria](https://github.com/ProgVal/limnoria) A robust, full-featured, and user/programmer-friendly Python IRC bot, with many existing plugins. Successor of the well-known Supybot.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/limnoria:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-limnoria/master/logo.png",
      "name": "Limnoria",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/limnoria/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Limnoria",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/limnoria/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Lychee](https://lycheeorg.github.io/) is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.' ### UPGRADE WARNING Please note that the v4 upgrade process resets ALL password-protected albums. Any albums that were made public with a password will need to be re-secured.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "mariadb",
          "description": "for specifying the database host",
          "label": "DB_HOST",
          "name": "DB_HOST"
        },
        {
          "default": "lychee",
          "description": "for specifying the database user",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "dbpassword",
          "description": "for specifying the database password",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "lychee",
          "description": "for specifying the database to be used",
          "label": "DB_DATABASE",
          "name": "DB_DATABASE"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/lychee-icon.png",
      "name": "Lychee",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/lychee/config<br>mkdir -p /volume1/docker/lychee/pictures</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/lychee/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/lychee/pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "description": "[Mariadb](https://mariadb.org/) is one of the most popular database servers. Made by the original developers of MySQL.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "ROOT_ACCESS_PASSWORD",
          "description": "Set this to root password for installation (minimum 4 characters).",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "USER_DB_NAME",
          "description": "Specify the name of a database to be created on image startup.",
          "label": "MYSQL_DATABASE",
          "name": "MYSQL_DATABASE"
        },
        {
          "default": "MYSQL_USER",
          "description": "This user will have superuser access to the database specified by MYSQL_DATABASE (do not use root here).",
          "label": "MYSQL_USER",
          "name": "MYSQL_USER"
        },
        {
          "default": "DATABASE_PASSWORD",
          "description": "Set this to the password you want to use for you MYSQL_USER (minimum 4 characters).",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "http://URL1/your.sql,https://URL2/your.sql",
          "description": "Set this to ingest sql files from an http/https endpoint (comma seperated array).",
          "label": "REMOTE_SQL",
          "name": "REMOTE_SQL"
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mariadb-git.png",
      "name": "Mariadb",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mariadb/config</p>",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mariadb",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/mariadb/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Medusa](https://pymedusa.com/) is an automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/medusa-icon.png",
      "name": "Medusa",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/medusa/config<br>mkdir -p /volume1/docker/medusa/downloads<br>mkdir -p /volume1/docker/medusa/tv</p>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/medusa/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/medusa/downloads",
          "container": "/downloads"
        },
        {
          "bind": "/volume1/docker/medusa/tv",
          "container": "/tv"
        }
      ]
    },
    {
      "description": "[Minetest](http://www.minetest.net/) (server) is a near-infinite-world block sandbox game and a game engine, inspired by InfiniMiner, Minecraft, and the like.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "'--gameid minetest'",
          "description": "Optionally specify any [CLI variables](https://wiki.minetest.net/Command_line) you want to launch the app with",
          "label": "CLI_ARGS",
          "name": "CLI_ARGS"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "Minetest",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/minetest/config/.minetest</p>",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/minetest/config/.minetest",
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "description": "[Minisatip](https://github.com/catalinii/minisatip) is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "<parameter>",
          "description": "Specify specific run params for minisatip",
          "label": "RUN_OPTS",
          "name": "RUN_OPTS"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/minisatip-icon.png",
      "name": "Minisatip",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/minisatip/config</p>",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/minisatip/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Mstream](https://mstream.io/) is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mstream-icon.png",
      "name": "Mstream",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mstream/config<br>mkdir -p /volume1/docker/mstream/music</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/mstream/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/mstream/music",
          "container": "/music"
        }
      ]
    },
    {
      "description": "[Muximux](https://github.com/mescon/Muximux) is a lightweight portal to view & manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/muximux-icon.png",
      "name": "Muximux",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/muximux/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/muximux/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Mylar3](https://github.com/mylar3/mylar3) is an automated Comic Book downloader (cbr/cbz) for use with NZB and torrents written in python. It supports SABnzbd, NZBGET, and many torrent clients in addition to DDL.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar3:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mylar-icon.png",
      "name": "Mylar3",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mylar3/config<br>mkdir -p /volume1/docker/mylar3/comics<br>mkdir -p /volume1/docker/mylar3/downloads</p>",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar3",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/mylar3/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/mylar3/comics",
          "container": "/comics"
        },
        {
          "bind": "/volume1/docker/mylar3/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[MySQL Workbench](https://www.mysql.com/products/workbench/) is a unified visual tool for database architects, developers, and DBAs. MySQL Workbench provides data modeling, SQL development, and comprehensive administration tools for server configuration, user administration, backup, and much more.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/mysql-workbench:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mysql-workbench-icon.png",
      "name": "Mysql-workbench",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/mysql-workbench/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mysql-workbench",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/mysql-workbench/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Nano](https://nano.org/) is a digital payment protocol designed to be accessible and lightweight, with a focus on removing inefficiencies present in other cryptocurrencies. With ultrafast transactions and zero fees on a secure, green and decentralized network, this makes Nano ideal for everyday transactions.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "localhost",
          "description": "Default peer host (can be overidden with an array by command line options)",
          "label": "PEER_HOST",
          "name": "PEER_HOST"
        },
        {
          "default": "GENESIS_PUBLIC",
          "description": "Genesis block public key",
          "label": "LIVE_GENESIS_PUB",
          "name": "LIVE_GENESIS_PUB"
        },
        {
          "default": "nano_xxxxxx",
          "description": "Genesis block account",
          "label": "LIVE_GENESIS_ACCOUNT",
          "name": "LIVE_GENESIS_ACCOUNT"
        },
        {
          "default": "WORK_FOR_BLOCK",
          "description": "Genesis block proof of work",
          "label": "LIVE_GENESIS_WORK",
          "name": "LIVE_GENESIS_WORK"
        },
        {
          "default": "BLOCK_SIGNATURE",
          "description": "Genesis block signature",
          "label": "LIVE_GENESIS_SIG",
          "name": "LIVE_GENESIS_SIG"
        },
        {
          "default": "--config node.enable_voting=true",
          "description": "Node run command cli args",
          "label": "CLI_OPTIONS",
          "name": "CLI_OPTIONS"
        },
        {
          "default": "http://example.com/Nano_64_version_20.7z",
          "description": "HTTP/HTTPS endpoint to download a 7z file with the data.ldb to bootstrap to this node",
          "label": "LMDB_BOOTSTRAP_URL",
          "name": "LMDB_BOOTSTRAP_URL"
        }
      ],
      "image": "linuxserver/nano:latest",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Nano_logo.png/640px-Nano_logo.png",
      "name": "Nano",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nano/config</p>",
      "platform": "linux",
      "ports": ["8075:8075/tcp", "7076:3000/tcp", "7077:3001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nano",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/nano/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Nano-wallet](https://nano.org/) is a digital payment protocol designed to be accessible and lightweight, with a focus on removing inefficiencies present in other cryptocurrencies. With ultrafast transactions and zero fees on a secure, green and decentralized network, this makes Nano ideal for everyday transactions. This container is a simple nginx wrapper for the light wallet located [here](https://github.com/linuxserver/nano-wallet). You will need to pass a valid RPC host when accessing this container.",
      "image": "linuxserver/nano-wallet:latest",
      "logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Nano_logo.png/640px-Nano_logo.png",
      "name": "Nano-wallet",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nano-wallet",
      "type": 1
    },
    {
      "description": "[Netbootxyz](https://netboot.xyz) is a way to PXE boot various operating system installers or utilities from one place within the BIOS without the need of having to go retrieve the media to run the tool. iPXE is used to provide a user friendly menu from within the BIOS that lets you easily choose the operating system you want along with any specific types of versions or bootable flags.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1.9.9",
          "description": "Specify a specific version of boot files you want to use from NETBOOT.XYZ (unset pulls latest)",
          "label": "MENU_VERSION",
          "name": "MENU_VERSION"
        },
        {
          "default": "30000:30010",
          "description": "Specify the port range tftp will use for data transfers [(see Wikipedia)](https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol#Details)",
          "label": "PORT_RANGE",
          "name": "PORT_RANGE"
        },
        {
          "default": "/",
          "description": "Specify a sobfolder if running this behind a reverse proxy (IE /proxy/)",
          "label": "SUBFOLDER",
          "name": "SUBFOLDER"
        }
      ],
      "image": "linuxserver/netbootxyz:latest",
      "logo": "https://netboot.xyz/images/netboot.xyz.gif",
      "name": "Netbootxyz",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/netbootxyz/config<br>mkdir -p /volume1/docker/netbootxyz/assets</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp", "69:69/udp", "8080:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Netbootxyz",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/netbootxyz/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/netbootxyz/assets",
          "container": "/assets"
        }
      ]
    },
    {
      "description": "[Netbox](https://github.com/netbox-community/netbox) is an IP address management (IPAM) and data center infrastructure management (DCIM) tool. Initially conceived by the network engineering team at DigitalOcean, NetBox was developed specifically to address the needs of network and infrastructure engineers. It is intended to function as a domain-specific source of truth for network operations.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "<SUPERUSER_EMAIL>",
          "description": "Email address for `admin` account",
          "label": "SUPERUSER_EMAIL",
          "name": "SUPERUSER_EMAIL"
        },
        {
          "default": "<SUPERUSER_PASSWORD>",
          "description": "Password for `admin` account",
          "label": "SUPERUSER_PASSWORD",
          "name": "SUPERUSER_PASSWORD"
        },
        {
          "default": "<ALLOWED_HOST>",
          "description": "The hostname you will use to access the app (i.e., netbox.example.com)",
          "label": "ALLOWED_HOST",
          "name": "ALLOWED_HOST"
        },
        {
          "default": "<DB_NAME>",
          "description": "Database name (default: netbox)",
          "label": "DB_NAME",
          "name": "DB_NAME"
        },
        {
          "default": "<DB_USER>",
          "description": "Database user",
          "label": "DB_USER",
          "name": "DB_USER"
        },
        {
          "default": "<DB_PASSWORD>",
          "description": "Database password",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "<DB_HOST>",
          "description": "Database host (default: postgres)",
          "label": "DB_HOST",
          "name": "DB_HOST"
        },
        {
          "default": "<DB_PORT>",
          "description": "Database port (defaul: 5432)",
          "label": "DB_PORT",
          "name": "DB_PORT"
        },
        {
          "default": "<REDIS_HOST>",
          "description": "Redis host (default: redis)",
          "label": "REDIS_HOST",
          "name": "REDIS_HOST"
        },
        {
          "default": "<REDIS_PORT>",
          "description": "Redis port number (default: 6379)",
          "label": "REDIS_PORT",
          "name": "REDIS_PORT"
        },
        {
          "default": "<REDIS_PASSWORD>",
          "description": "Redis password (default: none)",
          "label": "REDIS_PASSWORD",
          "name": "REDIS_PASSWORD"
        },
        {
          "default": "<REDIS_DB_TASK>",
          "description": "Redis database ID for tasks (default: 0)",
          "label": "REDIS_DB_TASK",
          "name": "REDIS_DB_TASK"
        },
        {
          "default": "<REDIS_DB_CACHE>",
          "description": "Redis database ID for caching (default: 1)",
          "label": "REDIS_DB_CACHE",
          "name": "REDIS_DB_CACHE"
        },
        {
          "default": "<BASE_PATH>",
          "description": "The path you will use to access the app (i.e., /netbox, optional, default: none)",
          "label": "BASE_PATH",
          "name": "BASE_PATH"
        },
        {
          "default": "<REMOTE_AUTH_ENABLED>",
          "description": "Enable remote authentication (optional, default: False)",
          "label": "REMOTE_AUTH_ENABLED",
          "name": "REMOTE_AUTH_ENABLED"
        },
        {
          "default": "<REMOTE_AUTH_BACKEND>",
          "description": "Python path to the custom Django authentication backend to use for external user authentication (optional, default: netbox.authentication.RemoteUserBackend)",
          "label": "REMOTE_AUTH_BACKEND",
          "name": "REMOTE_AUTH_BACKEND"
        },
        {
          "default": "<REMOTE_AUTH_HEADER>",
          "description": "Name of the HTTP header which informs NetBox of the currently authenticated user. (optional, default: HTTP_REMOTE_USER)",
          "label": "REMOTE_AUTH_HEADER",
          "name": "REMOTE_AUTH_HEADER"
        },
        {
          "default": "<REMOTE_AUTH_AUTO_CREATE_USER>",
          "description": "If true, NetBox will automatically create local accounts for users authenticated via a remote service (optional, default: False)",
          "label": "REMOTE_AUTH_AUTO_CREATE_USER",
          "name": "REMOTE_AUTH_AUTO_CREATE_USER"
        },
        {
          "default": "<REMOTE_AUTH_DEFAULT_GROUPS>",
          "description": "The list of groups to assign a new user account when created using remote authentication (optional, default: [])",
          "label": "REMOTE_AUTH_DEFAULT_GROUPS",
          "name": "REMOTE_AUTH_DEFAULT_GROUPS"
        },
        {
          "default": "<REMOTE_AUTH_DEFAULT_PERMISSIONS>",
          "description": "A mapping of permissions to assign a new user account when created using remote authentication (optional, default: {})",
          "label": "REMOTE_AUTH_DEFAULT_PERMISSIONS",
          "name": "REMOTE_AUTH_DEFAULT_PERMISSIONS"
        }
      ],
      "image": "linuxserver/netbox:latest",
      "logo": "https://raw.githubusercontent.com/netbox-community/netbox/develop/docs/netbox_logo.svg",
      "name": "Netbox",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/netbox/config</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Netbox",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/netbox/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Nextcloud](https://nextcloud.com/) gives you access to all your files wherever you are. Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices. Through Nextcloud you also access, sync and share your existing data on that FTP drive at the office, a Dropbox or a NAS you have at home.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/nextcloud:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nextcloud-icon.png",
      "name": "Nextcloud",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nextcloud/config<br>mkdir -p /volume1/docker/nextcloud/data</p>",
      "platform": "linux",
      "ports": ["443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nextcloud",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/nextcloud/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/nextcloud/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Nginx](https://nginx.org/) is a simple webserver with php support. The config files reside in `/config` for easy user customization.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nginx-banner.png",
      "name": "Nginx",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nginx/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/nginx/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Ngircd](https://ngircd.barton.de/) is a free, portable and lightweight Internet Relay Chat server for small or private networks, developed under the GNU General Public License (GPL). It is easy to configure, can cope with dynamic IP addresses, and supports IPv6, SSL-protected connections as well as PAM for authentication. It is written from scratch and not based on the original IRCd.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/ngircd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ngircd-logo.png",
      "name": "Ngircd",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ngircd/config</p>",
      "platform": "linux",
      "ports": ["6667:6667/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ngircd",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/ngircd/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Nntp2nntp](https://github.com/linuxserver/nntp2nntp) proxy allow you to use your NNTP Account from multiple systems, each with own user name and password. It fully supports SSL and you can also limit the access to proxy with SSL certificates. nntp2nntp proxy is very simple and pretty fast. ## Warning Whilst we know of no nntp2nntp security issues the [upstream code](https://github.com/linuxserver/nntp2nntp) for this project has received no changes since 06.08.15 and is likely abandoned permanently. For this reason we strongly recommend you do not make this application public facing and if you must do so other layers of security and SSL should be considered an absolute bare minimum requirement. We see this proxy being used primarily on a LAN so that all the users NNTP applications can share a common set of internal credentials allowing for central managment of the upstream account e.g change provider, server, thread limits for all applications with one global config change.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "<yourUID>",
          "description": "specify your UID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "<yourGID>",
          "description": "specify your GID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/nntp2nntp:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nntp2nntp.png",
      "name": "Nntp2nntp",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nntp2nntp/config</p>",
      "platform": "linux",
      "ports": ["1563:1563/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nntp2nntp",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/nntp2nntp/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Nzbget](http://nzbget.net/) is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "nzbget",
          "description": "Specify the user for web authentication.",
          "label": "NZBGET_USER",
          "name": "NZBGET_USER"
        },
        {
          "default": "tegbzn6789",
          "description": "Specify the password for web authentication.",
          "label": "NZBGET_PASS",
          "name": "NZBGET_PASS"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/nzbget-banner.png",
      "name": "Nzbget",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nzbget/config<br>mkdir -p /volume1/docker/nzbget/downloads</p>",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nzbget",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/nzbget/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/nzbget/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[Nzbhydra2](https://github.com/theotherp/nzbhydra2) is a meta search application for NZB indexers, the 'spiritual successor' to NZBmegasearcH, and an evolution of the original application [NZBHydra](https://github.com/theotherp/nzbhydra). It provides easy access to a number of raw and newznab based indexers. The application NZBHydra 2 is replacing NZBHydra 1 and supports migrating from V1. Be wary that there may be some compatibility issues for those migrating from V1 to V2, so ensure you back up your old configuration before moving over to the new version. **NOTE:** The last version that supports migration is `linuxserver/nzbhydra2:v2.10.2-ls49`",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/hydra-icon.png",
      "name": "Nzbhydra2",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/nzbhydra2/config<br>mkdir -p /volume1/docker/nzbhydra2/downloads</p>",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nzbhydra2",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/nzbhydra2/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/nzbhydra2/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[Ombi](https://ombi.io) allows you to host your own Plex Request and user management system. If you are sharing your Plex server with other users, allow them to request new content using an easy to manage interface! Manage all your requests for Movies and TV with ease, leave notes for the user and get notification when a user requests something. Allow your users to post issues against their requests so you know there is a problem with the audio etc. Even automatically send them weekly newsletters of new content that has been added to your Plex server!",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/ombi",
          "description": "Subfolder can optionally be defined as an env variable for reverse proxies. Keep in mind that once this value is defined, the gui setting for base url no longer works. To use the gui setting, remove this env variable.",
          "label": "BASE_URL",
          "name": "BASE_URL"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ombi.png",
      "name": "Ombi",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ombi/config</p>",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/ombi/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Openssh-server](https://www.openssh.com/) is a sandboxed environment that allows ssh access without giving keys to the entire server. Giving ssh access via private key often means giving full access to the server. This container creates a limited and sandboxed environment that others can ssh into. The users only have access to the folders mapped and the processes running inside this container.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "yourpublickey",
          "description": "Optional ssh public key, which will automatically be added to authorized_keys.",
          "label": "PUBLIC_KEY",
          "name": "PUBLIC_KEY"
        },
        {
          "default": "/path/to/file",
          "description": "Optionally specify a file containing the public key (works with docker secrets).",
          "label": "PUBLIC_KEY_FILE",
          "name": "PUBLIC_KEY_FILE"
        },
        {
          "default": "/path/to/directory/containing/_only_/pubkeys",
          "description": "Optionally specify a directory containing the public keys (works with docker secrets).",
          "label": "PUBLIC_KEY_DIR",
          "name": "PUBLIC_KEY_DIR"
        },
        {
          "default": "https://github.com/username.keys",
          "description": "Optionally specify a URL containing the public key.",
          "label": "PUBLIC_KEY_URL",
          "name": "PUBLIC_KEY_URL"
        },
        {
          "default": "false",
          "description": "Set to `true` to allow `linuxserver.io`, the ssh user, sudo access. Without `USER_PASSWORD` set, this will allow passwordless sudo access.",
          "label": "SUDO_ACCESS",
          "name": "SUDO_ACCESS"
        },
        {
          "default": "false",
          "description": "Set to `true` to allow user/password ssh access. You will want to set `USER_PASSWORD` or `USER_PASSWORD_FILE` as well.",
          "label": "PASSWORD_ACCESS",
          "name": "PASSWORD_ACCESS"
        },
        {
          "default": "password",
          "description": "Optionally set a sudo password for `linuxserver.io`, the ssh user. If this or `USER_PASSWORD_FILE` are not set but `SUDO_ACCESS` is set to true, the user will have passwordless sudo access.",
          "label": "USER_PASSWORD",
          "name": "USER_PASSWORD"
        },
        {
          "default": "/path/to/file",
          "description": "Optionally specify a file that contains the password. This setting supersedes the `USER_PASSWORD` option (works with docker secrets).",
          "label": "USER_PASSWORD_FILE",
          "name": "USER_PASSWORD_FILE"
        },
        {
          "default": "linuxserver.io",
          "description": "Optionally specify a user name (Default:`linuxserver.io`)",
          "label": "USER_NAME",
          "name": "USER_NAME"
        }
      ],
      "image": "linuxserver/openssh-server:latest",
      "logo": "https://upload.wikimedia.org/wikipedia/en/6/65/OpenSSH_logo.png",
      "name": "Openssh-server",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/openssh-server/config</p>",
      "platform": "linux",
      "ports": ["2222:2222/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Openssh-server",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/openssh-server/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Openvscode-server](https://github.com/gitpod-io/openvscode-server) provides a version of VS Code that runs a server on a remote machine and allows access through a modern web browser.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "",
          "description": "Optional security token for accessing the Web UI (ie. `supersecrettoken`).",
          "label": "CONNECTION_TOKEN",
          "name": "CONNECTION_TOKEN"
        },
        {
          "default": "",
          "description": "Optional path to a file inside the container that contains the security token for accessing the Web UI (ie. `/path/to/file`). Overrides `CONNECTION_TOKEN`.",
          "label": "CONNECTION_SECRET",
          "name": "CONNECTION_SECRET"
        },
        {
          "default": "password",
          "description": "If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password.",
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "",
          "description": "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`.",
          "label": "SUDO_PASSWORD_HASH",
          "name": "SUDO_PASSWORD_HASH"
        }
      ],
      "image": "linuxserver/openvscode-server:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/openvscode-server-logo.png",
      "name": "Openvscode-server",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/openvscode-server/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Openvscode-server",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/openvscode-server/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Oscam](http://www.streamboard.tv/oscam/) is an Open Source Conditional Access Module software used for descrambling DVB transmissions using smart cards. It's both a server and a client.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/oscam-logo.png",
      "name": "Oscam",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/oscam/config</p>",
      "platform": "linux",
      "ports": ["8888:8888/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Oscam",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/oscam/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Overseerr](https://overseerr.dev/) is a request management and media discovery tool built to work with your existing Plex ecosystem.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/overseerr:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/overseerr.png",
      "name": "Overseerr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/overseerr/config</p>",
      "platform": "linux",
      "ports": ["5055:5055/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Overseerr",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/overseerr/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Paperless-ng](https://github.com/jonaswinkler/paperless-ng) is an application by Daniel Quinn and contributors that indexes your scanned documents and allows you to easily search for documents and store metadata alongside your documents.'",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "",
          "description": "Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py",
          "label": "REDIS_URL",
          "name": "REDIS_URL"
        }
      ],
      "image": "linuxserver/paperless-ng:latest",
      "logo": "",
      "name": "Paperless-ng",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/paperless-ng/config<br>mkdir -p /volume1/docker/paperless-ng/data</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Paperless-ng",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/paperless-ng/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/paperless-ng/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Papermerge](https://www.papermerge.com/) is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents. Instead of having piles of paper documents all over your desk, office or drawers - you can quickly scan them and configure your scanner to directly upload to Papermerge DMS.'",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "",
          "description": "Specify an external redis instance to use. Can optionally include a port (`redis:6379`) and/or db (`redis/foo`). If left blank or not included, will use a built-in redis instance. If changed after initial setup will also require manual modification of /config/settings.py",
          "label": "REDIS_URL",
          "name": "REDIS_URL"
        }
      ],
      "image": "linuxserver/papermerge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/papermerge-icon.png",
      "name": "Papermerge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/papermerge/config<br>mkdir -p /volume1/docker/papermerge/data</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Papermerge",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/papermerge/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/papermerge/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Photoshow](https://github.com/thibaud-rohmer/PhotoShow) is gallery software at its easiest, it doesn't even require a database.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/photoshow-icon.png",
      "name": "Photoshow",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/photoshow/config<br>mkdir -p /volume1/docker/photoshow/Pictures:ro<br>mkdir -p /volume1/docker/photoshow/Thumbs</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Photoshow",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/photoshow/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/photoshow/Pictures:ro",
          "container": "/Pictures:ro"
        },
        {
          "bind": "/volume1/docker/photoshow/Thumbs",
          "container": "/Thumbs"
        }
      ]
    },
    {
      "categories": ["System Tools"],
      "description": "[Phpmyadmin](https://github.com/phpmyadmin/phpmyadmin/) is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "1",
          "description": "Set to `1` to allow you to connect to any server. Setting to `0` will only allow you to connect to specified hosts (See Application Setup)",
          "label": "PMA_ARBITRARY",
          "name": "PMA_ARBITRARY"
        },
        {
          "default": "https://phpmyadmin.example.com",
          "description": "Set the URL you will use to access the web frontend",
          "label": "PMA_ABSOLUTE_URI",
          "name": "PMA_ABSOLUTE_URI"
        }
      ],
      "image": "linuxserver/phpmyadmin:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/phpmyadmin-logo.png",
      "name": "Phpmyadmin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/phpmyadmin/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Phpmyadmin",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/phpmyadmin/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Pidgin](https://pidgin.im/) is a chat program which lets you log into accounts on multiple chat networks simultaneously. This means that you can be chatting with friends on XMPP and sitting in an IRC channel at the same time.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/pidgin:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/pidgin-logo.png",
      "name": "Pidgin",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pidgin/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pidgin",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/pidgin/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Piwigo](http://piwigo.org/) is a photo gallery software for the web that comes with powerful features to publish and manage your collection of pictures.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/piwigo-banner.png",
      "name": "Piwigo",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/piwigo/config<br>mkdir -p /volume1/docker/piwigo/gallery</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/piwigo/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/piwigo/gallery",
          "container": "/gallery"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "[Pixapop](https://github.com/bierdok/pixapop) is an open-source single page application to view your photos in the easiest way possible.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "admin",
          "description": "Specify a username to enable authentication.",
          "label": "APP_USERNAME",
          "name": "APP_USERNAME"
        },
        {
          "default": "admin",
          "description": "Specify a password to enable authentication.",
          "label": "APP_PASSWORD",
          "name": "APP_PASSWORD"
        }
      ],
      "image": "linuxserver/pixapop:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/pixapop.png",
      "name": "Pixapop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pixapop/config<br>mkdir -p /volume1/docker/pixapop/photos</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pixapop",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/pixapop/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/pixapop/photos",
          "container": "/photos"
        }
      ]
    },
    {
      "description": "[Plex](https://plex.tv) organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone Plex Media Server. has always been a top priority. Straightforward design and bulk actions mean getting things done faster.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "docker",
          "description": "Set whether to update plex or not - see Application Setup section.",
          "label": "VERSION",
          "name": "VERSION"
        },
        {
          "default": "",
          "description": "Optionally you can obtain a claim token from https://plex.tv/claim and input here. Keep in mind that the claim tokens expire within 4 minutes.",
          "label": "PLEX_CLAIM",
          "name": "PLEX_CLAIM"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "http://the-gadgeteer.com/wp-content/uploads/2015/10/plex-logo-e1446990678679.png",
      "name": "Plex",
      "network": "host",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/plex/config<br>mkdir -p /volume1/docker/plex/tv<br>mkdir -p /volume1/docker/plex/movies</p>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/plex/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/plex/tv",
          "container": "/tv"
        },
        {
          "bind": "/volume1/docker/plex/movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Media Management"],
      "description": "[Plex-meta-manager](https://github.com/meisnate12/Plex-Meta-Manager) is a Python 3 script that can be continuously run using YAML configuration files to update on a schedule the metadata of the movies, shows, and collections in your libraries as well as automatically build collections based on various methods all detailed in the wiki.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/config/config.yml",
          "description": "Specify a custom config file to use.",
          "label": "PMM_CONFIG",
          "name": "PMM_CONFIG"
        },
        {
          "default": "03:00",
          "description": "Comma-separated list of times to update each day. Format: `HH:MM`.",
          "label": "PMM_TIME",
          "name": "PMM_TIME"
        },
        {
          "default": "False",
          "description": "Set to `True` to run without the scheduler.",
          "label": "PMM_RUN",
          "name": "PMM_RUN"
        },
        {
          "default": "False",
          "description": "Set to `True` to run in debug mode with only collections that have `test: true`.",
          "label": "PMM_TEST",
          "name": "PMM_TEST"
        },
        {
          "default": "False",
          "description": "Set to `True` to run without any of the missing movie/show functions.",
          "label": "PMM_NO_MISSING",
          "name": "PMM_NO_MISSING"
        }
      ],
      "image": "linuxserver/plex-meta-manager:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/plex-meta-manager-banner.png",
      "name": "Plex-meta-manager",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/plex-meta-manager/config</p>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex-meta-manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/plex-meta-manager/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Projectsend](http://www.projectsend.org) is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself. Secure, private and easy. No more depending on external services or e-mail to send those files.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "<5000>",
          "description": "To set maximum upload size (in MB), default if unset is 5000.",
          "label": "MAX_UPLOAD",
          "name": "MAX_UPLOAD"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "http://www.projectsend.org/wp-content/themes/projectsend/img/screenshots.png",
      "name": "Projectsend",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/projectsend/config<br>mkdir -p /volume1/docker/projectsend/data</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Projectsend",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/projectsend/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/projectsend/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Pwndrop](https://github.com/kgretzky/pwndrop) is a self-deployable file hosting service for sending out red teaming payloads or securely sharing your private files over HTTP and WebDAV.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/pwndrop",
          "description": "Secret path for admin access. Defaults to `/pwndrop`. This parameter only takes effect during initial install; it can later be changed in the web gui.",
          "label": "SECRET_PATH",
          "name": "SECRET_PATH"
        }
      ],
      "image": "linuxserver/pwndrop:latest",
      "logo": "https://raw.githubusercontent.com/kgretzky/pwndrop/master/media/pwndrop-logo-512.png",
      "name": "Pwndrop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pwndrop/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pwndrop",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/pwndrop/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Pydio-cells](https://pydio.com/) is the nextgen file sharing platform for organizations. It is a full rewrite of the Pydio project using the Go language following a micro-service architecture.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "yourdomain.url",
          "description": "The external url you would like to use to access Pydio Cells (Can be https://domain.url or https://IP:PORT).",
          "label": "EXTERNALURL",
          "name": "EXTERNALURL"
        },
        {
          "default": "0.0.0.0",
          "description": "Enter the LAN IP of the docker server. Required for local access by IP, added to self signed cert as SAN (not required if accessing only through reverse proxy).",
          "label": "SERVER_IP",
          "name": "SERVER_IP"
        }
      ],
      "image": "linuxserver/pydio-cells:latest",
      "logo": "https://raw.githubusercontent.com/wiki/pydio/cells/images/PydioCellsColor.png",
      "name": "Pydio-cells",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pydio-cells/config</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "33060:33060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio-cells",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/pydio-cells/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[pyLoad](https://pyload.net/) is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/pyload-ng:latest",
      "logo": "https://pyload.net/img/banner.png",
      "name": "Pyload-ng",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pyload-ng/config<br>mkdir -p /volume1/docker/pyload-ng/downloads</p>",
      "platform": "linux",
      "ports": ["8000:8000/tcp", "9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pyload-ng",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/pyload-ng/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/pyload-ng/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[Pylon](https://github.com/pylonide/pylon) is a web based integrated development environment built with Node.js as a backend and with a supercharged JavaScript/HTML5 frontend, licensed under GPL version 3. This project originates from Cloud9 v2 project.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "https://github.com/linuxserver/docker-pylon.git",
          "description": "Specify a git repo to checkout on first startup",
          "label": "GITURL",
          "name": "GITURL"
        },
        {
          "default": "myuser",
          "description": "Specify a basic auth user.",
          "label": "PYUSER",
          "name": "PYUSER"
        },
        {
          "default": "mypass",
          "description": "Specify a basic auth password.",
          "label": "PYPASS",
          "name": "PYPASS"
        }
      ],
      "image": "linuxserver/pylon:latest",
      "logo": "https://raw.githubusercontent.com/pylonide/pylon/master/doc/screenshot02.png",
      "name": "Pylon",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/pylon/config<br>mkdir -p /volume1/docker/pylon/code</p>",
      "platform": "linux",
      "ports": ["3131:3131/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pylon",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/pylon/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/pylon/code",
          "container": "/code"
        }
      ]
    },
    {
      "description": "The [Qbittorrent](https://www.qbittorrent.org/) project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "8080",
          "description": "for changing the port of the webui, see below for explanation",
          "label": "WEBUI_PORT",
          "name": "WEBUI_PORT"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/qbittorrent-icon.png",
      "name": "Qbittorrent",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/qbittorrent/config<br>mkdir -p /volume1/docker/qbittorrent/downloads</p>",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Qbittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/qbittorrent/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/qbittorrent/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[QDirStat](https://github.com/shundhammer/qdirstat) Qt-based directory statistics: KDirStat without any KDE -- from the author of the original KDirStat.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/qdirstat:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/qdirstat-logo.png",
      "name": "Qdirstat",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/qdirstat/config<br>mkdir -p /volume1/docker/qdirstat/data</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Qdirstat",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/qdirstat/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/qdirstat/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Quassel-core](http://quassel-irc.org/) is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core. This container handles the IRC connection (quasselcore) and requires a desktop client (quasselclient) to be used and configured. It is designed to be always on and will keep your identity present in IRC even when your clients cannot be online. Backlog (history) is downloaded by your client upon reconnection allowing infinite scrollback through time.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "--config-from-environment",
          "description": "Custom CLI options for Quassel",
          "label": "RUN_OPTS",
          "name": "RUN_OPTS"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "http://icons.iconarchive.com/icons/oxygen-icons.org/oxygen/256/Apps-quassel-icon.png",
      "name": "Quassel-core",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/quassel-core/config</p>",
      "platform": "linux",
      "ports": ["4242:4242/tcp", "113:10113/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel-core",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/quassel-core/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Quassel-web](https://github.com/magne4000/quassel-webserver) is a web client for Quassel. Note that a Quassel-Core instance is required, we have a container available [here.](https://hub.docker.com/r/linuxserver/quassel-core/)",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "192.168.1.10",
          "description": "specify the URL or IP address of your Quassel Core instance",
          "label": "QUASSEL_CORE",
          "name": "QUASSEL_CORE"
        },
        {
          "default": "4242",
          "description": "specify the port of your Quassel Core instance",
          "label": "QUASSEL_PORT",
          "name": "QUASSEL_PORT"
        },
        {
          "default": "/quassel",
          "description": "Specify a url-base in reverse proxy setups ie. `/quassel`",
          "label": "URL_BASE",
          "name": "URL_BASE"
        }
      ],
      "image": "linuxserver/quassel-web:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/quassel-web-banner.png",
      "name": "Quassel-web",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/quassel-web/config</p>",
      "platform": "linux",
      "ports": ["64443:64443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel-web",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/quassel-web/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/radarr.png",
      "name": "Radarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/radarr/config<br>mkdir -p /volume1/docker/radarr/movies<br>mkdir -p /volume1/docker/radarr/downloads</p>",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/radarr/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/radarr/movies",
          "container": "/movies"
        },
        {
          "bind": "/volume1/docker/radarr/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[Raneto](http://raneto.com/) - is an open source Knowledgebase platform that uses static Markdown files to power your Knowledgebase.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/raneto:latest",
      "logo": "https://raw.githubusercontent.com/gilbitron/Raneto/master/logo/logo_readme.png",
      "name": "Raneto",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/raneto/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Raneto",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/raneto/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Rdesktop](http://xrdp.org/) - Ubuntu based containers containing full desktop environments in officially supported flavors accessible via RDP.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/rdesktop:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/rdesktop.png",
      "name": "Rdesktop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p><br>mkdir -p /volume1/docker/rdesktop/config</p>",
      "platform": "linux",
      "ports": ["3389:3389/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Rdesktop",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        },
        {
          "bind": "/volume1/docker/rdesktop/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Remmina](https://remmina.org/) is a remote desktop client written in GTK, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large or tiny screens. Remmina supports multiple network protocols, in an integrated and consistent user interface. Currently RDP, VNC, SPICE, NX, XDMCP, SSH and EXEC are supported.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/remmina:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/remmina-icon.png",
      "name": "Remmina",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/remmina/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Remmina",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/remmina/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Requestrr](https://github.com/darkalfx/requestrr) is a chatbot used to simplify using services like Sonarr/Radarr/Ombi via the use of chat.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/requestrr:latest",
      "logo": "https://github.com/darkalfx/requestrr/raw/master/Logos/requestrr_discord_Icon_512.png",
      "name": "Requestrr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/requestrr/config</p>",
      "platform": "linux",
      "ports": ["4545:4545/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Requestrr",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/requestrr/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Resilio-sync](https://www.resilio.com/individuals/) (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both. There is an official sync image but we created this one as it supports user mapping to simplify permissions for volumes.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://www.resilio.com/img/individual/freeproduct.jpg",
      "name": "Resilio-sync",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/resilio-sync/config<br>mkdir -p /volume1/docker/resilio-sync/downloads<br>mkdir -p /volume1/docker/resilio-sync/sync</p>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "55555:55555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Resilio-sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/resilio-sync/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/resilio-sync/downloads",
          "container": "/downloads"
        },
        {
          "bind": "/volume1/docker/resilio-sync/sync",
          "container": "/sync"
        }
      ]
    },
    {
      "description": "[Rsnapshot](http://www.rsnapshot.org/) is a filesystem snapshot utility based on rsync. rsnapshot makes it easy to make periodic snapshots of local machines, and remote machines over ssh. The code makes extensive use of hard links whenever possible, to greatly reduce the disk space required.'",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/rsnapshot:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/rsnapshot.png",
      "name": "Rsnapshot",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/rsnapshot/config<br>mkdir -p /volume1/docker/rsnapshot/.snapshots<br>mkdir -p /volume1/docker/rsnapshot/data</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Rsnapshot",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/rsnapshot/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/rsnapshot/.snapshots",
          "container": "/.snapshots"
        },
        {
          "bind": "/volume1/docker/rsnapshot/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Sabnzbd](http://sabnzbd.org/) makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sabnzbd-banner.png",
      "name": "Sabnzbd",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sabnzbd/config<br>mkdir -p /volume1/docker/sabnzbd/downloads<br>mkdir -p /volume1/docker/sabnzbd/incomplete-downloads</p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sabnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/sabnzbd/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/sabnzbd/downloads",
          "container": "/downloads"
        },
        {
          "bind": "/volume1/docker/sabnzbd/incomplete-downloads",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "description": "[Scrutiny](https://github.com/AnalogJ/scrutiny) WebUI for smartd S.M.A.R.T monitoring. Scrutiny is a Hard Drive Health Dashboard & Monitoring solution, merging manufacturer provided S.M.A.R.T metrics with real-world failure rates from Backblaze.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "http://localhost:8080",
          "description": "# optional - API endpoint of the scrutiny UI. Do not change unless using as a remote collector",
          "label": "SCRUTINY_API_ENDPOINT",
          "name": "SCRUTINY_API_ENDPOINT"
        },
        {
          "default": "true",
          "description": "# optional - Run the web service.",
          "label": "SCRUTINY_WEB",
          "name": "SCRUTINY_WEB"
        },
        {
          "default": "true",
          "description": "# optional - Run the metrics collector.",
          "label": "SCRUTINY_COLLECTOR",
          "name": "SCRUTINY_COLLECTOR"
        }
      ],
      "image": "linuxserver/scrutiny:latest",
      "logo": "https://raw.githubusercontent.com/AnalogJ/scrutiny/master/docs/dashboard.png",
      "name": "Scrutiny",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/scrutiny/config<br></p>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Scrutiny",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/scrutiny/config",
          "container": "/config"
        },
        {
          "bind": "/run/udev:ro",
          "container": "/run/udev:ro"
        }
      ]
    },
    {
      "description": "[Sickchill](https://github.com/SickChill/SickChill) is an Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sickchill-banner.png",
      "name": "Sickchill",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sickchill/config<br>mkdir -p /volume1/docker/sickchill/downloads<br>mkdir -p /volume1/docker/sickchill/tv</p>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sickchill",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/sickchill/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/sickchill/downloads",
          "container": "/downloads"
        },
        {
          "bind": "/volume1/docker/sickchill/tv",
          "container": "/tv"
        }
      ]
    },
    {
      "description": "[SickGear](https://github.com/sickgear/sickgear) provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.. For more information on SickGear visit their website and check it out: https://github.com/SickGear/SickGear",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/wiki/SickGear/SickGear.Wiki/images/SickGearLogo.png",
      "name": "Sickgear",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sickgear/config<br>mkdir -p /volume1/docker/sickgear/tv<br>mkdir -p /volume1/docker/sickgear/downloads</p>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sickgear",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/sickgear/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/sickgear/tv",
          "container": "/tv"
        },
        {
          "bind": "/volume1/docker/sickgear/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[Smokeping](https://oss.oetiker.ch/smokeping/) keeps track of your network latency. For a full example of what this application is capable of visit [UCDavis](http://smokeping.ucdavis.edu/cgi-bin/smokeping.fcgi).",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://camo.githubusercontent.com/e0694ef783e3fd1d74e6776b28822ced01c7cc17/687474703a2f2f6f73732e6f6574696b65722e63682f736d6f6b6570696e672f696e632f736d6f6b6570696e672d6c6f676f2e706e67",
      "name": "Smokeping",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/smokeping/config<br>mkdir -p /volume1/docker/smokeping/data</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Smokeping",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/smokeping/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/smokeping/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[Snapdrop](https://github.com/RobinLinus/snapdrop) A local file sharing in your browser. Inspired by Apple's Airdrop.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/snapdrop:latest",
      "logo": "https://raw.githubusercontent.com/RobinLinus/snapdrop/master/client/images/logo_transparent_512x512.png",
      "name": "Snapdrop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/snapdrop/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snapdrop",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/snapdrop/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Snipe-it](https://github.com/snipe/snipe-it) makes asset management easy. It was built by people solving real-world IT and asset management problems, and a solid UX has always been a top priority. Straightforward design and bulk actions mean getting things done faster.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "<hostname or ip>",
          "description": "Hostname or IP and port if applicable IE <ip or hostname>:8080",
          "label": "NGINX_APP_URL",
          "name": "NGINX_APP_URL"
        },
        {
          "default": "<mysql host>",
          "description": "Mysql hostname or IP to use",
          "label": "MYSQL_PORT_3306_TCP_ADDR",
          "name": "MYSQL_PORT_3306_TCP_ADDR"
        },
        {
          "default": "<mysql port>",
          "description": "Mysql port to use",
          "label": "MYSQL_PORT_3306_TCP_PORT",
          "name": "MYSQL_PORT_3306_TCP_PORT"
        },
        {
          "default": "<mysql database>",
          "description": "Mysql database to use",
          "label": "MYSQL_DATABASE",
          "name": "MYSQL_DATABASE"
        },
        {
          "default": "<mysql pass>",
          "description": "Mysql user to use",
          "label": "MYSQL_USER",
          "name": "MYSQL_USER"
        },
        {
          "default": "changeme",
          "description": "Mysql password to use",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        }
      ],
      "image": "linuxserver/snipe-it:latest",
      "logo": "https://s3-us-west-2.amazonaws.com/linuxserver-docs/images/snipe-it-logo500x500.png",
      "name": "Snipe-it",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/snipe-it/config</p>",
      "platform": "linux",
      "ports": ["8080:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snipe-it",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/snipe-it/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Media"],
      "description": "[Sonarr](https://sonarr.tv/) (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sonarr-banner.png",
      "name": "Sonarr",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sonarr/config<br>mkdir -p /volume1/docker/sonarr/tv<br>mkdir -p /volume1/docker/sonarr/downloads</p>",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/sonarr/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/sonarr/tv",
          "container": "/tv"
        },
        {
          "bind": "/volume1/docker/sonarr/downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "description": "[DB Browser for SQLite](https://sqlitebrowser.org/) is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/sqlitebrowser:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/sqlitebrowser-banner.png",
      "name": "Sqlitebrowser",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/sqlitebrowser/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sqlitebrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/sqlitebrowser/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "SWAG - Secure Web Application Gateway (formerly known as letsencrypt, no relation to Let's Encrypt™) sets up an Nginx webserver and reverse proxy with php support and a built-in certbot client that automates free SSL server certificate generation and renewal processes (Let's Encrypt and ZeroSSL). It also contains fail2ban for intrusion prevention.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "yourdomain.url",
          "description": "Top url you have control over (`customdomain.com` if you own it, or `customsubdomain.ddnsprovider.com` if dynamic dns).",
          "label": "URL",
          "name": "URL"
        },
        {
          "default": "http",
          "description": "Certbot validation method to use, options are `http`, `dns` or `duckdns` (`dns` method also requires `DNSPLUGIN` variable set) (`duckdns` method requires `DUCKDNSTOKEN` variable set, and the `SUBDOMAINS` variable must be either empty or set to `wildcard`).",
          "label": "VALIDATION",
          "name": "VALIDATION"
        },
        {
          "default": "www,",
          "description": "Subdomains you'd like the cert to cover (comma separated, no spaces) ie. `www,ftp,cloud`. For a wildcard cert, set this _exactly_ to `wildcard` (wildcard cert is available via `dns` and `duckdns` validation only)",
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS"
        },
        {
          "default": "",
          "description": "Optionally define the cert provider. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Otherwise defaults to Let's Encrypt.",
          "label": "CERTPROVIDER",
          "name": "CERTPROVIDER"
        },
        {
          "default": "cloudflare",
          "description": "Required if `VALIDATION` is set to `dns`. Options are `aliyun`, `cloudflare`, `cloudxns`, `cpanel`, `desec`, `digitalocean`, `directadmin`, `dnsimple`, `dnsmadeeasy`, `dnspod`, `domeneshop`, `gandi`, `gehirn`, `google`, `he`, `hetzner`, `infomaniak`, `inwx`, `ionos`, `linode`, `luadns`, `netcup`, `njalla`, `nsone`, `ovh`, `rfc2136`, `route53`, `sakuracloud`, `transip` and `vultr`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`.",
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN"
        },
        {
          "default": "",
          "description": "Optionally override (in seconds) the default propagation time for the dns plugins.",
          "label": "PROPAGATION",
          "name": "PROPAGATION"
        },
        {
          "default": "",
          "description": "Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org",
          "label": "DUCKDNSTOKEN",
          "name": "DUCKDNSTOKEN"
        },
        {
          "default": "",
          "description": "Optional e-mail address used for cert expiration notifications (Required for ZeroSSL).",
          "label": "EMAIL",
          "name": "EMAIL"
        },
        {
          "default": "false",
          "description": "If you wish to get certs only for certain subdomains, but not the main domain (main domain may be hosted on another machine and cannot be validated), set this to `true`",
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS"
        },
        {
          "default": "",
          "description": "Additional fully qualified domain names (comma separated, no spaces) ie. `extradomain.com,subdomain.anotherdomain.org,*.anotherdomain.org`",
          "label": "EXTRA_DOMAINS",
          "name": "EXTRA_DOMAINS"
        },
        {
          "default": "false",
          "description": "Set to `true` to retrieve certs in staging mode. Rate limits will be much higher, but the resulting cert will not pass the browser's security test. Only to be used for testing purposes.",
          "label": "STAGING",
          "name": "STAGING"
        }
      ],
      "image": "linuxserver/swag:latest",
      "logo": "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/swag.gif",
      "name": "Swag",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/swag/config</p>",
      "platform": "linux",
      "ports": ["443:443/tcp", "80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Swag",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/swag/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Synclounge](https://github.com/samcm/synclounge) is a third party tool that allows you to watch Plex in sync with your friends/family, wherever you are.",
      "env": [
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "plexuser1,plexuser2,email1,machineid1",
          "description": "If set, only the users defined here and the users of the plex servers defined here will be able to access the server. Use e-mails, plex usernames and/or plex server machine ids, comma separated, no spaces.",
          "label": "AUTH_LIST",
          "name": "AUTH_LIST"
        },
        {
          "default": "false",
          "description": "DEPRECATED - (Still works but will be removed in the future in favor of the built-in var `autojoin__room`) - Set to `true` to let users autojoin the server and a room (specified by the `AUTOJOIN_ROOM` var).",
          "label": "AUTOJOIN_ENABLED",
          "name": "AUTOJOIN_ENABLED"
        },
        {
          "default": "roomname",
          "description": "DEPRECATED - (Still works but will be removed in the future in favor of the built-in var `autojoin__room`) - Set the room name for auto joining (requires `AUTOJOIN_ENABLED` set to `true`).",
          "label": "AUTOJOIN_ROOM",
          "name": "AUTOJOIN_ROOM"
        }
      ],
      "image": "linuxserver/synclounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/synclounge-banner.png",
      "name": "Synclounge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p>",
      "platform": "linux",
      "ports": ["8088:8088/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Synclounge",
      "type": 1
    },
    {
      "description": "[Syncthing](https://syncthing.net) replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/syncthing-banner.png",
      "name": "Syncthing",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/syncthing/config<br>mkdir -p /volume1/docker/syncthing/data1<br>mkdir -p /volume1/docker/syncthing/data2</p>",
      "platform": "linux",
      "ports": [
        "8384:8384/tcp",
        "22000:22000/tcp",
        "22000:22000/udp",
        "21027:21027/udp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Syncthing",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/syncthing/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/syncthing/data1",
          "container": "/data1"
        },
        {
          "bind": "/volume1/docker/syncthing/data2",
          "container": "/data2"
        }
      ]
    },
    {
      "categories": ["System Tools"],
      "description": "[syslog-ng](https://www.syslog-ng.com/products/open-source-log-management/) allows you to flexibly collect, parse, classify, rewrite and correlate logs from across your infrastructure and store or route them to log analysis tools.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/syslog-ng:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/syslog-ng-logo.png",
      "name": "Syslog-ng",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/syslog-ng/config<br></p>",
      "platform": "linux",
      "ports": ["514:5514/udp", "601:6601/tcp", "6514:6514/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Syslog-ng",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/syslog-ng/config",
          "container": "/config"
        },
        {
          "bind": "/var/log",
          "container": "/var/log"
        }
      ]
    },
    {
      "description": "[Taisun](https://www.taisun.io/) is an application for a Docker enabled device with an emphasis on providing a web based interface for managing a single server. Taisun allows you to: - Deploy and manage web based virtual desktops. - Deploy Taisun specific stacks of applications - Browse available images on popular Docker repositories - Import a Docker project from any git repository and start developing on your choice of web based IDE or full Linux desktop - Spinup a developer container based on popular frameworks and work from a web based IDE - Single click remote server access to Taisun and your Docker applications",
      "image": "linuxserver/taisun:latest",
      "logo": "https://raw.githubusercontent.com/Taisun-Docker/taisun/master/public/favicon/apple-icon-180x180.png",
      "name": "Taisun",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p></p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Taisun",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "description": "[Tautulli](http://tautulli.com) is a python based web application for monitoring, analytics and notifications for Plex Media Server.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/tautulli-icon.png",
      "name": "Tautulli",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/tautulli/config</p>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/tautulli/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Thelounge](https://thelounge.github.io/) (a fork of shoutIRC) is a web IRC client that you host on your own server.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/thelounge/thelounge/master/client/img/logo-vertical-transparent-bg.svg?sanitize=true",
      "name": "Thelounge",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/thelounge/config</p>",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Thelounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/thelounge/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Transmission](https://www.transmissionbt.com/) is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/combustion-release/",
          "description": "Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu) and [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission).",
          "label": "TRANSMISSION_WEB_HOME",
          "name": "TRANSMISSION_WEB_HOME"
        },
        {
          "default": "username",
          "description": "Specify an optional username for the interface",
          "label": "USER",
          "name": "USER"
        },
        {
          "default": "password",
          "description": "Specify an optional password for the interface",
          "label": "PASS",
          "name": "PASS"
        },
        {
          "default": "iplist",
          "description": "Specify an optional list of comma separated ip whitelist. Fill rpc-whitelist setting.",
          "label": "WHITELIST",
          "name": "WHITELIST"
        },
        {
          "default": "peerport",
          "description": "Specify an optional port for torrent TCP/UDP connections. Fill peer-port setting.",
          "label": "PEERPORT",
          "name": "PEERPORT"
        },
        {
          "default": "dnsnane list",
          "description": "Specify an optional list of comma separated dns name whitelist. Fill rpc-host-whitelist setting.",
          "label": "HOST_WHITELIST",
          "name": "HOST_WHITELIST"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png",
      "name": "Transmission",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/transmission/config<br>mkdir -p /volume1/docker/transmission/downloads<br>mkdir -p /volume1/docker/transmission/watch</p>",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp", "51413:51413/udp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/transmission/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/transmission/downloads",
          "container": "/downloads"
        },
        {
          "bind": "/volume1/docker/transmission/watch",
          "container": "/watch"
        }
      ]
    },
    {
      "description": "[Tvheadend](https://www.tvheadend.org/) works as a proxy server: is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT>IP and HDHomeRun as input sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT>IP streaming. Multiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "<run options here>",
          "description": "Optionally specify additional arguments to be passed. See Additional runtime parameters.",
          "label": "RUN_OPTS",
          "name": "RUN_OPTS"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/tvheadend-big.png",
      "name": "Tvheadend",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/tvheadend/config<br>mkdir -p /volume1/docker/tvheadend/recordings</p>",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/tvheadend/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/tvheadend/recordings",
          "container": "/recordings"
        }
      ]
    },
    {
      "description": "[Ubooquity](https://vaemendis.net/ubooquity/) is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "<maxmem>",
          "description": "To set the maximum memory. ( ex: set '1024' for 1GB )",
          "label": "MAXMEM",
          "name": "MAXMEM"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/ubooquity-banner.png",
      "name": "Ubooquity",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/ubooquity/config<br>mkdir -p /volume1/docker/ubooquity/books<br>mkdir -p /volume1/docker/ubooquity/comics<br>mkdir -p /volume1/docker/ubooquity/files</p>",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/ubooquity/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/ubooquity/books",
          "container": "/books"
        },
        {
          "bind": "/volume1/docker/ubooquity/comics",
          "container": "/comics"
        },
        {
          "bind": "/volume1/docker/ubooquity/files",
          "container": "/files"
        }
      ]
    },
    {
      "categories": ["Networking"],
      "description": "The [Unifi-controller](https://www.ubnt.com/enterprise/#unifi) software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1024",
          "description": "Optionally change the Java memory limit. Set to `default` to reset to default",
          "label": "MEM_LIMIT",
          "name": "MEM_LIMIT"
        },
        {
          "default": "1024",
          "description": "Optionally change the Java initial/minimum memory. Set to `default` to reset to default",
          "label": "MEM_STARTUP",
          "name": "MEM_STARTUP"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/unifi-banner.png",
      "name": "Unifi-controller",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/unifi-controller/config</p>",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8443:8443/tcp",
        "1900:1900/udp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp",
        "5514:5514/udp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Unifi-controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/unifi-controller/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Webgrabplus](http://www.webgrabplus.com) is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "http://www.webgrabplus.com/sites/default/themes/WgTheme/images/slideshows/EPG_fading.jpg",
      "name": "Webgrabplus",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/webgrabplus/config<br>mkdir -p /volume1/docker/webgrabplus/data</p>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Webgrabplus",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/webgrabplus/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/webgrabplus/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Utilities"],
      "description": "[Webtop](https://github.com/linuxserver/gclient) - Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "/",
          "description": "Specify a subfolder to use with reverse proxies, IE `/subfolder/`",
          "label": "SUBFOLDER",
          "name": "SUBFOLDER"
        },
        {
          "default": "en-us-qwerty",
          "description": "See the keyboard layouts section for more information and options.",
          "label": "KEYBOARD",
          "name": "KEYBOARD"
        }
      ],
      "image": "linuxserver/webtop:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png",
      "name": "Webtop",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/webtop/config<br></p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Webtop",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/webtop/config",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "description": "[Wikijs](https://github.com/Requarks/wiki) A modern, lightweight and powerful wiki app built on NodeJS.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/wikijs:latest",
      "logo": "https://static.requarks.io/logo/wikijs-full.svg",
      "name": "Wikijs",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wikijs/config<br>mkdir -p /volume1/docker/wikijs/data</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/wikijs/config",
          "container": "/config"
        },
        {
          "bind": "/volume1/docker/wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "description": "[WireGuard®](https://www.wireguard.com/) is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPsec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running on embedded interfaces and super computers alike, fit for many different circumstances. Initially released for the Linux kernel, it is now cross-platform (Windows, macOS, BSD, iOS, Android) and widely deployable. It is currently under heavy development, but already it might be regarded as the most secure, easiest to use, and simplest VPN solution in the industry.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "wireguard.domain.com",
          "description": "External IP or domain name for docker host. Used in server mode. If set to `auto`, the container will try to determine and set the external IP automatically",
          "label": "SERVERURL",
          "name": "SERVERURL"
        },
        {
          "default": "51820",
          "description": "External port for docker host. Used in server mode.",
          "label": "SERVERPORT",
          "name": "SERVERPORT"
        },
        {
          "default": "1",
          "description": "Number of peers to create confs for. Required for server mode. Can also be a list of names: `myPC,myPhone,myTablet` (alphanumeric only)",
          "label": "PEERS",
          "name": "PEERS"
        },
        {
          "default": "auto",
          "description": "DNS server set in peer/client configs (can be set as `8.8.8.8`). Used in server mode. Defaults to `auto`, which uses wireguard docker host's DNS via included CoreDNS forward.",
          "label": "PEERDNS",
          "name": "PEERDNS"
        },
        {
          "default": "10.13.13.0",
          "description": "Internal subnet for the wireguard and server and peers (only change if it clashes). Used in server mode.",
          "label": "INTERNAL_SUBNET",
          "name": "INTERNAL_SUBNET"
        },
        {
          "default": "0.0.0.0/0",
          "description": "The IPs/Ranges that the peers will be able to reach using the VPN connection. If not specified the default value is: '0.0.0.0/0, ::0/0' This will cause ALL traffic to route through the VPN, if you want split tunneling, set this to only the IPs you would like to use the tunnel AND the ip of the server's WG ip, such as 10.13.13.1.",
          "label": "ALLOWEDIPS",
          "name": "ALLOWEDIPS"
        }
      ],
      "image": "linuxserver/wireguard:latest",
      "logo": "https://www.wireguard.com/img/wireguard.svg",
      "name": "Wireguard",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wireguard/config<br></p>",
      "platform": "linux",
      "ports": ["51820:51820/udp"],
      "restart_policy": "unless-stopped",
      "title": "Wireguard",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/wireguard/config",
          "container": "/config"
        },
        {
          "bind": "/lib/modules",
          "container": "/lib/modules"
        }
      ]
    },
    {
      "description": "[Wireshark](https://www.wireshark.org/) is the world’s foremost and widely-used network protocol analyzer. It lets you see what’s happening on your network at a microscopic level and is the de facto (and often de jure) standard across many commercial and non-profit enterprises, government agencies, and educational institutions. Wireshark development thrives thanks to the volunteer contributions of networking experts around the globe and is the continuation of a project started by Gerald Combs in 1998.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/wireshark:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/wireshark-icon.png",
      "name": "Wireshark",
      "network": "host",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/wireshark/config</p>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wireshark",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/wireshark/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Xbackbone](https://github.com/SergiX44/XBackBone) is a simple, self-hosted, lightweight PHP file manager that support the instant sharing tool ShareX and *NIX systems. It supports uploading and displaying images, GIF, video, code, formatted text, and file downloading and uploading. Also have a web UI with multi user management, past uploads history and search support.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/xbackbone:latest",
      "logo": "https://raw.githubusercontent.com/SergiX44/XBackBone/master/docs/img/xbackbone.png",
      "name": "Xbackbone",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/xbackbone/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Xbackbone",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/xbackbone/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "This container needs special attention. Please check https://hub.docker.com/r/linuxserver/yq for details.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/yq:latest",
      "logo": "",
      "name": "Yq",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/yq/config</p>",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yq",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/yq/config",
          "container": "/config"
        }
      ]
    },
    {
      "description": "[Znc](http://wiki.znc.in/ZNC) is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1024",
          "description": "for GroupID",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "description": "for UserID",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/Amsterdam",
          "description": "Specify a timezone to use for example Europe/Amsterdam",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "http://wiki.znc.in/resources/assets/wiki.png",
      "name": "Znc",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/znc/config</p>",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Znc",
      "type": 1,
      "volumes": [
        {
          "bind": "/volume1/docker/znc/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "lscr.io/linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bazarr.png",
      "name": "bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "lscr.io/linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "lscr.io/linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/embystat.png",
      "name": "embystat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "lscr.io/linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "lscr.io/linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "lscr.io/linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "image": "lscr.io/linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jlesage/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "ports": ["80:8080/tcp", "81:8181/tcp", "443:4443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizrtools/organizr-v2:php-fpm",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/snibox.png",
      "name": "snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Save recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cardigann.png",
      "name": "cardigann",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "lscr.io/linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/davos.png",
      "name": "davos",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK",
          "name": "UMASK",
          "set": "000"
        }
      ],
      "image": "lscr.io/linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deluge-icon.png",
      "namme": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/emby.png",
      "name": "emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "lscr.io/linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "lscr.io/linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/pritunl/Images/pritunl.png",
      "name": "pritunl",
      "note": "Documentation on this containier can be found here: <a href=https://hub.docker.com/r/goofball222/pritunl>https://hub.docker.com/r/goofball222/pritunl</a>",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/pritunl.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bitwarden.png",
      "name": "vaultwarden",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Vaultwarden",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "lscr.io/linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/wikijs.png",
      "name": "wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "UniFi Video"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/UniFiVideo-logo.png",
      "name": "UniFi Video",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1001",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1001",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:latest",
      "name": "deluge-openvpn",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Security"],
      "description": "Dradis Framework: Collaboration and reporting for IT Security teams http://dradisframework.org",
      "image": "raesene/dradis:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dradis-logo.png",
      "name": "dradis",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dradis",
      "type": 1
    },
    {
      "categories": ["Other", "Tools", "Management"],
      "description": "Peppermint is a free and open source tickeg management solution with a range of features",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "5001",
          "label": "PORT",
          "name": "PORT"
        },
        {
          "default": "peppermint",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "1234",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "postgres",
          "label": "DB_HOST",
          "name": "DB_HOST"
        }
      ],
      "image": "pepperlabs/peppermint:latest",
      "logo": "https://raw.githubusercontent.com/Peppermint-Lab/peppermint/master/public/logo.svg",
      "name": "Peppermint",
      "platform": "linux",
      "ports": ["5001:5001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Peppermint",
      "type": 1,
      "volumes": [
        {
          "bind": "/srv/dev-disk-by-label-media/Files/AppData/Config/peppermint",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "[DEPRECATED] Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "airsonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS"
        }
      ],
      "image": "linuxserver/airsonic:arm32v7-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/airsonic-logo.png",
      "name": "airsonic",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://airsonic.github.io/\" target=\"_blank\">https://airsonic.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://airsonic.github.io/docs/install/docker/\" target=\"_blank\">https://airsonic.github.io/docs/install/docker/</a><br><br><br>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/config/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view sites you want to preserve offline.",
      "env": [
        {
          "default": "*",
          "label": "ALLOWED_HOSTS",
          "name": "ALLOWED_HOSTS"
        },
        {
          "default": "750m",
          "label": "MEDIA_MAX_SIZE",
          "name": "MEDIA_MAX_SIZE"
        },
        {
          "default": "true",
          "label": "PUBLIC_INDEX",
          "name": "PUBLIC_INDEX"
        },
        {
          "default": "true",
          "label": "PUBLIC_SNAPSHOTS",
          "name": "PUBLIC_SNAPSHOTS"
        },
        {
          "default": "false",
          "label": "PUBLIC_ADD_VIEW",
          "name": "PUBLIC_ADD_VIEW"
        }
      ],
      "image": "archivebox/archivebox:master",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/archivebox.png",
      "name": "archivebox",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://archivebox.io/\" target=\"_blank\">https://archivebox.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/ArchiveBox/ArchiveBox/wiki/Docker\" target=\"_blank\">https://github.com/ArchiveBox/ArchiveBox/wiki/Docker</a><br><br><br>By default an admin user is not created. You can do so by launching a shell in the container and executing 'archivebox manage createsuperuser'. Documentation is Available <a href='https://github.com/ArchiveBox/ArchiveBox/wiki'>here</a>.",
      "platform": "linux",
      "ports": ["8002:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Archivebox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/archivebox",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/authelia.png",
      "name": "authelia",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.authelia.com/\" target=\"_blank\">https://www.authelia.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.authelia.com/docs/configuration/\" target=\"_blank\">https://www.authelia.com/docs/configuration/</a><br><br><br>Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bazarr.png",
      "name": "bazarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.bazarr.media/\" target=\"_blank\">https://www.bazarr.media/</a><br><b>Official Docker Documentation: </b><a href=\"https://wiki.bazarr.media/Getting-Started/Installation/Docker/docker/\" target=\"_blank\">https://wiki.bazarr.media/Getting-Started/Installation/Docker/docker/</a><br><br><br>",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/beets-icon.png",
      "name": "beets",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://beets.io/\" target=\"_blank\">https://beets.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-beets\" target=\"_blank\">https://docs.linuxserver.io/images/docker-beets</a><br><br><br>",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/booksonic.png",
      "name": "booksonic",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://booksonic.org/\" target=\"_blank\">https://booksonic.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-booksonic-air\" target=\"_blank\">https://docs.linuxserver.io/images/docker-booksonic-air</a><br><br><br>",
      "platform": "linux",
      "ports": ["4041:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "http://192.168.X.Y:6875",
          "description": "Address to access Bookstack. If using a domain, add it here. If not set correctly the app will not be accessible",
          "label": "APP_URL",
          "name": "APP_URL"
        },
        {
          "default": "6875",
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bookstack2.png",
      "name": "bookstack",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.bookstackapp.com/\" target=\"_blank\">https://www.bookstackapp.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.bookstackapp.com/docs/admin/installation/#docker\" target=\"_blank\">https://www.bookstackapp.com/docs/admin/installation/#docker</a><br><br><br>Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/bookstack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Tools", "Web", "Webserver"],
      "description": "Caddy - The Ultimate Server with Automatic HTTPS.  Need to run tools/install_caddy.sh before installing the template.",
      "image": "caddy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/caddy.png",
      "name": "caddy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://caddyserver.com/\" target=\"_blank\">https://caddyserver.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/caddy\" target=\"_blank\">https://hub.docker.com/_/caddy</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_caddy.sh\" target=\"_blank\">install_caddy.sh</a><br><br>Caddy 2 is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "2019:2019/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Caddy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Data",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Caddyfile",
          "container": "/etc/caddy/Caddyfile"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/calibre-web-icon.png",
      "name": "calibre-web",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://calibre-ebook.com/\" target=\"_blank\">https://calibre-ebook.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-calibre-web\" target=\"_blank\">https://docs.linuxserver.io/images/docker-calibre-web</a><br><br><br>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cardigann.png",
      "name": "cardigann",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/cardigann/cardigann\" target=\"_blank\">https://github.com/cardigann/cardigann</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/cardigann/\" target=\"_blank\">https://hub.docker.com/r/linuxserver/cardigann/</a><br><br><br>",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX"
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/Chevereto.png",
      "name": "Chevereto",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://chevereto.com/\" target=\"_blank\">https://chevereto.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/nmtan/chevereto\" target=\"_blank\">https://hub.docker.com/r/nmtan/chevereto</a><br><br><br>",
      "platform": "linux",
      "ports": ["7382:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Cloudflare DDNS - A small and fast DDNS updater for Cloudflare.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "CF_API_TOKEN",
          "name": "CF_API_TOKEN"
        },
        {
          "default": "",
          "label": "DOMAINS (Comma Separated List)",
          "name": "DOMAINS"
        },
        {
          "default": "true",
          "label": "PROXIED",
          "name": "PROXIED"
        }
      ],
      "image": "favonia/cloudflare-ddns:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cloudflare-ddns.png",
      "name": "cloudflare-ddns",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.cloudflare.com/en-gb/learning/dns/glossary/dynamic-dns/\" target=\"_blank\">https://www.cloudflare.com/en-gb/learning/dns/glossary/dynamic-dns/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oznu/cloudflare-ddns/\" target=\"_blank\">https://hub.docker.com/r/oznu/cloudflare-ddns/</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Cloudflare DDNS",
      "type": 1
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/code-server.png",
      "name": "code-server",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://coder.com/\" target=\"_blank\">https://coder.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-code-server\" target=\"_blank\">https://docs.linuxserver.io/images/docker-code-server</a><br><br><br>",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/codiad-icon.png",
      "name": "codiad",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://codiad.com/\" target=\"_blank\">http://codiad.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/Codiad/Codiad/wiki/Quick-installation-using-Docker\" target=\"_blank\">https://github.com/Codiad/Codiad/wiki/Quick-installation-using-Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["7294:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cops-icon.png",
      "name": "cops",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://blog.slucas.fr/projects/calibre-opds-php-server/\" target=\"_blank\">https://blog.slucas.fr/projects/calibre-opds-php-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-cops\" target=\"_blank\">https://docs.linuxserver.io/images/docker-cops</a><br><br><br>",
      "platform": "linux",
      "ports": ["8945:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/couchpotato-icon.png",
      "name": "couchpotato",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://couchpota.to/\" target=\"_blank\">https://couchpota.to/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-couchpotato\" target=\"_blank\">https://docs.linuxserver.io/images/docker-couchpotato</a><br><br><br>",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://owntone.github.io/owntone-server/\" target=\"_blank\">https://owntone.github.io/owntone-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-daapd\" target=\"_blank\">https://docs.linuxserver.io/images/docker-daapd</a><br><br><br>",
      "platform": "linux",
      "ports": ["3689:3689/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "failed2run/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dashmachine_logo.png",
      "name": "dashmachine",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/rmountjoy92/DashMachine\" target=\"_blank\">https://github.com/rmountjoy92/DashMachine</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/rmountjoy92/DashMachine\" target=\"_blank\">https://github.com/rmountjoy92/DashMachine</a><br><br><br>",
      "platform": "linux",
      "ports": ["5100:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/davos.png",
      "name": "davos",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/linuxserver/davos\" target=\"_blank\">https://github.com/linuxserver/davos</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-davos\" target=\"_blank\">https://docs.linuxserver.io/images/docker-davos</a><br><br><br>",
      "platform": "linux",
      "ports": ["7136:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/deemix.png",
      "name": "deemix",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://deemix.app/\" target=\"_blank\">https://deemix.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://gitlab.com/Bockiii/deemix-docker\" target=\"_blank\">https://gitlab.com/Bockiii/deemix-docker</a><br><br><br>Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "022",
          "label": "UMASK",
          "name": "UMASK"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/deluge-icon.png",
      "name": "deluge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.deluge-torrent.org/\" target=\"_blank\">https://www.deluge-torrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-deluge\" target=\"_blank\">https://docs.linuxserver.io/images/docker-deluge</a><br><br><br>",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "CA Toronto",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "192.168.0.0/16",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:arm32v7-latest",
      "name": "deluge-openvpn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.deluge-torrent.org/\" target=\"_blank\">https://www.deluge-torrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/sgtsquiggs/docker-deluge-openvpn\" target=\"_blank\">https://github.com/sgtsquiggs/docker-deluge-openvpn</a><br><br><br>",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://domoticz.com/\" target=\"_blank\">https://domoticz.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-domoticz\" target=\"_blank\">https://docs.linuxserver.io/images/docker-domoticz</a><br><br><br>",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Dozzle is a real-time log viewer for docker containers.",
      "image": "amir20/dozzle:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dozzle.png",
      "name": "dozzle",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://dozzle.dev/\" target=\"_blank\">https://dozzle.dev/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/amir20/dozzle\" target=\"_blank\">https://github.com/amir20/dozzle</a><br><br><br>View logs for docker containers.",
      "platform": "linux",
      "ports": ["8888:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dozzle",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Security"],
      "description": "Dradis Framework: Collaboration and reporting for IT Security teams http://dradisframework.org",
      "image": "raesene/dradis:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dradis-logo.png",
      "name": "dradis",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://dradisframework.com/\" target=\"_blank\">https://dradisframework.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/raesene/dockerized-security-tools\" target=\"_blank\">https://github.com/raesene/dockerized-security-tools</a><br><br><br>",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dradis",
      "type": 1
    },
    {
      "categories": ["Other", "CMD", "Web", "Tools"],
      "description": "Drupal CMS.  Make sure you run the install script under tools before installing.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "drupal",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "drupal",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/drupal.png",
      "name": "drupal",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.drupal.org/\" target=\"_blank\">https://www.drupal.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.drupal.org/docs/develop/local-server-setup/docker-development-environments/docker-with-solr-cloud-integration/docker-configuration\" target=\"_blank\">https://www.drupal.org/docs/develop/local-server-setup/docker-development-environments/docker-with-solr-cloud-integration/docker-configuration</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_drupal.sh\" target=\"_blank\">install_drupal.sh</a><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/drupal.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Drupal",
      "type": 3
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "default": "",
          "label": "SUBDOMAINS (Comma Separated List)",
          "name": "SUBDOMAINS"
        },
        {
          "default": "",
          "label": "TOKEN",
          "name": "TOKEN"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/duckdns.png",
      "name": "duckdns",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.duckdns.org/\" target=\"_blank\">https://www.duckdns.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-duckdns\" target=\"_blank\">https://docs.linuxserver.io/images/docker-duckdns</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/duplicati-icon.png",
      "name": "duplicati",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.duplicati.com/\" target=\"_blank\">https://www.duplicati.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-duplicati\" target=\"_blank\">https://docs.linuxserver.io/images/docker-duplicati</a><br><br><br>",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol.\r\nYou will need to create /portainer/Files/AppData/Config/Mosquitto/config/mosquitto.conf and if needed your password file.\r\nHave a look on https://mosquitto.org/man/mosquitto_passwd-1.html",
      "hostname": "rpi-mosquitto",
      "image": "eclipse-mosquitto:latest",
      "logo": "https://raw.githubusercontent.com/docker-library/docs/757578e3a44e5460a8a11d32a81776f8b74231a9/eclipse-mosquitto/logo.png",
      "name": "mosquitto",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mosquitto.org/\" target=\"_blank\">https://mosquitto.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/eclipse-mosquitto\" target=\"_blank\">https://hub.docker.com/_/eclipse-mosquitto</a><br><br><br>",
      "platform": "linux",
      "ports": ["1883:1883/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Eclipse Mosquitto",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/config",
          "container": "/mosquitto/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/data",
          "container": "/mosquitto/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/log",
          "container": "/mosquitto/log"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/emby.png",
      "name": "emby",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://emby.media/\" target=\"_blank\">https://emby.media/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-emby\" target=\"_blank\">https://docs.linuxserver.io/images/docker-emby</a><br><br><br>",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/embystat.png",
      "name": "embystat",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mregni/EmbyStat\" target=\"_blank\">https://github.com/mregni/EmbyStat</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-embystat\" target=\"_blank\">https://docs.linuxserver.io/images/docker-embystat</a><br><br><br>Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "[arm] Web File Browser which can be used as a middleware or standalone app.",
      "image": "filebrowser/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/filebrowser.png",
      "name": "filebrowser",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://filebrowser.org/\" target=\"_blank\">https://filebrowser.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://filebrowser.org/installation#docker\" target=\"_blank\">https://filebrowser.org/installation#docker</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=30MYRgCObu8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=4\" target=\"_blank\">Installing JDownloader and File Browser On The Pi Docker Server</a><br><br>The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/srv"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Flame is self-hosted startpage for your server. Its design is inspired (heavily) by SUI. Flame is very easy to setup and use. With built-in editors, it allows you to setup your very own application hub in no time - no file editing necessary.",
      "env": [
        {
          "default": "",
          "label": "Flame Password",
          "name": "PASSWORD"
        }
      ],
      "image": "pawelmalak/flame:multiarch",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/flame.png",
      "name": "Flame",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pawelmalak/flame\" target=\"_blank\">https://github.com/pawelmalak/flame</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pawelmalak/flame#with-docker-recommended\" target=\"_blank\">https://github.com/pawelmalak/flame#with-docker-recommended</a><br><br><br>",
      "platform": "linux",
      "ports": ["5005:5005/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Flame",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Flame/data",
          "container": "/app/data"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Games"],
      "description": "This docker image provides the FoundryVTT system for hosting your own virtual table top games.",
      "env": [
        {
          "default": "John",
          "label": "Foundry Account Name",
          "name": "FOUNDRY_USERNAME"
        },
        {
          "default": "password",
          "label": "Foundry Password",
          "name": "FOUNDRY_PASSWORD"
        },
        {
          "default": "changeme",
          "label": "Instance Admin Password",
          "name": "FOUNDRY_ADMIN_KEY"
        },
        {
          "default": "true",
          "label": "CONTAINER_PRESERVE_CONFIG",
          "name": "CONTAINER_PRESERVE_CONFIG"
        }
      ],
      "image": "felddy/foundryvtt:release",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/foundrylogo.png",
      "name": "FoundryVTT",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://foundryvtt.com/\" target=\"_blank\">https://foundryvtt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/felddy/foundryvtt\" target=\"_blank\">https://hub.docker.com/r/felddy/foundryvtt</a><br><br><br>",
      "platform": "linux",
      "ports": ["30000:30000/tcp"],
      "restart_polocy": "unless-stopped",
      "title": "FoundryVTT Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/foundryvtt",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/freshrss-icon.png",
      "name": "freshrss",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.freshrss.org/\" target=\"_blank\">https://www.freshrss.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/FreshRSS/FreshRSS/tree/edge/Docker\" target=\"_blank\">https://github.com/FreshRSS/FreshRSS/tree/edge/Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8132:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "[DEPRECATED] A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gazee-logo.png",
      "name": "gazee",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/hubbcaps/gazee\" target=\"_blank\">https://github.com/hubbcaps/gazee</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/gazee\" target=\"_blank\">https://hub.docker.com/r/linuxserver/gazee</a><br><br><br>",
      "platform": "linux",
      "ports": ["4243:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A simple server for sending and receiving messages",
      "env": [
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "admin",
          "label": "GOTIFY_DEFAULTUSER_NAME",
          "name": "GOTIFY_DEFAULTUSER_NAME"
        },
        {
          "default": "admin123",
          "label": "GOTIFY_DEFAULTUSER_PASS",
          "name": "GOTIFY_DEFAULTUSER_PASS"
        }
      ],
      "image": "gotify/server-arm7:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gotify.png",
      "name": "gotify",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://gotify.net/\" target=\"_blank\">https://gotify.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://gotify.net/docs/install\" target=\"_blank\">https://gotify.net/docs/install</a><br><br><br>ARM7 Image. Documentation is Available <a href='https://gotify.net/docs/index'>here</a>.",
      "platform": "linux",
      "ports": ["9008:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gotify",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/gotify",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/grocy_logo.png",
      "name": "grocy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://grocy.info/\" target=\"_blank\">https://grocy.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-grocy\" target=\"_blank\">https://docs.linuxserver.io/images/docker-grocy</a><br><br><br>",
      "platform": "linux",
      "ports": ["9283:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "[arm] A clientless remote desktop gateway.",
      "image": "oznu/guacamole:armhf",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/guacamole.png",
      "name": "guacamole",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://guacamole.apache.org/\" target=\"_blank\">https://guacamole.apache.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oznu/guacamole\" target=\"_blank\">https://hub.docker.com/r/oznu/guacamole</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=cKAhnf8X1lo&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=3\" target=\"_blank\">Manually Installing Guacamole on Portainer</a><br><br>The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/headphones-icon.png",
      "name": "headphones",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/rembo10/headphones\" target=\"_blank\">https://github.com/rembo10/headphones</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-headphones\" target=\"_blank\">https://docs.linuxserver.io/images/docker-headphones</a><br><br><br>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/heimdall-icon.png",
      "name": "heimdall",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://heimdall.site/\" target=\"_blank\">https://heimdall.site/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-heimdall\" target=\"_blank\">https://docs.linuxserver.io/images/docker-heimdall</a><br><br><br>",
      "platform": "linux",
      "ports": ["7202:80/tcp", "7203:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "description": "Home Assistant is a free and open-source software for home automation that is designed to be the central control system for smart home devices with focus on local control and privacy.",
      "image": "homeassistant/home-assistant:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homeassistant.png",
      "name": "home-assistant",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.home-assistant.io/\" target=\"_blank\">https://www.home-assistant.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.home-assistant.io/installation/raspberrypi#install-home-assistant-container\" target=\"_blank\">https://www.home-assistant.io/installation/raspberrypi#install-home-assistant-container</a><br><br><br>",
      "platform": "linux",
      "ports": ["8999:8123/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Home Assistant",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HomeAssistant/assets",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["HomeAutomation"],
      "description": "Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. There are over 2,000 Homebridge plugins supporting thousands of different smart accessories.",
      "env": [
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1",
          "label": "HOMEBRIDGE_CONFIG_UI",
          "name": "HOMEBRIDGE_CONFIG_UI"
        },
        {
          "default": "8581",
          "label": "HOMEBRIDGE_CONFIG_UI_PORT",
          "name": "HOMEBRIDGE_CONFIG_UI_PORT"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "oznu/homebridge:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homebridge.png",
      "name": "homebridge",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://homebridge.io/\" target=\"_blank\">https://homebridge.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker\" target=\"_blank\">https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker</a><br><br><br>Bringing HomeKit support where there is none",
      "platform": "linux",
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Homebridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/homebridge",
          "container": "/homebridge"
        }
      ]
    },
    {
      "categories": ["HomeAutomation"],
      "description": "Debian Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. There are over 2,000 Homebridge plugins supporting thousands of different smart accessories.",
      "env": [
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1",
          "label": "HOMEBRIDGE_CONFIG_UI",
          "name": "HOMEBRIDGE_CONFIG_UI"
        },
        {
          "default": "8581",
          "label": "HOMEBRIDGE_CONFIG_UI_PORT",
          "name": "HOMEBRIDGE_CONFIG_UI_PORT"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "oznu/homebridge:debian-arm32v7",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homebridge.png",
      "name": "homebridge-debian",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://homebridge.io/\" target=\"_blank\">https://homebridge.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker\" target=\"_blank\">https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker</a><br><br><br>Bringing HomeKit support where there is none",
      "platform": "linux",
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Homebridge - Debian",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/debian-homebridge",
          "container": "/homebridge"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "env": [
        {
          "default": "1000",
          "label": "GID",
          "name": "GID"
        },
        {
          "default": "1000",
          "label": "UID",
          "name": "UID"
        }
      ],
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homer.png",
      "name": "homer",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/bastienwirtz/homer\" target=\"_blank\">https://github.com/bastienwirtz/homer</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md\" target=\"_blank\">https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=_d3J88ootYo&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=2\" target=\"_blank\">Installing and Configuring Homer Dashboard</a><br><br>This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://htpc.io/\" target=\"_blank\">https://htpc.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-htpcmanager\" target=\"_blank\">https://docs.linuxserver.io/images/docker-htpcmanager</a><br><br><br>",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "mjysci/huginn:arm32v7",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/huginn.png",
      "name": "huginn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/huginn/huginn\" target=\"_blank\">https://github.com/huginn/huginn</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/huginn/huginn/tree/master/docker\" target=\"_blank\">https://github.com/huginn/huginn/tree/master/docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["3005:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "InfluxDB is an open source time series database for recording metrics, events, and analytics. You will need to add /portainer/Files/AppData/Config/Influxdb/config/influxdb.conf",
      "hostname": "rpi-influxdb1810",
      "image": "influxdb:1.8.10",
      "logo": "https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/influxdb/logo.png",
      "name": "influxdb1810",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.influxdata.com/\" target=\"_blank\">https://www.influxdata.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.influxdata.com/influxdb/v2.0/install/?t=Docker\" target=\"_blank\">https://docs.influxdata.com/influxdb/v2.0/install/?t=Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8086:8086/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Influxdb 1.8.10",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Influxdb/data",
          "container": "/var/lib/influxdb"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Influxdb/config",
          "container": "/var/lib/influxdb"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jacket-icon.png",
      "name": "jackett",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Jackett/Jackett\" target=\"_blank\">https://github.com/Jackett/Jackett</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-jackett\" target=\"_blank\">https://docs.linuxserver.io/images/docker-jackett</a><br><br><br>",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "JDownloader docker image",
      "env": [
        {
          "default": "",
          "label": "MYJD_DEVICE_NAME",
          "name": "MYJD_DEVICE_NAME"
        },
        {
          "default": "",
          "label": "MYJD_USER",
          "name": "MYJD_USER"
        },
        {
          "default": "",
          "label": "MYJD_PASSWORD",
          "name": "MYJD_PASSWORD"
        }
      ],
      "image": "jaymoulin/jdownloader:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jdownloader.png",
      "name": "JDownloader",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://my.jdownloader.org/\" target=\"_blank\">https://my.jdownloader.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/jaymoulin/docker-jdownloader\" target=\"_blank\">https://github.com/jaymoulin/docker-jdownloader</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=30MYRgCObu8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=4\" target=\"_blank\">Installing JDownloader and File Browser On The Pi Docker Server</a><br><br>",
      "platform": "linux",
      "ports": ["3129:3129/tcp"],
      "restart_policy": "unless-stopped",
      "title": "JDownloader",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/JDownloader",
          "container": "/opt/JDownloader/cfg"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/opt/JDownloader/Downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jellyfin.png",
      "name": "jellyfin",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://jellyfin.org/\" target=\"_blank\">https://jellyfin.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-jellyfin\" target=\"_blank\">https://docs.linuxserver.io/images/docker-jellyfin</a><br><br><br>",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lsioarmhf/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/kodi-icon.png",
      "name": "kodi-headless",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://kodi.tv/\" target=\"_blank\">https://kodi.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/lsioarmhf/kodi-headless-aarch64/\" target=\"_blank\">https://hub.docker.com/r/lsioarmhf/kodi-headless-aarch64/</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8080/tcp", "9090:9090/tcp", "9777:9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config/.kodi"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lazylibrarian.gitlab.io/\" target=\"_blank\">https://lazylibrarian.gitlab.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lazylibrarian\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lazylibrarian</a><br><br><br>",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "[DEPRECATED] This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;",
      "env": [
        {
          "default": "-Xms256m -Xmx512m",
          "label": "EMAIL",
          "name": "EMAIL"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "URL",
          "name": "URL"
        },
        {
          "default": "www,",
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS"
        },
        {
          "default": "false",
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS"
        },
        {
          "default": "2048",
          "label": "DHLEVEL",
          "name": "DHLEVEL"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "http",
          "label": "VALIDATION",
          "name": "VALIDATION"
        },
        {
          "default": "http",
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN"
        }
      ],
      "image": "linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/letsencrypt.png",
      "name": "letsencrypt",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://letsencrypt.org/\" target=\"_blank\">https://letsencrypt.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/letsencrypt\" target=\"_blank\">https://hub.docker.com/r/linuxserver/letsencrypt</a><br><br><br>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An alternative private front-end to Reddit",
      "image": "spikecodes/libreddit:armv7",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/libreddit.png",
      "name": "libreddit",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://libreddit.silkky.cloud/\" target=\"_blank\">https://libreddit.silkky.cloud/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/spikecodes/libreddit#2-docker\" target=\"_blank\">https://github.com/spikecodes/libreddit#2-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8088:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "libreddit",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/libreddit",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/speedtest.png",
      "name": "librespeed",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://librespeed.org/\" target=\"_blank\">https://librespeed.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-librespeed\" target=\"_blank\">https://docs.linuxserver.io/images/docker-librespeed</a><br><br><br>",
      "platform": "linux",
      "ports": ["83:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lidarr.png",
      "name": "lidarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lidarr.audio/\" target=\"_blank\">https://lidarr.audio/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lidarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lidarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "mariadb",
          "label": "DB_HOST",
          "name": "DB_HOST"
        },
        {
          "default": "lychee",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "dbpassword_that_was_set_in_lychee-mariadb",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "lychee",
          "label": "DB_DATABASE",
          "name": "DB_DATABASE"
        },
        {
          "default": "3306",
          "label": "DB_PORT",
          "name": "DB_PORT"
        }
      ],
      "image": "linuxserver/lychee:arm32v7-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lychee-icon.png",
      "name": "lychee",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lycheeorg.github.io/\" target=\"_blank\">https://lycheeorg.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lychee\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lychee</a><br><br><br>",
      "platform": "linux",
      "ports": ["84:84/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee With Mariadb is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "lychee",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "lychee",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lychee-icon.png",
      "name": "lychee-mariadb",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lycheeorg.github.io/\" target=\"_blank\">https://lycheeorg.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lychee\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lychee</a><br><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/lychee-mariadb.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Lychee With Mariadb",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "MYSQL_DATABASE",
          "name": "MYSQL_DATABASE"
        },
        {
          "default": "",
          "label": "MYSQL_USER",
          "name": "MYSQL_USER"
        },
        {
          "default": "dbpassword",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "rootpassword",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "image": "linuxserver/mariadb:arm32v7-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mariadb-icon.png",
      "name": "mariadb",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mariadb.org/\" target=\"_blank\">https://mariadb.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mariadb\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mariadb</a><br><br><br>",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A self-hosted recipe manager and meal planner",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "2",
          "label": "WEB_CONCURRENCY",
          "name": "WEB_CONCURRENCY"
        },
        {
          "default": "8",
          "label": "MAX_WORKERS",
          "name": "MAX_WORKERS"
        },
        {
          "default": "true",
          "label": "RECIPE_PUBLIC",
          "name": "RECIPE_PUBLIC"
        },
        {
          "default": "true",
          "label": "RECIPE_SHOW_NUTRITION",
          "name": "RECIPE_SHOW_NUTRITION"
        },
        {
          "default": "true",
          "label": "RECIPE_SHOW_ASSETS",
          "name": "RECIPE_SHOW_ASSETS"
        },
        {
          "default": "true",
          "label": "RECIPE_LANDSCAPE_VIEW",
          "name": "RECIPE_LANDSCAPE_VIEW"
        },
        {
          "default": "false",
          "label": "RECIPE_DISABLE_COMMENTS",
          "name": "RECIPE_DISABLE_COMMENTS"
        },
        {
          "default": "false",
          "label": "RECIPE_DISABLE_AMOUNT",
          "name": "RECIPE_DISABLE_AMOUNT"
        }
      ],
      "image": "hkotel/mealie:v0.4.3",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mealie.png",
      "name": "mealie",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://hay-kot.github.io/mealie/\" target=\"_blank\">https://hay-kot.github.io/mealie/</a><br><b>Official Docker Documentation: </b><a href=\"https://hay-kot.github.io/mealie/documentation/getting-started/install/\" target=\"_blank\">https://hay-kot.github.io/mealie/documentation/getting-started/install/</a><br><br><br>Default Credentials: Username: changeme@email.com Password: MyPassword. Documentation is Available <a href='https://hay-kot.github.io/mealie/documentation/getting-started/install/'>here</a>.",
      "platform": "linux",
      "ports": ["9925:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mealie",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/mealie",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/medusa-icon.png",
      "name": "medusa",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pymedusa.com/\" target=\"_blank\">https://pymedusa.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-medusa\" target=\"_blank\">https://docs.linuxserver.io/images/docker-medusa</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Games"],
      "description": "This docker image provides a Minecraft Server that will automatically download the latest stable version at startup. You can also run/upgrade to any specific version or the latest snapshot. See the Versions section below for more information.",
      "env": [
        {
          "default": "TRUE",
          "label": "EULA",
          "name": "EULA"
        }
      ],
      "image": "itzg/minecraft-server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/minecraft.png",
      "name": "minecraft",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.minecraft.net/en-us\" target=\"_blank\">https://www.minecraft.net/en-us</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/itzg/docker-minecraft-server#using-docker-compose\" target=\"_blank\">https://github.com/itzg/docker-minecraft-server#using-docker-compose</a><br><br><br>",
      "platform": "linux",
      "ports": ["25565:25565/tcp"],
      "restart_polocy": "unless-stopped",
      "title": "Minecraft Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Minecraft-data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.minetest.net/\" target=\"_blank\">https://www.minetest.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-minetest\" target=\"_blank\">https://docs.linuxserver.io/images/docker-minetest</a><br><br><br>",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/minisatip-icon.png",
      "name": "minisatip",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/catalinii/minisatip\" target=\"_blank\">https://github.com/catalinii/minisatip</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-minisatip\" target=\"_blank\">https://docs.linuxserver.io/images/docker-minisatip</a><br><br><br>",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mstream.png",
      "name": "mstream",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mstream.io/\" target=\"_blank\">https://mstream.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mstream\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mstream</a><br><br><br>",
      "platform": "linux",
      "ports": ["3200:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "yhaenggi/murmur:1.3.4",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/Mumble-logo.png",
      "name": "murmur",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.mumble.info/\" target=\"_blank\">https://www.mumble.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/yhaenggi/murmur-docker\" target=\"_blank\">https://github.com/yhaenggi/murmur-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "default": "",
          "label": "BRAINZCODE",
          "name": "BRAINZCODE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://musicbrainz.org/\" target=\"_blank\">https://musicbrainz.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/linuxserver-archive/docker-musicbrainz\" target=\"_blank\">https://github.com/linuxserver-archive/docker-musicbrainz</a><br><br><br>",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/muximux-icon.png",
      "name": "muximux",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mescon/Muximux\" target=\"_blank\">https://github.com/mescon/Muximux</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-muximux\" target=\"_blank\">https://docs.linuxserver.io/images/docker-muximux</a><br><br><br>",
      "platform": "linux",
      "ports": ["7205:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar3:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mylar-icon.png",
      "name": "mylar",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mylar3/mylar3\" target=\"_blank\">https://github.com/mylar3/mylar3</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mylar3\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mylar3</a><br><br><br>",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "n8n is an extendable workflow automation tool.",
      "env": [
        {
          "default": "true",
          "label": "N8N_BASIC_AUTH_ACTIVE",
          "name": "N8N_BASIC_AUTH_ACTIVE"
        },
        {
          "default": "admin",
          "label": "N8N_BASIC_AUTH_USER",
          "name": "N8N_BASIC_AUTH_USER"
        },
        {
          "default": "admin",
          "label": "N8N_BASIC_AUTH_PASSWORD",
          "name": "N8N_BASIC_AUTH_PASSWORD"
        }
      ],
      "image": "n8nio/n8n:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/n8n.jpg",
      "name": "n8n",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://n8n.io/\" target=\"_blank\">https://n8n.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.n8n.io/getting-started/installation/#docker\" target=\"_blank\">https://docs.n8n.io/getting-started/installation/#docker</a><br><br><br>Documentation is Available <a href='https://docs.n8n.io/'>here</a>",
      "platform": "linux",
      "ports": ["5678:5678/tcp"],
      "restart_policy": "unless-stopped",
      "title": "n8n",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/n8n",
          "container": "/home/node/.n8n"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Troubleshoot slowdowns and anomalies in your infrastructure with thousands of per-second metrics, meaningful visualizations, and insightful health alarms with zero configuration.",
      "env": [
        {
          "default": "1000",
          "label": "DOCKER_USR",
          "name": "DOCKER_USR"
        },
        {
          "default": "1000",
          "label": "DOCKER_GRP",
          "name": "DOCKER_GRP"
        }
      ],
      "image": "netdata/netdata:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/netdata.png",
      "name": "netdata",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.netdata.cloud/\" target=\"_blank\">https://www.netdata.cloud/</a><br><b>Official Docker Documentation: </b><a href=\"https://learn.netdata.cloud/docs/agent/packaging/docker\" target=\"_blank\">https://learn.netdata.cloud/docs/agent/packaging/docker</a><br><br><br>Documentation is Available <a href='https://learn.netdata.cloud/'>here</a>.",
      "platform": "linux",
      "ports": ["19999:19999/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Netdata",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/netdata/netdataconfig",
          "container": "/etc/netdata"
        },
        {
          "bind": "/portainer/Files/AppData/Config/netdata/netdatalib",
          "container": "/var/lib/netdata"
        },
        {
          "bind": "/etc/passwd",
          "container": "/host/etc/passwd:ro"
        },
        {
          "bind": "/etc/group",
          "container": "/host/etc/group:ro"
        },
        {
          "bind": "/proc",
          "container": "/host/proc:ro"
        },
        {
          "bind": "/sys",
          "container": "/host/sys:ro"
        },
        {
          "bind": "/etc/os-release",
          "container": "/host/etc/os-release:ro"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nextcloud.com/\" target=\"_blank\">https://nextcloud.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nextcloud\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nextcloud</a><br><br><br>The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/nextcloud.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ownyourbits/nextcloudpi",
      "name": "nextcloudpi",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ownyourbits.com/nextcloudpi/\" target=\"_blank\">https://ownyourbits.com/nextcloudpi/</a><br><b>Official Docker Documentation: </b><a href=\"https://ownyourbits.com/2017/06/08/nextcloudpi-docker-for-raspberry-pi/\" target=\"_blank\">https://ownyourbits.com/2017/06/08/nextcloudpi-docker-for-raspberry-pi/</a><br><br><b>Extra useful script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/reset_premissions_nextcloud.sh\" target=\"_blank\">reset_premissions_nextcloud.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=E6IrT3g5Gqc&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=9\" target=\"_blank\">Installing Nextcloud on Raspberry Pi Docker</a><br><br>The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "ports": ["4444:4443/tcp", "8443:443/tcp", "8480:8480/tcp"],
      "title": "NextcloudPi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ncdata",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nginx-icon.png",
      "name": "nginx",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nginx.org/en/\" target=\"_blank\">https://nginx.org/en/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nginx\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nginx</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:80/tcp", "8443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.  Please see the install document at https://github.com/pi-hosted/pi-hosted/tree/master/docs installing the template",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "password",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "password",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nginxproxymanager.com/\" target=\"_blank\">https://nginxproxymanager.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://nginxproxymanager.com/setup/#using-mysql-mariadb-database\" target=\"_blank\">https://nginxproxymanager.com/setup/#using-mysql-mariadb-database</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/nginx_proxy_manager.md\" target=\"_blank\">nginx_proxy_manager.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/nginx-proxy-manager.sh\" target=\"_blank\">nginx-proxy-manager.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=yl2Laxbqvo8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=10\" target=\"_blank\">Installing Nginx Proxy Manager on Docker</a><br><br>",
      "platform": "linux",
      "ports": ["80:80/tcp", "81:81/tcp", "443:443/tcp"],
      "repository": {
        "stackfile": "stack/nginx-proxy-manager.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 3
    },
    {
      "categories": ["Other", "Web", "Tools"],
      "description": "Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.  It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click.",
      "env": [
        {
          "default": "your_secret_goes_here",
          "label": "NODE_RED_CREDENTIAL_SECRET",
          "name": "NODE_RED_CREDENTIAL_SECRET"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/node-red.png",
      "name": "node-red",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nodered.org/\" target=\"_blank\">https://nodered.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://nodered.org/docs/getting-started/docker\" target=\"_blank\">https://nodered.org/docs/getting-started/docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["1880:1880/tcp"],
      "repository": {
        "stackfile": "stack/node-red.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Node Red",
      "type": 3
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nzbget-icon.png",
      "name": "nzbget",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nzbget.net/\" target=\"_blank\">https://nzbget.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nzbget\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nzbget</a><br><br><br>",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/hydra-icon.png",
      "name": "nzbhydra2",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/theotherp/nzbhydra2\" target=\"_blank\">https://github.com/theotherp/nzbhydra2</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nzbhydra2\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nzbhydra2</a><br><br><br>",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": "TP-Link Omada is a software-defined network solution. The EAP Controller is used to manage multiple EAPs. Raspberry Pi 1 and Zero are not supported.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "mbentley/omada-controller:latest-armv7l",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/omada.png",
      "name": "omada-controller",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.tp-link.com/us/business-networking/omada-sdn-controller/\" target=\"_blank\">https://www.tp-link.com/us/business-networking/omada-sdn-controller/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/mbentley/omada-controller\" target=\"_blank\">https://hub.docker.com/r/mbentley/omada-controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "8088:8088/tcp",
        "8043:8043/tcp",
        "27001:27001/udp",
        "27002:27002/tcp",
        "29810:29810/udp",
        "29811:29811/tcp",
        "29812:29812/tcp",
        "29813:29813/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Omada EAP Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Omada",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ombi.png",
      "name": "ombi",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ombi.io/\" target=\"_blank\">https://ombi.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-ombi\" target=\"_blank\">https://docs.linuxserver.io/images/docker-ombi</a><br><br><br>",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "default": "eth0",
          "label": "INTERFACE",
          "name": "INTERFACE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://openvpn.net/access-server/\" target=\"_blank\">https://openvpn.net/access-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/openvpn-as/\" target=\"_blank\">https://hub.docker.com/r/linuxserver/openvpn-as/</a><br><br><br>",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/organizr-icon.png",
      "name": "organizr-v2",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://organizr.app/\" target=\"_blank\">https://organizr.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/organizr/organizr\" target=\"_blank\">https://hub.docker.com/r/organizr/organizr</a><br><br><br>",
      "platform": "linux",
      "ports": ["7171:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://trac.streamboard.tv/oscam/\" target=\"_blank\">https://trac.streamboard.tv/oscam/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-oscam\" target=\"_blank\">https://docs.linuxserver.io/images/docker-oscam</a><br><br><br>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Management", "Productivity"],
      "description": "Paperless is an application by Daniel Quinn and contributors that indexes your scanned documents and allows you to easily search for documents and store metadata alongside your documents. https://github.com/jonaswinkler/paperless-ng",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/paperless-ng",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/paperless.png",
      "name": "paperless",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/jonaswinkler/paperless-ng\" target=\"_blank\">https://github.com/jonaswinkler/paperless-ng</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-paperless-ng\" target=\"_blank\">https://docs.linuxserver.io/images/docker-paperless-ng</a><br><br><br>",
      "platform": "linux",
      "ports": ["8005:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Paperless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/paperless/config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/paperless/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/photoshow-icon.png",
      "name": "photoshow",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/thibaud-rohmer/PhotoShow\" target=\"_blank\">https://github.com/thibaud-rohmer/PhotoShow</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-photoshow\" target=\"_blank\">https://docs.linuxserver.io/images/docker-photoshow</a><br><br><br>",
      "platform": "linux",
      "ports": ["7380:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole.png",
      "name": "pihole",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pi-hole/docker-pi-hole/#running-pi-hole-docker\" target=\"_blank\">https://github.com/pi-hole/docker-pi-hole/#running-pi-hole-docker</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole with both DoH (DNS over HTTPS) and DoT (DNS over TLS) clients.",
      "image": "oijkn/pihole-doh-dot:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole_doh-dot.png",
      "name": "pihole DoH/DoT",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oijkn/pihole-doh-dot\" target=\"_blank\">https://hub.docker.com/r/oijkn/pihole-doh-dot</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole DoH/DoT",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole_DoH-DoT",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole_DoH-DoT/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole. This version has Ubound software installed on it so you don't need to rely on external DNS providers.",
      "env": [
        {
          "default": "192.168.0.X",
          "description": "Insert the Raspberry Pi IP here",
          "label": "ServerIP",
          "name": "ServerIP"
        },
        {
          "default": "Europe\\London",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DNSSEC",
          "name": "DNSSEC",
          "select": [
            {
              "default": true,
              "text": "Enable DNSSEC",
              "value": "true"
            },
            {
              "text": "Disable DNSSEC",
              "value": "false"
            }
          ]
        },
        {
          "default": "127.0.0.1#5335",
          "label": "DNS1",
          "name": "DNS1",
          "preset": true
        },
        {
          "default": "127.0.0.1#5335",
          "label": "DNS2",
          "name": "DNS2",
          "preset": true
        }
      ],
      "image": "cbcrowe/pihole-unbound:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole-unbound.png",
      "name": "pihole-unbound",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container\" target=\"_blank\">https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53. For extra information on this container visit the mainteiner <a href='https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container'>GitHub Page</a>. You can add ports: 5335 to access Ubound externally; 22 to enable SSH; 67 to use DHCP Server. Add those ports in Show advanced options.",
      "platform": "linux",
      "ports": ["53:53/tcp", "53:53/udp", "1010:80/tcp", "4443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole-Unbound",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole-Unbound",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole-Unbound/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/piwigo-icon.png",
      "name": "piwigo",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://piwigo.org/\" target=\"_blank\">http://piwigo.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-piwigo\" target=\"_blank\">https://docs.linuxserver.io/images/docker-piwigo</a><br><br><br>",
      "platform": "linux",
      "ports": ["7528:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "latest",
          "label": "VERSION",
          "name": "VERSION"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.plex.tv/\" target=\"_blank\">https://www.plex.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-plex\" target=\"_blank\">https://docs.linuxserver.io/images/docker-plex</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Web"],
      "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "privatebin/nginx-fpm-alpine:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/privatebin.png",
      "name": "privatebin",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://privatebin.info/\" target=\"_blank\">https://privatebin.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/privatebin/nginx-fpm-alpine\" target=\"_blank\">https://hub.docker.com/r/privatebin/nginx-fpm-alpine</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "PrivateBin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/PrivateBin",
          "container": "/srv/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PrivateBin",
          "container": "/srv/cfg"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/projectsend-logo.png",
      "name": "projectsend",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.projectsend.org/\" target=\"_blank\">https://www.projectsend.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-projectsend\" target=\"_blank\">https://docs.linuxserver.io/images/docker-projectsend</a><br><br><br>",
      "platform": "linux",
      "ports": ["7580:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pydio-icon.png",
      "name": "pydio",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.pydio.com/\" target=\"_blank\">https://www.pydio.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/pydio\" target=\"_blank\">https://hub.docker.com/r/linuxserver/pydio</a><br><br><br>",
      "platform": "linux",
      "ports": ["7526:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.qbittorrent.org/\" target=\"_blank\">https://www.qbittorrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-qbittorrent\" target=\"_blank\">https://docs.linuxserver.io/images/docker-qbittorrent</a><br><br><br>",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/quassel-core-icon.png",
      "name": "quassel-core",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://quassel-irc.org/\" target=\"_blank\">https://quassel-irc.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-quassel-core\" target=\"_blank\">https://docs.linuxserver.io/images/docker-quassel-core</a><br><br><br>",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/radarr.png",
      "name": "radarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://radarr.video/\" target=\"_blank\">https://radarr.video/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-radarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-radarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Monitor", "Tools"],
      "description": "Monitor your Raspberry Pi and Dockers using Grafana developed by oijkn. Please download grafana configs from his git https://github.com/oijkn/Docker-Raspberry-PI-Monitoring",
      "env": [
        {
          "default": "15d",
          "label": "PROMETHEUS_RETENTION",
          "name": "PROMETHEUS_RETENTION"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/rpi_monitor.png",
      "name": "RaspberryPi-Docker-Monitor",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">rpi_docker_monitor.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/rpi_docker_monitor.sh\" target=\"_blank\">rpi_docker_monitor.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=IoD3vFuep64&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=8\" target=\"_blank\">Raspberry Pi Docker Monitoring</a><br><br>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "repository": {
        "stackfile": "stack/raspberrypi-monitoring.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Raspberry Pi Docker Monitor",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "Rdesktop is an Ubuntu based container containing full desktop environments in officially supported flavors accessible via RDP.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/rdesktop:latest",
      "logo": "https://raw.githubusercontent.com/novaspirit/pi-hosted/master/images/rdesktop.png",
      "name": "rdesktop",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://xrdp.org/\" target=\"_blank\">http://xrdp.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-rdesktop\" target=\"_blank\">https://docs.linuxserver.io/images/docker-rdesktop</a><br><br><br>",
      "platform": "linux",
      "ports": ["3389:3389/tcp"],
      "restart_policy": "unless-stopped",
      "title": "RDesktop",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/RDesktop/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["project-management", "Other", "Tools"],
      "description": "Open-source project management tool",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "redmine",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "redmine",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "",
          "label": "REDMINE_SECRET_KEY_BASE",
          "name": "REDMINE_SECRET_KEY_BASE"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/redmine.png",
      "name": "redmine",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.redmine.org/\" target=\"_blank\">https://www.redmine.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/redmine\" target=\"_blank\">https://hub.docker.com/_/redmine</a><br><br><br>Default user and password are admin/admin",
      "platform": "linux",
      "ports": ["4180:3000/tcp"],
      "repository": {
        "stackfile": "stack/redmine.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Redmine",
      "type": 3
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/resilio.png",
      "name": "resilio-sync",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.resilio.com/individuals/\" target=\"_blank\">https://www.resilio.com/individuals/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-resilio-sync\" target=\"_blank\">https://docs.linuxserver.io/images/docker-resilio-sync</a><br><br><br>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "55555:55555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "50",
          "label": "MAX_FILE_UPLOADS",
          "name": "MAX_FILE_UPLOADS"
        },
        {
          "default": "info",
          "label": "RT_LOG_LEVEL",
          "name": "RT_LOG_LEVEL"
        },
        {
          "default": "6881",
          "label": "RT_DHT_PORT",
          "name": "RT_DHT_PORT"
        },
        {
          "default": "8000",
          "label": "XMLRPC_PORT",
          "name": "XMLRPC_PORT"
        },
        {
          "default": "8080",
          "label": "RUTORRENT_PORT",
          "name": "RUTORRENT_PORT"
        },
        {
          "default": "9000",
          "label": "WEBDAV_PORT",
          "name": "WEBDAV_PORT"
        },
        {
          "default": "50000",
          "label": "RT_INC_PORT",
          "name": "RT_INC_PORT"
        },
        {
          "default": "erasedata,httprpc",
          "label": "RU_REMOVE_CORE_PLUGINS",
          "name": "RU_REMOVE_CORE_PLUGINS"
        }
      ],
      "image": "linuxserver/crazymax/rtorrent-rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Novik/ruTorrent\" target=\"_blank\">https://github.com/Novik/ruTorrent</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/crazy-max/docker-rtorrent-rutorrent\" target=\"_blank\">https://github.com/crazy-max/docker-rtorrent-rutorrent</a><br><br><br>For ruTorrent basic auth, XMLRPC through nginx and WebDAV on completed downloads, you can populate .htpasswd files with the following command:\\ndocker run --rm -it httpd:2.4-alpine htpasswd -Bbn <username> <password> >> $(pwd)/passwd/webdav.htpasswd",
      "platform": "linux",
      "ports": [
        "${RT_DHT_PORT}:${RT_DHT_PORT}/udp",
        "${XMLRPC_PORT}:${XMLRPC_PORT}/tcp",
        "${RUTORRENT_PORT}:${RUTORRENT_PORT}/tcp",
        "${WEBDAV_PORT}:${WEBDAV_PORT}/tcp",
        "${RT_INC_PORT}:${RT_INC_PORT}/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent/config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent/passwd",
          "container": "/passwd"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sabnzbd.org/\" target=\"_blank\">https://sabnzbd.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sabnzbd\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sabnzbd</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "command": "",
      "description": "Samba has provided secure, stable and fast file and print services for all clients using the SMB/CIFS protocol, such as all versions of DOS and Windows, OS/2, Linux and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "USERID",
          "name": "USERID"
        },
        {
          "default": "1000",
          "label": "GROUPID",
          "name": "GROUPID"
        },
        {
          "default": "guest;guest",
          "label": "USER",
          "name": "USER"
        },
        {
          "default": "true",
          "label": "PERMISSIONS",
          "name": "PERMISSIONS"
        },
        {
          "default": "portainer;/share;yes;no;yes;guest",
          "label": "SHARE",
          "name": "SHARE"
        }
      ],
      "image": "dperson/samba:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/samba.png",
      "name": "Samba",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.samba.org/\" target=\"_blank\">https://www.samba.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/dperson/samba\" target=\"_blank\">https://github.com/dperson/samba</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=2zZ3_1GRWrM&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=11\" target=\"_blank\">Setting up Raspberry Pi Samba Server For File Sharing on Docker</a><br><br>",
      "platform": "linux",
      "ports": ["139:139/tcp", "445:445/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Samba",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/share"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Open-Source Privacy-respecting metasearch engine",
      "env": [
        {
          "default": "http://localhost:9017",
          "label": "BASE_URL",
          "name": "BASE_URL"
        },
        {
          "default": "my-instance",
          "label": "INSTANCE_NAME",
          "name": "INSTANCE_NAME"
        }
      ],
      "image": "searxng/searxng:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/searx.png",
      "name": "SearXNG",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://docs.searxng.org/\" target=\"_blank\">https://docs.searxng.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.searxng.org/admin/installation-docker.html\" target=\"_blank\">https://docs.searxng.org/admin/installation-docker.html</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/searxng.md\" target=\"_blank\">searxng.md</a><br><br><br>",
      "platform": "linux",
      "ports": ["9017:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SearXNG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/searxng",
          "container": "/etc/searxng"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "nicholaswilde/shiori:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/shiori-icon.png",
      "name": "shiori",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/go-shiori/shiori\" target=\"_blank\">https://github.com/go-shiori/shiori</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/nicholaswilde/docker-shiori\" target=\"_blank\">https://github.com/nicholaswilde/docker-shiori</a><br><br><br>",
      "platform": "linux",
      "ports": ["7564:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sickchill-icon.png",
      "name": "sickchill",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://docs.linuxserver.io/images/docker-sickchill\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sickchill</a><br><b>Official Docker Documentation: </b><a href=\"https://sickchill.github.io/\" target=\"_blank\">https://sickchill.github.io/</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sickgear-icon.png",
      "name": "sickgear",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/SickGear/SickGear/wiki\" target=\"_blank\">https://github.com/SickGear/SickGear/wiki</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sickgear\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sickgear</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/smokeping-icon.png",
      "name": "smokeping",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://oss.oetiker.ch/smokeping/\" target=\"_blank\">https://oss.oetiker.ch/smokeping/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-smokeping\" target=\"_blank\">https://docs.linuxserver.io/images/docker-smokeping</a><br><br><br>",
      "platform": "linux",
      "ports": ["4794:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Snippet Box is a simple self-hosted app for organizing your code snippets.",
      "image": "pawelmalak/snippet-box:arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/snibox.png",
      "name": "Snippet-box",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pawelmalak/snippet-box\" target=\"_blank\">https://github.com/pawelmalak/snippet-box</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pawelmalak/snippet-box#with-docker\" target=\"_blank\">https://github.com/pawelmalak/snippet-box#with-docker</a><br><br><br>Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["5010:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snippet-box",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snippet-box",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sonarr-icon.png",
      "name": "sonarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sonarr.tv/\" target=\"_blank\">https://sonarr.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sonarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sonarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Run a Speedtest every hour and graph the results.  See https://hub.docker.com/r/henrywhitaker3/speedtest-tracker/tags for arch options",
      "env": [
        {
          "default": "latest-arm",
          "label": "arch",
          "name": "arch"
        },
        {
          "default": "true",
          "label": "OOKLA_EULA_GDPR",
          "name": "OOKLA_EULA_GDPR"
        }
      ],
      "image": "henrywhitaker3/speedtest-tracker:dev-arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/speedtest-tracker.png",
      "name": "speedtest-tracker",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/henrywhitaker3/Speedtest-Tracker\" target=\"_blank\">https://github.com/henrywhitaker3/Speedtest-Tracker</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/henrywhitaker3/Speedtest-Tracker#using-docker\" target=\"_blank\">https://github.com/henrywhitaker3/Speedtest-Tracker#using-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8765:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Speedtest Tracker",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/speedtest-tracker",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "Sshwifty is a SSH and Telnet connector made for the Web. It can be deployed on your computer or server to provide SSH and Telnet access interface for any compatible (standard) web browser.",
      "image": "niruix/sshwifty:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sshwifty-icon.png",
      "name": "Sshwifty",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sshwifty.herokuapp.com/\" target=\"_blank\">https://sshwifty.herokuapp.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/nirui/sshwifty#docker-image\" target=\"_blank\">https://github.com/nirui/sshwifty#docker-image</a><br><br><br>",
      "platform": "linux",
      "ports": ["8182:8182/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sshwifty",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/syncthing-icon.png",
      "name": "syncthing",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://syncthing.net/\" target=\"_blank\">https://syncthing.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-syncthing\" target=\"_blank\">https://docs.linuxserver.io/images/docker-syncthing</a><br><br><br>",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/tautulli-icon.png",
      "name": "tautulli",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tautulli.com/\" target=\"_blank\">https://tautulli.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-tautulli\" target=\"_blank\">https://docs.linuxserver.io/images/docker-tautulli</a><br><br><br>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://thelounge.chat/\" target=\"_blank\">https://thelounge.chat/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-thelounge\" target=\"_blank\">https://docs.linuxserver.io/images/docker-thelounge</a><br><br><br>",
      "platform": "linux",
      "ports": ["9500:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/tiddlywiki.png",
      "name": "tiddlywiki",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tiddlywiki.com/\" target=\"_blank\">https://tiddlywiki.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/djmaze/tiddlywiki-docker\" target=\"_blank\">https://github.com/djmaze/tiddlywiki-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Proxy", "Security", "Tools"],
      "description": "Cloud-Native Networking Stack That Just Works.",
      "image": "traefik:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/traefik.png",
      "name": "traefik",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://doc.traefik.io/traefik/\" target=\"_blank\">https://doc.traefik.io/traefik/</a><br><b>Official Docker Documentation: </b><a href=\"https://doc.traefik.io/traefik/getting-started/install-traefik/\" target=\"_blank\">https://doc.traefik.io/traefik/getting-started/install-traefik/</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/traefik.sh\" target=\"_blank\">traefik.sh</a><br><br>A simple and lightweight reverse proxy",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Traefik",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/traefik/traefik.yml",
          "container": "/traefik.yml"
        },
        {
          "bind": "/portainer/Files/AppData/Config/traefik/config.yml",
          "container": "/config.yml"
        },
        {
          "bind": "/portainer/Files/AppData/Config/traefik/acme.json",
          "container": "/acme.json"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-transmission\" target=\"_blank\">https://docs.linuxserver.io/images/docker-transmission</a><br><br><br>",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "description": "Optional. Mostly used to narrow down what location to use by the provider",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        },
        {
          "default": "true",
          "label": "watch-dir-enabled",
          "name": "TRANSMISSION_WATCH_DIR_ENABLED"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission-openvpn-v4",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://haugene.github.io/docker-transmission-openvpn/run-container/\" target=\"_blank\">https://haugene.github.io/docker-transmission-openvpn/run-container/</a><br><br><br>List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Transmission OpenVPN Version 4",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "description": "Optional. Mostly used to narrow down what location to use by the provider",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        },
        {
          "default": "true",
          "label": "watch-dir-enabled",
          "name": "TRANSMISSION_WATCH_DIR_ENABLED"
        }
      ],
      "image": "haugene/transmission-openvpn:3.7.1",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://haugene.github.io/docker-transmission-openvpn/run-container/\" target=\"_blank\">https://haugene.github.io/docker-transmission-openvpn/run-container/</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=tGLVEq913_4&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=5\" target=\"_blank\">Torrent with Docker and OPENVPN with Transmission and PIA</a><br><br>List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tvheadend.org/\" target=\"_blank\">https://tvheadend.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-tvheadend\" target=\"_blank\">https://docs.linuxserver.io/images/docker-tvheadend</a><br><br><br>",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "default": "512",
          "label": "MAXMEM",
          "name": "MAXMEM"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ubooquity-icon.png",
      "name": "ubooquity",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://vaemendis.net/ubooquity/\" target=\"_blank\">https://vaemendis.net/ubooquity/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-ubooquity\" target=\"_blank\">https://docs.linuxserver.io/images/docker-ubooquity</a><br><br><br>",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unifi-icon.png",
      "name": "unifi-controller",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ui.com/consoles\" target=\"_blank\">https://ui.com/consoles</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-unifi-controller\" target=\"_blank\">https://docs.linuxserver.io/images/docker-unifi-controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "default": "UniFi Video",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unifivideo-icon.png",
      "name": "UniFi Video",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pducharme/UniFi-Video-Controller\" target=\"_blank\">https://github.com/pducharme/UniFi-Video-Controller</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pducharme/UniFi-Video-Controller\" target=\"_blank\">https://github.com/pducharme/UniFi-Video-Controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Monitor", "Tools"],
      "description": "Monitor your Unifi Controller using Grafana developed by oijkn for the Raspberry Pi Monitor.",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unpoller-logo.png",
      "name": "UnPoller Unifi Controller Monitor",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://unpoller.com/\" target=\"_blank\">https://unpoller.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/novaspirit/pi-hosted/blob/master/docs/UnPoller-Monitor.md\" target=\"_blank\">https://github.com/novaspirit/pi-hosted/blob/master/docs/UnPoller-Monitor.md</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/UnPoller-Monitor.md\" target=\"_blank\">UnPoller-Monitor.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/unpoller-install.sh\" target=\"_blank\">unpoller-install.sh</a><br><br>",
      "platform": "linux",
      "ports": ["8086:8086/tcp"],
      "repository": {
        "stackfile": "stack/unpoller-stack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "UnPoller Monitor",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "It is a self-hosted monitoring tool like 'Uptime Robot'.",
      "image": "louislam/uptime-kuma:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/uptime-kuma.png",
      "name": "uptime-kuma",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/louislam/uptime-kuma\" target=\"_blank\">https://github.com/louislam/uptime-kuma</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/louislam/uptime-kuma/wiki/%F0%9F%94%A7-How-to-Install#-docker\" target=\"_blank\">https://github.com/louislam/uptime-kuma/wiki/%F0%9F%94%A7-How-to-Install#-docker</a><br><br><br>A fancy self-hosted monitoring tool.",
      "platform": "linux",
      "ports": ["3001:3001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Uptime Kuma",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/uptime-kuma",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bitwarden.png",
      "name": "vaultwarden",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/dani-garcia/vaultwarden\" target=\"_blank\">https://github.com/dani-garcia/vaultwarden</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/dani-garcia/vaultwarden/wiki\" target=\"_blank\">https://github.com/dani-garcia/vaultwarden/wiki</a><br><br><br>Alternative Implementation of the Bitwarden Server API in Rust, including web vault.",
      "platform": "linux",
      "ports": ["8010:80/tcp", "3012:3012/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bitwarden",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "todo"],
      "description": "Vikunja With Frontend.  The to-do app to organize your life.  Must run tools/install_vikunja.sh before installing the template.  More informantion at https://vikunja.io/",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "vikunja",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "vikunja",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/vikunja.png",
      "name": "vikunja",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://vikunja.io/\" target=\"_blank\">https://vikunja.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://vikunja.io/docs/full-docker-example/#example-with-nginx-as-proxy\" target=\"_blank\">https://vikunja.io/docs/full-docker-example/#example-with-nginx-as-proxy</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_vikunja.sh\" target=\"_blank\">install_vikunja.sh</a><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/vikunja.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Vikunja With Frontend",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/watchtower.png",
      "name": "watchtower",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://containrrr.dev/watchtower/\" target=\"_blank\">https://containrrr.dev/watchtower/</a><br><b>Official Docker Documentation: </b><a href=\"https://containrrr.dev/watchtower/usage-overview/\" target=\"_blank\">https://containrrr.dev/watchtower/usage-overview/</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=q3wKqk8qVS8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=7\" target=\"_blank\">Upgrading Portainer and Updating Containers</a><br><br>It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/webgrabplus.png",
      "name": "webgrabplus",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://www.webgrabplus.com/\" target=\"_blank\">http://www.webgrabplus.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-webgrabplus\" target=\"_blank\">https://docs.linuxserver.io/images/docker-webgrabplus</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:0.6.0",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/whoogle.png",
      "name": "whoogle",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/benbusby/whoogle-search\" target=\"_blank\">https://github.com/benbusby/whoogle-search</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/benbusby/whoogle-search#g-manual-docker\" target=\"_blank\">https://github.com/benbusby/whoogle-search#g-manual-docker</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=j3ZGxo3ibUs&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=12\" target=\"_blank\">How to Install Whoogle to replace using Google and repo notes</a><br><br>",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wikijs.png",
      "name": "wikijs",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://js.wiki/\" target=\"_blank\">https://js.wiki/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-wikijs\" target=\"_blank\">https://docs.linuxserver.io/images/docker-wikijs</a><br><br><br>",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Docker image for Windows 2000 Advanced Server with SP4.",
      "image": "hectormolinero/qemu-win2000:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/win2000.png",
      "name": "win2000",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/hectorm/docker-qemu-win2000\" target=\"_blank\">https://github.com/hectorm/docker-qemu-win2000</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/hectorm/docker-qemu-win2000#start-an-instance\" target=\"_blank\">https://github.com/hectorm/docker-qemu-win2000#start-an-instance</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=57Gnp0424Qc&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=13\" target=\"_blank\">Checking out Windows 2000 Docker</a><br><br>Why? Your scientists were so preoccupied with whether or not they could, that they didn't stop to think if they should. -- Dr. Ian Malcolm",
      "platform": "linux",
      "ports": ["3389:3389/tcp", "5900:5900/tcp", "6080:6080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Windows 2000",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Win2000/zdrive",
          "container": "/mnt"
        }
      ]
    },
    {
      "categories": ["Other", "VPN"],
      "description": "Fast VPN Server with easy to use User Interface",
      "env": [
        {
          "default": "example.domain.com",
          "description": "Set here your DDNS domain",
          "label": "WG_HOST",
          "name": "WG_HOST"
        },
        {
          "default": "ENTER AN ADMIN PASSWORD",
          "description": "Leave blank to access WebUI without loggin",
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "default": "51820",
          "label": "WG_PORT",
          "name": "WG_PORT"
        },
        {
          "default": "1.1.1.1",
          "label": "WG_DEFAULT_DNS",
          "name": "WG_DEFAULT_DNS"
        },
        {
          "default": "0.0.0.0/0, ::/0",
          "label": "WG_ALLOWED_IPS",
          "name": "WG_ALLOWED_IPS"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wireguard.png",
      "name": "wg-easy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/WeeJeWel/wg-easy/\" target=\"_blank\">https://github.com/WeeJeWel/wg-easy/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/WeeJeWel/wg-easy/#1-install-docker\" target=\"_blank\">https://github.com/WeeJeWel/wg-easy/#1-install-docker</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/wireguard-install.md\" target=\"_blank\">wireguard-install.md</a><br><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/wireguard-easy.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Wireguard Server",
      "type": 3
    },
    {
      "categories": ["WordPress", "Web"],
      "description": "Wordpress setup with a MySQL database",
      "env": [
        {
          "default": "5080",
          "label": "External Port for webserver forward to port 80",
          "name": "WEB_SERVER_PORT"
        },
        {
          "default": "wordpress",
          "label": "Database user name",
          "name": "MYSQL_DATABASE_USER_NAME"
        },
        {
          "label": "Database password for user",
          "name": "MYSQL_DATABASE_PASSWORD"
        },
        {
          "label": "Database root password",
          "name": "MYSQL_DATABASE_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wordpress.png",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://wordpress.com/\" target=\"_blank\">https://wordpress.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/docker-library/docs/tree/master/wordpress#-via-docker-stack-deploy-or-docker-compose\" target=\"_blank\">https://github.com/docker-library/docs/tree/master/wordpress#-via-docker-stack-deploy-or-docker-compose</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/wordpress_installation.md\" target=\"_blank\">wordpress_installation.md</a><br><br><br>Deploys a Wordpress instance connected to a MySQL database.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/wordpress-stack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Wordpress",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://yacht.sh/\" target=\"_blank\">https://yacht.sh/</a><br><b>Official Docker Documentation: </b><a href=\"https://yacht.sh/docs/Installation/Install#via-docker-compose\" target=\"_blank\">https://yacht.sh/docs/Installation/Install#via-docker-compose</a><br><br><br>",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ytdlm.png",
      "name": "youtubedl-material",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Tzahi12345/YoutubeDL-Material\" target=\"_blank\">https://github.com/Tzahi12345/YoutubeDL-Material</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/Tzahi12345/YoutubeDL-Material#docker\" target=\"_blank\">https://github.com/Tzahi12345/YoutubeDL-Material#docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/znc-icon.png",
      "name": "znc",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://wiki.znc.in/ZNC\" target=\"_blank\">https://wiki.znc.in/ZNC</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-znc\" target=\"_blank\">https://docs.linuxserver.io/images/docker-znc</a><br><br><br>",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bazarr.png",
      "name": "bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "bitwardenrs/server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bitwarden.png",
      "name": "bitwardenrs",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bitwarden RS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bitwarden-rs",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/embystat.png",
      "name": "embystat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jlesage/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "ports": ["80:8080/tcp", "81:8181/tcp", "443:4443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizrtools/organizr-v2:php-fpm",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/snibox.png",
      "name": "snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Save recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cardigann.png",
      "name": "cardigann",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/davos.png",
      "name": "davos",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deluge-icon.png",
      "namme": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/emby.png",
      "name": "emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/pritunl/Images/pritunl.png",
      "name": "pritunl",
      "note": "Documentation on this containier can be found here: <a href=https://hub.docker.com/r/goofball222/pritunl>https://hub.docker.com/r/goofball222/pritunl</a>",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/pritunl.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/robocopAlpha/selfhosted_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/wikijs.png",
      "name": "wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "UniFi Video"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/UniFiVideo-logo.png",
      "name": "UniFi Video",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1001",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1001",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:latest",
      "name": "deluge-openvpn",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Security"],
      "description": "Dradis Framework: Collaboration and reporting for IT Security teams http://dradisframework.org",
      "image": "raesene/dradis:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dradis-logo.png",
      "name": "dradis",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dradis",
      "type": 1
    },
    {
      "categories": ["Music"],
      "description": "[DEPRECATED] Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "airsonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS"
        }
      ],
      "image": "linuxserver/airsonic:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/airsonic-logo.png",
      "name": "airsonic",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://airsonic.github.io/\" target=\"_blank\">https://airsonic.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://airsonic.github.io/docs/install/docker/\" target=\"_blank\">https://airsonic.github.io/docs/install/docker/</a><br><br><br>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/config/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic Advanced is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "airsonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS"
        }
      ],
      "image": "linuxserver/airsonic-advanced:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/airsonic-logo.png",
      "name": "airsonic-advanced",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/airsonic-advanced/airsonic-advanced\" target=\"_blank\">https://github.com/airsonic-advanced/airsonic-advanced</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/linuxserver/docker-airsonic-advanced\" target=\"_blank\">https://github.com/linuxserver/docker-airsonic-advanced</a><br><br><br>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic Advanced",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic-Advanced/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic-Advanced/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic-Advanced/config/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view sites you want to preserve offline.",
      "env": [
        {
          "default": "*",
          "label": "ALLOWED_HOSTS",
          "name": "ALLOWED_HOSTS"
        },
        {
          "default": "750m",
          "label": "MEDIA_MAX_SIZE",
          "name": "MEDIA_MAX_SIZE"
        },
        {
          "default": "true",
          "label": "PUBLIC_INDEX",
          "name": "PUBLIC_INDEX"
        },
        {
          "default": "true",
          "label": "PUBLIC_SNAPSHOTS",
          "name": "PUBLIC_SNAPSHOTS"
        },
        {
          "default": "false",
          "label": "PUBLIC_ADD_VIEW",
          "name": "PUBLIC_ADD_VIEW"
        }
      ],
      "image": "archivebox/archivebox:master",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/archivebox.png",
      "name": "archivebox",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://archivebox.io/\" target=\"_blank\">https://archivebox.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/ArchiveBox/ArchiveBox/wiki/Docker\" target=\"_blank\">https://github.com/ArchiveBox/ArchiveBox/wiki/Docker</a><br><br><br>By default an admin user is not created. You can do so by launching a shell in the container and executing 'archivebox manage createsuperuser'. Documentation is Available <a href='https://github.com/ArchiveBox/ArchiveBox/wiki'>here</a>.",
      "platform": "linux",
      "ports": ["8002:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Archivebox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/archivebox",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/authelia.png",
      "name": "authelia",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.authelia.com/\" target=\"_blank\">https://www.authelia.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.authelia.com/docs/configuration/\" target=\"_blank\">https://www.authelia.com/docs/configuration/</a><br><br><br>Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bazarr.png",
      "name": "bazarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.bazarr.media/\" target=\"_blank\">https://www.bazarr.media/</a><br><b>Official Docker Documentation: </b><a href=\"https://wiki.bazarr.media/Getting-Started/Installation/Docker/docker/\" target=\"_blank\">https://wiki.bazarr.media/Getting-Started/Installation/Docker/docker/</a><br><br><br>",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/beets-icon.png",
      "name": "beets",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://beets.io/\" target=\"_blank\">https://beets.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-beets\" target=\"_blank\">https://docs.linuxserver.io/images/docker-beets</a><br><br><br>",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/booksonic.png",
      "name": "booksonic",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://booksonic.org/\" target=\"_blank\">https://booksonic.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-booksonic-air\" target=\"_blank\">https://docs.linuxserver.io/images/docker-booksonic-air</a><br><br><br>",
      "platform": "linux",
      "ports": ["4041:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "http://192.168.X.Y:6875",
          "description": "Address to access Bookstack. If using a domain, add it here. If not set correctly the app will not be accessible",
          "label": "APP_URL",
          "name": "APP_URL"
        },
        {
          "default": "6875",
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bookstack2.png",
      "name": "bookstack",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.bookstackapp.com/\" target=\"_blank\">https://www.bookstackapp.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.bookstackapp.com/docs/admin/installation/#docker\" target=\"_blank\">https://www.bookstackapp.com/docs/admin/installation/#docker</a><br><br><br>Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/bookstack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Tools", "Web", "Webserver"],
      "description": "Caddy - The Ultimate Server with Automatic HTTPS.  Need to run tools/install_caddy.sh before installing the template.",
      "image": "caddy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/caddy.png",
      "name": "caddy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://caddyserver.com/\" target=\"_blank\">https://caddyserver.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/caddy\" target=\"_blank\">https://hub.docker.com/_/caddy</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_caddy.sh\" target=\"_blank\">install_caddy.sh</a><br><br>Caddy 2 is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "2019:2019/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Caddy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Data",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Caddyfile",
          "container": "/etc/caddy/Caddyfile"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/calibre-web-icon.png",
      "name": "calibre-web",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://calibre-ebook.com/\" target=\"_blank\">https://calibre-ebook.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-calibre-web\" target=\"_blank\">https://docs.linuxserver.io/images/docker-calibre-web</a><br><br><br>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cardigann.png",
      "name": "cardigann",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/cardigann/cardigann\" target=\"_blank\">https://github.com/cardigann/cardigann</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/cardigann/\" target=\"_blank\">https://hub.docker.com/r/linuxserver/cardigann/</a><br><br><br>",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX"
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/Chevereto.png",
      "name": "Chevereto",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://chevereto.com/\" target=\"_blank\">https://chevereto.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/nmtan/chevereto\" target=\"_blank\">https://hub.docker.com/r/nmtan/chevereto</a><br><br><br>",
      "platform": "linux",
      "ports": ["7382:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Cloudflare DDNS - A small and fast DDNS updater for Cloudflare.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "CF_API_TOKEN",
          "name": "CF_API_TOKEN"
        },
        {
          "default": "",
          "label": "DOMAINS (Comma Separated List)",
          "name": "DOMAINS"
        },
        {
          "default": "true",
          "label": "PROXIED",
          "name": "PROXIED"
        }
      ],
      "image": "favonia/cloudflare-ddns:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cloudflare-ddns.png",
      "name": "cloudflare-ddns",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.cloudflare.com/en-gb/learning/dns/glossary/dynamic-dns/\" target=\"_blank\">https://www.cloudflare.com/en-gb/learning/dns/glossary/dynamic-dns/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oznu/cloudflare-ddns/\" target=\"_blank\">https://hub.docker.com/r/oznu/cloudflare-ddns/</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Cloudflare DDNS",
      "type": 1
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/code-server.png",
      "name": "code-server",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://coder.com/\" target=\"_blank\">https://coder.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-code-server\" target=\"_blank\">https://docs.linuxserver.io/images/docker-code-server</a><br><br><br>",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/codiad-icon.png",
      "name": "codiad",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://codiad.com/\" target=\"_blank\">http://codiad.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/Codiad/Codiad/wiki/Quick-installation-using-Docker\" target=\"_blank\">https://github.com/Codiad/Codiad/wiki/Quick-installation-using-Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["7294:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cops-icon.png",
      "name": "cops",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://blog.slucas.fr/projects/calibre-opds-php-server/\" target=\"_blank\">https://blog.slucas.fr/projects/calibre-opds-php-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-cops\" target=\"_blank\">https://docs.linuxserver.io/images/docker-cops</a><br><br><br>",
      "platform": "linux",
      "ports": ["8945:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/couchpotato-icon.png",
      "name": "couchpotato",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://couchpota.to/\" target=\"_blank\">https://couchpota.to/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-couchpotato\" target=\"_blank\">https://docs.linuxserver.io/images/docker-couchpotato</a><br><br><br>",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://owntone.github.io/owntone-server/\" target=\"_blank\">https://owntone.github.io/owntone-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-daapd\" target=\"_blank\">https://docs.linuxserver.io/images/docker-daapd</a><br><br><br>",
      "platform": "linux",
      "ports": ["3689:3689/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "failed2run/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dashmachine_logo.png",
      "name": "dashmachine",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/rmountjoy92/DashMachine\" target=\"_blank\">https://github.com/rmountjoy92/DashMachine</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/rmountjoy92/DashMachine\" target=\"_blank\">https://github.com/rmountjoy92/DashMachine</a><br><br><br>",
      "platform": "linux",
      "ports": ["5100:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/davos.png",
      "name": "davos",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/linuxserver/davos\" target=\"_blank\">https://github.com/linuxserver/davos</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-davos\" target=\"_blank\">https://docs.linuxserver.io/images/docker-davos</a><br><br><br>",
      "platform": "linux",
      "ports": ["7136:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/deemix.png",
      "name": "deemix",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://deemix.app/\" target=\"_blank\">https://deemix.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://gitlab.com/Bockiii/deemix-docker\" target=\"_blank\">https://gitlab.com/Bockiii/deemix-docker</a><br><br><br>Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "022",
          "label": "UMASK",
          "name": "UMASK"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/deluge-icon.png",
      "name": "deluge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.deluge-torrent.org/\" target=\"_blank\">https://www.deluge-torrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-deluge\" target=\"_blank\">https://docs.linuxserver.io/images/docker-deluge</a><br><br><br>",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "CA Toronto",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "192.168.0.0/16",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:arm64v8-latest",
      "name": "deluge-openvpn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.deluge-torrent.org/\" target=\"_blank\">https://www.deluge-torrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/sgtsquiggs/docker-deluge-openvpn\" target=\"_blank\">https://github.com/sgtsquiggs/docker-deluge-openvpn</a><br><br><br>",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://domoticz.com/\" target=\"_blank\">https://domoticz.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-domoticz\" target=\"_blank\">https://docs.linuxserver.io/images/docker-domoticz</a><br><br><br>",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Dozzle is a real-time log viewer for docker containers.",
      "image": "amir20/dozzle:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dozzle.png",
      "name": "dozzle",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://dozzle.dev/\" target=\"_blank\">https://dozzle.dev/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/amir20/dozzle\" target=\"_blank\">https://github.com/amir20/dozzle</a><br><br><br>View logs for docker containers.",
      "platform": "linux",
      "ports": ["8888:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dozzle",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Security"],
      "description": "Dradis Framework: Collaboration and reporting for IT Security teams http://dradisframework.org",
      "image": "raesene/dradis:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dradis-logo.png",
      "name": "dradis",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://dradisframework.com/\" target=\"_blank\">https://dradisframework.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/raesene/dockerized-security-tools\" target=\"_blank\">https://github.com/raesene/dockerized-security-tools</a><br><br><br>",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dradis",
      "type": 1
    },
    {
      "categories": ["Other", "CMD", "Web", "Tools"],
      "description": "Drupal CMS.  Make sure you run the install script under tools before installing.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "drupal",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "drupal",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/drupal.png",
      "name": "drupal",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.drupal.org/\" target=\"_blank\">https://www.drupal.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.drupal.org/docs/develop/local-server-setup/docker-development-environments/docker-with-solr-cloud-integration/docker-configuration\" target=\"_blank\">https://www.drupal.org/docs/develop/local-server-setup/docker-development-environments/docker-with-solr-cloud-integration/docker-configuration</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_drupal.sh\" target=\"_blank\">install_drupal.sh</a><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/drupal.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Drupal",
      "type": 3
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "default": "",
          "label": "SUBDOMAINS (Comma Separated List)",
          "name": "SUBDOMAINS"
        },
        {
          "default": "",
          "label": "TOKEN",
          "name": "TOKEN"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/duckdns.png",
      "name": "duckdns",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.duckdns.org/\" target=\"_blank\">https://www.duckdns.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-duckdns\" target=\"_blank\">https://docs.linuxserver.io/images/docker-duckdns</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/duplicati-icon.png",
      "name": "duplicati",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.duplicati.com/\" target=\"_blank\">https://www.duplicati.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-duplicati\" target=\"_blank\">https://docs.linuxserver.io/images/docker-duplicati</a><br><br><br>",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol.\r\nYou will need to create /portainer/Files/AppData/Config/Mosquitto/config/mosquitto.conf and if needed your password file.\r\nHave a look on https://mosquitto.org/man/mosquitto_passwd-1.html",
      "hostname": "rpi-mosquitto",
      "image": "eclipse-mosquitto:latest",
      "logo": "https://raw.githubusercontent.com/docker-library/docs/757578e3a44e5460a8a11d32a81776f8b74231a9/eclipse-mosquitto/logo.png",
      "name": "mosquitto",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mosquitto.org/\" target=\"_blank\">https://mosquitto.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/eclipse-mosquitto\" target=\"_blank\">https://hub.docker.com/_/eclipse-mosquitto</a><br><br><br>",
      "platform": "linux",
      "ports": ["1883:1883/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Eclipse Mosquitto",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/config",
          "container": "/mosquitto/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/data",
          "container": "/mosquitto/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/log",
          "container": "/mosquitto/log"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/emby.png",
      "name": "emby",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://emby.media/\" target=\"_blank\">https://emby.media/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-emby\" target=\"_blank\">https://docs.linuxserver.io/images/docker-emby</a><br><br><br>",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/embystat.png",
      "name": "embystat",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mregni/EmbyStat\" target=\"_blank\">https://github.com/mregni/EmbyStat</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-embystat\" target=\"_blank\">https://docs.linuxserver.io/images/docker-embystat</a><br><br><br>Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "[arm] Web File Browser which can be used as a middleware or standalone app.",
      "image": "filebrowser/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/filebrowser.png",
      "name": "filebrowser",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://filebrowser.org/\" target=\"_blank\">https://filebrowser.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://filebrowser.org/installation#docker\" target=\"_blank\">https://filebrowser.org/installation#docker</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=30MYRgCObu8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=4\" target=\"_blank\">Installing JDownloader and File Browser On The Pi Docker Server</a><br><br>The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/srv"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Flame is self-hosted startpage for your server. Its design is inspired (heavily) by SUI. Flame is very easy to setup and use. With built-in editors, it allows you to setup your very own application hub in no time - no file editing necessary.",
      "env": [
        {
          "default": "",
          "label": "Flame Password",
          "name": "PASSWORD"
        }
      ],
      "image": "pawelmalak/flame:multiarch",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/flame.png",
      "name": "Flame",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pawelmalak/flame\" target=\"_blank\">https://github.com/pawelmalak/flame</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pawelmalak/flame#with-docker-recommended\" target=\"_blank\">https://github.com/pawelmalak/flame#with-docker-recommended</a><br><br><br>",
      "platform": "linux",
      "ports": ["5005:5005/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Flame",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Flame/data",
          "container": "/app/data"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Games"],
      "description": "This docker image provides the FoundryVTT system for hosting your own virtual table top games.",
      "env": [
        {
          "default": "John",
          "label": "Foundry Account Name",
          "name": "FOUNDRY_USERNAME"
        },
        {
          "default": "password",
          "label": "Foundry Password",
          "name": "FOUNDRY_PASSWORD"
        },
        {
          "default": "changeme",
          "label": "Instance Admin Password",
          "name": "FOUNDRY_ADMIN_KEY"
        },
        {
          "default": "true",
          "label": "CONTAINER_PRESERVE_CONFIG",
          "name": "CONTAINER_PRESERVE_CONFIG"
        }
      ],
      "image": "felddy/foundryvtt:release",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/foundrylogo.png",
      "name": "FoundryVTT",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://foundryvtt.com/\" target=\"_blank\">https://foundryvtt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/felddy/foundryvtt\" target=\"_blank\">https://hub.docker.com/r/felddy/foundryvtt</a><br><br><br>",
      "platform": "linux",
      "ports": ["30000:30000/tcp"],
      "restart_polocy": "unless-stopped",
      "title": "FoundryVTT Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/foundryvtt",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "freshrss/freshrss:arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/freshrss-icon.png",
      "name": "freshrss",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.freshrss.org/\" target=\"_blank\">https://www.freshrss.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/FreshRSS/FreshRSS/tree/edge/Docker\" target=\"_blank\">https://github.com/FreshRSS/FreshRSS/tree/edge/Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8132:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "[DEPRECATED] A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gazee-logo.png",
      "name": "gazee",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/hubbcaps/gazee\" target=\"_blank\">https://github.com/hubbcaps/gazee</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/gazee\" target=\"_blank\">https://hub.docker.com/r/linuxserver/gazee</a><br><br><br>",
      "platform": "linux",
      "ports": ["4243:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["SCM", "Tools"],
      "description": "A painless self-hosted Git service.",
      "env": [
        {
          "default": "1000",
          "label": "USER_UID",
          "name": "USER_UID"
        },
        {
          "default": "1000",
          "label": "USER_GID",
          "name": "USER_GID"
        }
      ],
      "image": "gitea/gitea:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gitea.png",
      "name": "gitea",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://gitea.com/\" target=\"_blank\">https://gitea.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.gitea.io/en-us/install-with-docker/\" target=\"_blank\">https://docs.gitea.io/en-us/install-with-docker/</a><br><br><br>More possible Environment Variables: https://docs.gitea.io/en-us/install-with-docker/#managing-deployments-with-environment-variables",
      "platform": "linux",
      "ports": ["8124:3000/tcp", "222:22/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gitea",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gitea",
          "container": "/data"
        },
        {
          "bind": "/etc/timezone",
          "container": "/etc/timezone:ro"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime:ro"
        }
      ]
    },
    {
      "categories": ["SCM", "Tools"],
      "description": "Gitea with Mariadb: A painless self-hosted Git service.",
      "env": [
        {
          "default": "1000",
          "label": "USER_UID",
          "name": "USER_UID"
        },
        {
          "default": "1000",
          "label": "USER_GID",
          "name": "USER_GID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "gitea",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "gitea",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gitea.png",
      "name": "gitea-mysql",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://gitea.com/\" target=\"_blank\">https://gitea.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.gitea.io/en-us/install-with-docker/#mysql-database\" target=\"_blank\">https://docs.gitea.io/en-us/install-with-docker/#mysql-database</a><br><br><br>More possible Environment Variables: https://docs.gitea.io/en-us/install-with-docker/#managing-deployments-with-environment-variables",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/gitea-mariadb.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Gitea with Mariadb",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A simple server for sending and receiving messages",
      "env": [
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "admin",
          "label": "GOTIFY_DEFAULTUSER_NAME",
          "name": "GOTIFY_DEFAULTUSER_NAME"
        },
        {
          "default": "admin123",
          "label": "GOTIFY_DEFAULTUSER_PASS",
          "name": "GOTIFY_DEFAULTUSER_PASS"
        }
      ],
      "image": "gotify/server-arm64:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gotify.png",
      "name": "gotify",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://gotify.net/\" target=\"_blank\">https://gotify.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://gotify.net/docs/install\" target=\"_blank\">https://gotify.net/docs/install</a><br><br><br>ARM7 Image. Documentation is Available <a href='https://gotify.net/docs/index'>here</a>.",
      "platform": "linux",
      "ports": ["9008:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gotify",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/gotify",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/grocy_logo.png",
      "name": "grocy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://grocy.info/\" target=\"_blank\">https://grocy.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-grocy\" target=\"_blank\">https://docs.linuxserver.io/images/docker-grocy</a><br><br><br>",
      "platform": "linux",
      "ports": ["9283:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "[arm] A clientless remote desktop gateway.",
      "image": "oznu/guacamole:armhf",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/guacamole.png",
      "name": "guacamole",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://guacamole.apache.org/\" target=\"_blank\">https://guacamole.apache.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oznu/guacamole\" target=\"_blank\">https://hub.docker.com/r/oznu/guacamole</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=cKAhnf8X1lo&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=3\" target=\"_blank\">Manually Installing Guacamole on Portainer</a><br><br>The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/headphones-icon.png",
      "name": "headphones",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/rembo10/headphones\" target=\"_blank\">https://github.com/rembo10/headphones</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-headphones\" target=\"_blank\">https://docs.linuxserver.io/images/docker-headphones</a><br><br><br>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/heimdall-icon.png",
      "name": "heimdall",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://heimdall.site/\" target=\"_blank\">https://heimdall.site/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-heimdall\" target=\"_blank\">https://docs.linuxserver.io/images/docker-heimdall</a><br><br><br>",
      "platform": "linux",
      "ports": ["7202:80/tcp", "7203:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "description": "Home Assistant is a free and open-source software for home automation that is designed to be the central control system for smart home devices with focus on local control and privacy.",
      "image": "homeassistant/home-assistant:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homeassistant.png",
      "name": "home-assistant",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.home-assistant.io/\" target=\"_blank\">https://www.home-assistant.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.home-assistant.io/installation/raspberrypi#install-home-assistant-container\" target=\"_blank\">https://www.home-assistant.io/installation/raspberrypi#install-home-assistant-container</a><br><br><br>",
      "platform": "linux",
      "ports": ["8999:8123/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Home Assistant",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HomeAssistant/assets",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["HomeAutomation"],
      "description": "Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. There are over 2,000 Homebridge plugins supporting thousands of different smart accessories.",
      "env": [
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1",
          "label": "HOMEBRIDGE_CONFIG_UI",
          "name": "HOMEBRIDGE_CONFIG_UI"
        },
        {
          "default": "8581",
          "label": "HOMEBRIDGE_CONFIG_UI_PORT",
          "name": "HOMEBRIDGE_CONFIG_UI_PORT"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "oznu/homebridge:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homebridge.png",
      "name": "homebridge",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://homebridge.io/\" target=\"_blank\">https://homebridge.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker\" target=\"_blank\">https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker</a><br><br><br>Bringing HomeKit support where there is none",
      "platform": "linux",
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Homebridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/homebridge",
          "container": "/homebridge"
        }
      ]
    },
    {
      "categories": ["HomeAutomation"],
      "description": "Debian Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. There are over 2,000 Homebridge plugins supporting thousands of different smart accessories.",
      "env": [
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1",
          "label": "HOMEBRIDGE_CONFIG_UI",
          "name": "HOMEBRIDGE_CONFIG_UI"
        },
        {
          "default": "8581",
          "label": "HOMEBRIDGE_CONFIG_UI_PORT",
          "name": "HOMEBRIDGE_CONFIG_UI_PORT"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "oznu/homebridge:debian",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homebridge.png",
      "name": "homebridge-debian",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://homebridge.io/\" target=\"_blank\">https://homebridge.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker\" target=\"_blank\">https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker</a><br><br><br>Bringing HomeKit support where there is none",
      "platform": "linux",
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Homebridge - Debian",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/debian-homebridge",
          "container": "/homebridge"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "env": [
        {
          "default": "1000",
          "label": "GID",
          "name": "GID"
        },
        {
          "default": "1000",
          "label": "UID",
          "name": "UID"
        }
      ],
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homer.png",
      "name": "homer",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/bastienwirtz/homer\" target=\"_blank\">https://github.com/bastienwirtz/homer</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md\" target=\"_blank\">https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=_d3J88ootYo&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=2\" target=\"_blank\">Installing and Configuring Homer Dashboard</a><br><br>This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://htpc.io/\" target=\"_blank\">https://htpc.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-htpcmanager\" target=\"_blank\">https://docs.linuxserver.io/images/docker-htpcmanager</a><br><br><br>",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "mjysci/huginn:arm32v7",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/huginn.png",
      "name": "huginn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/huginn/huginn\" target=\"_blank\">https://github.com/huginn/huginn</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/huginn/huginn/tree/master/docker\" target=\"_blank\">https://github.com/huginn/huginn/tree/master/docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["3005:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "InfluxDB is an open source time series database for recording metrics, events, and analytics. You will need to add /portainer/Files/AppData/Config/Influxdb/config/influxdb.conf",
      "hostname": "rpi-influxdb1810",
      "image": "influxdb:1.8.10",
      "logo": "https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/influxdb/logo.png",
      "name": "influxdb1810",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.influxdata.com/\" target=\"_blank\">https://www.influxdata.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.influxdata.com/influxdb/v2.0/install/?t=Docker\" target=\"_blank\">https://docs.influxdata.com/influxdb/v2.0/install/?t=Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8086:8086/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Influxdb 1.8.10",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Influxdb/data",
          "container": "/var/lib/influxdb"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Influxdb/config",
          "container": "/var/lib/influxdb"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jacket-icon.png",
      "name": "jackett",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Jackett/Jackett\" target=\"_blank\">https://github.com/Jackett/Jackett</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-jackett\" target=\"_blank\">https://docs.linuxserver.io/images/docker-jackett</a><br><br><br>",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "JDownloader docker image",
      "env": [
        {
          "default": "",
          "label": "MYJD_DEVICE_NAME",
          "name": "MYJD_DEVICE_NAME"
        },
        {
          "default": "",
          "label": "MYJD_USER",
          "name": "MYJD_USER"
        },
        {
          "default": "",
          "label": "MYJD_PASSWORD",
          "name": "MYJD_PASSWORD"
        }
      ],
      "image": "jaymoulin/jdownloader:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jdownloader.png",
      "name": "JDownloader",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://my.jdownloader.org/\" target=\"_blank\">https://my.jdownloader.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/jaymoulin/docker-jdownloader\" target=\"_blank\">https://github.com/jaymoulin/docker-jdownloader</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=30MYRgCObu8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=4\" target=\"_blank\">Installing JDownloader and File Browser On The Pi Docker Server</a><br><br>",
      "platform": "linux",
      "ports": ["3129:3129/tcp"],
      "restart_policy": "unless-stopped",
      "title": "JDownloader",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/JDownloader",
          "container": "/opt/JDownloader/cfg"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/opt/JDownloader/Downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jellyfin.png",
      "name": "jellyfin",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://jellyfin.org/\" target=\"_blank\">https://jellyfin.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-jellyfin\" target=\"_blank\">https://docs.linuxserver.io/images/docker-jellyfin</a><br><br><br>",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lsioarmhf/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/kodi-icon.png",
      "name": "kodi-headless",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://kodi.tv/\" target=\"_blank\">https://kodi.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/lsioarmhf/kodi-headless-aarch64/\" target=\"_blank\">https://hub.docker.com/r/lsioarmhf/kodi-headless-aarch64/</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8080/tcp", "9090:9090/tcp", "9777:9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config/.kodi"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lazylibrarian.gitlab.io/\" target=\"_blank\">https://lazylibrarian.gitlab.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lazylibrarian\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lazylibrarian</a><br><br><br>",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "[DEPRECATED] This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;",
      "env": [
        {
          "default": "-Xms256m -Xmx512m",
          "label": "EMAIL",
          "name": "EMAIL"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "URL",
          "name": "URL"
        },
        {
          "default": "www,",
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS"
        },
        {
          "default": "false",
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS"
        },
        {
          "default": "2048",
          "label": "DHLEVEL",
          "name": "DHLEVEL"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "http",
          "label": "VALIDATION",
          "name": "VALIDATION"
        },
        {
          "default": "http",
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN"
        }
      ],
      "image": "linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/letsencrypt.png",
      "name": "letsencrypt",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://letsencrypt.org/\" target=\"_blank\">https://letsencrypt.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/letsencrypt\" target=\"_blank\">https://hub.docker.com/r/linuxserver/letsencrypt</a><br><br><br>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An alternative private front-end to Reddit",
      "image": "spikecodes/libreddit:arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/libreddit.png",
      "name": "libreddit",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://libreddit.silkky.cloud/\" target=\"_blank\">https://libreddit.silkky.cloud/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/spikecodes/libreddit#2-docker\" target=\"_blank\">https://github.com/spikecodes/libreddit#2-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8088:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "libreddit",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/libreddit",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/speedtest.png",
      "name": "librespeed",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://librespeed.org/\" target=\"_blank\">https://librespeed.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-librespeed\" target=\"_blank\">https://docs.linuxserver.io/images/docker-librespeed</a><br><br><br>",
      "platform": "linux",
      "ports": ["83:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lidarr.png",
      "name": "lidarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lidarr.audio/\" target=\"_blank\">https://lidarr.audio/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lidarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lidarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "mariadb",
          "label": "DB_HOST",
          "name": "DB_HOST"
        },
        {
          "default": "lychee",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "dbpassword_that_was_set_in_lychee-mariadb",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "lychee",
          "label": "DB_DATABASE",
          "name": "DB_DATABASE"
        },
        {
          "default": "3306",
          "label": "DB_PORT",
          "name": "DB_PORT"
        }
      ],
      "image": "linuxserver/lychee:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lychee-icon.png",
      "name": "lychee",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lycheeorg.github.io/\" target=\"_blank\">https://lycheeorg.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lychee\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lychee</a><br><br><br>",
      "platform": "linux",
      "ports": ["84:84/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee With Mariadb is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "lychee",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "lychee",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lychee-icon.png",
      "name": "lychee-mariadb",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lycheeorg.github.io/\" target=\"_blank\">https://lycheeorg.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lychee\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lychee</a><br><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/lychee-mariadb.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Lychee With Mariadb",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "MYSQL_DATABASE",
          "name": "MYSQL_DATABASE"
        },
        {
          "default": "",
          "label": "MYSQL_USER",
          "name": "MYSQL_USER"
        },
        {
          "default": "dbpassword",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "rootpassword",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "image": "linuxserver/mariadb:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mariadb-icon.png",
      "name": "mariadb",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mariadb.org/\" target=\"_blank\">https://mariadb.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mariadb\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mariadb</a><br><br><br>",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A self-hosted recipe manager and meal planner",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "2",
          "label": "WEB_CONCURRENCY",
          "name": "WEB_CONCURRENCY"
        },
        {
          "default": "8",
          "label": "MAX_WORKERS",
          "name": "MAX_WORKERS"
        },
        {
          "default": "true",
          "label": "RECIPE_PUBLIC",
          "name": "RECIPE_PUBLIC"
        },
        {
          "default": "true",
          "label": "RECIPE_SHOW_NUTRITION",
          "name": "RECIPE_SHOW_NUTRITION"
        },
        {
          "default": "true",
          "label": "RECIPE_SHOW_ASSETS",
          "name": "RECIPE_SHOW_ASSETS"
        },
        {
          "default": "true",
          "label": "RECIPE_LANDSCAPE_VIEW",
          "name": "RECIPE_LANDSCAPE_VIEW"
        },
        {
          "default": "false",
          "label": "RECIPE_DISABLE_COMMENTS",
          "name": "RECIPE_DISABLE_COMMENTS"
        },
        {
          "default": "false",
          "label": "RECIPE_DISABLE_AMOUNT",
          "name": "RECIPE_DISABLE_AMOUNT"
        }
      ],
      "image": "hkotel/mealie:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mealie.png",
      "name": "mealie",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://hay-kot.github.io/mealie/\" target=\"_blank\">https://hay-kot.github.io/mealie/</a><br><b>Official Docker Documentation: </b><a href=\"https://hay-kot.github.io/mealie/documentation/getting-started/install/\" target=\"_blank\">https://hay-kot.github.io/mealie/documentation/getting-started/install/</a><br><br><br>Default Credentials: Username: changeme@email.com Password: MyPassword. Documentation is Available <a href='https://hay-kot.github.io/mealie/documentation/getting-started/install/'>here</a>.",
      "platform": "linux",
      "ports": ["9925:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mealie",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/mealie",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/medusa-icon.png",
      "name": "medusa",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pymedusa.com/\" target=\"_blank\">https://pymedusa.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-medusa\" target=\"_blank\">https://docs.linuxserver.io/images/docker-medusa</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Games"],
      "description": "This docker image provides a Minecraft Server that will automatically download the latest stable version at startup. You can also run/upgrade to any specific version or the latest snapshot. See the Versions section below for more information.",
      "env": [
        {
          "default": "TRUE",
          "label": "EULA",
          "name": "EULA"
        }
      ],
      "image": "itzg/minecraft-server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/minecraft.png",
      "name": "minecraft",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.minecraft.net/en-us\" target=\"_blank\">https://www.minecraft.net/en-us</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/itzg/docker-minecraft-server#using-docker-compose\" target=\"_blank\">https://github.com/itzg/docker-minecraft-server#using-docker-compose</a><br><br><br>",
      "platform": "linux",
      "ports": ["25565:25565/tcp"],
      "restart_polocy": "unless-stopped",
      "title": "Minecraft Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Minecraft-data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.minetest.net/\" target=\"_blank\">https://www.minetest.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-minetest\" target=\"_blank\">https://docs.linuxserver.io/images/docker-minetest</a><br><br><br>",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/minisatip-icon.png",
      "name": "minisatip",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/catalinii/minisatip\" target=\"_blank\">https://github.com/catalinii/minisatip</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-minisatip\" target=\"_blank\">https://docs.linuxserver.io/images/docker-minisatip</a><br><br><br>",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mstream.png",
      "name": "mstream",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mstream.io/\" target=\"_blank\">https://mstream.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mstream\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mstream</a><br><br><br>",
      "platform": "linux",
      "ports": ["3200:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "yhaenggi/murmur:1.3.4",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/Mumble-logo.png",
      "name": "murmur",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.mumble.info/\" target=\"_blank\">https://www.mumble.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/yhaenggi/murmur-docker\" target=\"_blank\">https://github.com/yhaenggi/murmur-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "default": "",
          "label": "BRAINZCODE",
          "name": "BRAINZCODE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://musicbrainz.org/\" target=\"_blank\">https://musicbrainz.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/linuxserver-archive/docker-musicbrainz\" target=\"_blank\">https://github.com/linuxserver-archive/docker-musicbrainz</a><br><br><br>",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/muximux-icon.png",
      "name": "muximux",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mescon/Muximux\" target=\"_blank\">https://github.com/mescon/Muximux</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-muximux\" target=\"_blank\">https://docs.linuxserver.io/images/docker-muximux</a><br><br><br>",
      "platform": "linux",
      "ports": ["7205:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar3:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mylar-icon.png",
      "name": "mylar",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mylar3/mylar3\" target=\"_blank\">https://github.com/mylar3/mylar3</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mylar3\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mylar3</a><br><br><br>",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "n8n is an extendable workflow automation tool.",
      "env": [
        {
          "default": "true",
          "label": "N8N_BASIC_AUTH_ACTIVE",
          "name": "N8N_BASIC_AUTH_ACTIVE"
        },
        {
          "default": "admin",
          "label": "N8N_BASIC_AUTH_USER",
          "name": "N8N_BASIC_AUTH_USER"
        },
        {
          "default": "admin",
          "label": "N8N_BASIC_AUTH_PASSWORD",
          "name": "N8N_BASIC_AUTH_PASSWORD"
        }
      ],
      "image": "n8nio/n8n:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/n8n.jpg",
      "name": "n8n",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://n8n.io/\" target=\"_blank\">https://n8n.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.n8n.io/getting-started/installation/#docker\" target=\"_blank\">https://docs.n8n.io/getting-started/installation/#docker</a><br><br><br>Documentation is Available <a href='https://docs.n8n.io/'>here</a>",
      "platform": "linux",
      "ports": ["5678:5678/tcp"],
      "restart_policy": "unless-stopped",
      "title": "n8n",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/n8n",
          "container": "/home/node/.n8n"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Troubleshoot slowdowns and anomalies in your infrastructure with thousands of per-second metrics, meaningful visualizations, and insightful health alarms with zero configuration.",
      "env": [
        {
          "default": "1000",
          "label": "DOCKER_USR",
          "name": "DOCKER_USR"
        },
        {
          "default": "1000",
          "label": "DOCKER_GRP",
          "name": "DOCKER_GRP"
        }
      ],
      "image": "netdata/netdata:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/netdata.png",
      "name": "netdata",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.netdata.cloud/\" target=\"_blank\">https://www.netdata.cloud/</a><br><b>Official Docker Documentation: </b><a href=\"https://learn.netdata.cloud/docs/agent/packaging/docker\" target=\"_blank\">https://learn.netdata.cloud/docs/agent/packaging/docker</a><br><br><br>Documentation is Available <a href='https://learn.netdata.cloud/'>here</a>.",
      "platform": "linux",
      "ports": ["19999:19999/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Netdata",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/netdata/netdataconfig",
          "container": "/etc/netdata"
        },
        {
          "bind": "/portainer/Files/AppData/Config/netdata/netdatalib",
          "container": "/var/lib/netdata"
        },
        {
          "bind": "/etc/passwd",
          "container": "/host/etc/passwd:ro"
        },
        {
          "bind": "/etc/group",
          "container": "/host/etc/group:ro"
        },
        {
          "bind": "/proc",
          "container": "/host/proc:ro"
        },
        {
          "bind": "/sys",
          "container": "/host/sys:ro"
        },
        {
          "bind": "/etc/os-release",
          "container": "/host/etc/os-release:ro"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nextcloud.com/\" target=\"_blank\">https://nextcloud.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nextcloud\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nextcloud</a><br><br><br>The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/nextcloud.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ownyourbits/nextcloudpi:latest",
      "name": "nextcloudpi",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ownyourbits.com/nextcloudpi/\" target=\"_blank\">https://ownyourbits.com/nextcloudpi/</a><br><b>Official Docker Documentation: </b><a href=\"https://ownyourbits.com/2017/06/08/nextcloudpi-docker-for-raspberry-pi/\" target=\"_blank\">https://ownyourbits.com/2017/06/08/nextcloudpi-docker-for-raspberry-pi/</a><br><br><b>Extra useful script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/reset_premissions_nextcloud.sh\" target=\"_blank\">reset_premissions_nextcloud.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=E6IrT3g5Gqc&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=9\" target=\"_blank\">Installing Nextcloud on Raspberry Pi Docker</a><br><br>The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "ports": ["4444:4443/tcp", "8443:443/tcp", "8480:8480/tcp"],
      "title": "NextcloudPi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ncdata",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nginx-icon.png",
      "name": "nginx",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nginx.org/en/\" target=\"_blank\">https://nginx.org/en/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nginx\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nginx</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:80/tcp", "8443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.  Please see the install document at https://github.com/pi-hosted/pi-hosted/tree/master/docs installing the template",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "password",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "password",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nginxproxymanager.com/\" target=\"_blank\">https://nginxproxymanager.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://nginxproxymanager.com/setup/#using-mysql-mariadb-database\" target=\"_blank\">https://nginxproxymanager.com/setup/#using-mysql-mariadb-database</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/nginx_proxy_manager.md\" target=\"_blank\">nginx_proxy_manager.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/nginx-proxy-manager.sh\" target=\"_blank\">nginx-proxy-manager.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=yl2Laxbqvo8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=10\" target=\"_blank\">Installing Nginx Proxy Manager on Docker</a><br><br>",
      "platform": "linux",
      "ports": ["80:80/tcp", "81:81/tcp", "443:443/tcp"],
      "repository": {
        "stackfile": "stack/nginx-proxy-manager.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 3
    },
    {
      "categories": ["Other", "Web", "Tools"],
      "description": "Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.  It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click.",
      "env": [
        {
          "default": "your_secret_goes_here",
          "label": "NODE_RED_CREDENTIAL_SECRET",
          "name": "NODE_RED_CREDENTIAL_SECRET"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/node-red.png",
      "name": "node-red",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nodered.org/\" target=\"_blank\">https://nodered.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://nodered.org/docs/getting-started/docker\" target=\"_blank\">https://nodered.org/docs/getting-started/docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["1880:1880/tcp"],
      "repository": {
        "stackfile": "stack/node-red.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Node Red",
      "type": 3
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nzbget-icon.png",
      "name": "nzbget",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nzbget.net/\" target=\"_blank\">https://nzbget.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nzbget\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nzbget</a><br><br><br>",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/hydra-icon.png",
      "name": "nzbhydra2",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/theotherp/nzbhydra2\" target=\"_blank\">https://github.com/theotherp/nzbhydra2</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nzbhydra2\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nzbhydra2</a><br><br><br>",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": "TP-Link Omada is a software-defined network solution. The EAP Controller is used to manage multiple EAPs. Raspberry Pi 1 and Zero are not supported.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "mbentley/omada-controller:latest-arm64",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/omada.png",
      "name": "omada-controller",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.tp-link.com/us/business-networking/omada-sdn-controller/\" target=\"_blank\">https://www.tp-link.com/us/business-networking/omada-sdn-controller/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/mbentley/omada-controller\" target=\"_blank\">https://hub.docker.com/r/mbentley/omada-controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "8088:8088/tcp",
        "8043:8043/tcp",
        "27001:27001/udp",
        "27002:27002/tcp",
        "29810:29810/udp",
        "29811:29811/tcp",
        "29812:29812/tcp",
        "29813:29813/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Omada EAP Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Omada",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ombi.png",
      "name": "ombi",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ombi.io/\" target=\"_blank\">https://ombi.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-ombi\" target=\"_blank\">https://docs.linuxserver.io/images/docker-ombi</a><br><br><br>",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "default": "eth0",
          "label": "INTERFACE",
          "name": "INTERFACE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://openvpn.net/access-server/\" target=\"_blank\">https://openvpn.net/access-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/openvpn-as/\" target=\"_blank\">https://hub.docker.com/r/linuxserver/openvpn-as/</a><br><br><br>",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/organizr-icon.png",
      "name": "organizr-v2",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://organizr.app/\" target=\"_blank\">https://organizr.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/organizr/organizr\" target=\"_blank\">https://hub.docker.com/r/organizr/organizr</a><br><br><br>",
      "platform": "linux",
      "ports": ["7171:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://trac.streamboard.tv/oscam/\" target=\"_blank\">https://trac.streamboard.tv/oscam/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-oscam\" target=\"_blank\">https://docs.linuxserver.io/images/docker-oscam</a><br><br><br>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Management", "Productivity"],
      "description": "Paperless is an application by Daniel Quinn and contributors that indexes your scanned documents and allows you to easily search for documents and store metadata alongside your documents. https://github.com/jonaswinkler/paperless-ng",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/paperless-ng",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/paperless.png",
      "name": "paperless",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/jonaswinkler/paperless-ng\" target=\"_blank\">https://github.com/jonaswinkler/paperless-ng</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-paperless-ng\" target=\"_blank\">https://docs.linuxserver.io/images/docker-paperless-ng</a><br><br><br>",
      "platform": "linux",
      "ports": ["8005:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Paperless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/paperless/config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/paperless/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "PhotoPrism® is an AI-powered app for browsing, organizing & sharing your photo collection. It makes use of the latest technologies to tag and find pictures automatically without getting in your way. You can run it at home, on a private server, or in the cloud.",
      "env": [
        {
          "default": "change me to a secure password",
          "label": "PHOTOPRISM_ADMIN_PASSWORD",
          "name": "PHOTOPRISM_ADMIN_PASSWORD"
        },
        {
          "default": "http://localhost:2342/",
          "label": "PHOTOPRISM_SITE_URL",
          "name": "PHOTOPRISM_SITE_URL"
        },
        {
          "label": "PHOTOPRISM_PUBLIC",
          "name": "PHOTOPRISM_PUBLIC",
          "select": [
            {
              "default": true,
              "text": "Enable Password Protection",
              "value": "false"
            },
            {
              "text": "No authentication required",
              "value": "true"
            }
          ]
        },
        {
          "label": "PHOTOPRISM_READONLY",
          "name": "PHOTOPRISM_READONLY",
          "select": [
            {
              "default": true,
              "text": "Photo folder in Read/Write mode",
              "value": "false"
            },
            {
              "text": "Don't modify originals directory (reduced functionality)",
              "value": "true"
            }
          ]
        },
        {
          "label": "PHOTOPRISM_DISABLE_FACES",
          "name": "PHOTOPRISM_DISABLE_FACES",
          "select": [
            {
              "default": true,
              "text": "Enable facial recognition",
              "value": "false"
            },
            {
              "text": "Disable facial recognition",
              "value": "true"
            }
          ]
        },
        {
          "default": "change me to a secure password",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "change me to a secure password",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "/portainer/PhotoPrism",
          "label": "HOST_MEDIA_PATH",
          "name": "HOST_MEDIA_PATH"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/photoprism.png",
      "name": "PhotoPrism",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://photoprism.app/\" target=\"_blank\">https://photoprism.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.photoprism.app/getting-started/docker-compose/\" target=\"_blank\">https://docs.photoprism.app/getting-started/docker-compose/</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/photoprism.md\" target=\"_blank\">photoprism.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_photoprism.sh\" target=\"_blank\">install_photoprism.sh</a><br><br>Your device should have at least <b>4 GB</b> of memory. Running PhotoPrism on a server with less than 4 GB of swap space or setting a memory/swap limit can cause unexpected restarts, especially when the indexer temporarily needs more memory to process large files.<br>It's important to boot your Rapsberry Pi 3/4 with the parameter <b>arm_64bit=1</b> in <b>config.txt</b> to use ARM64 image.<br>If you see Docker errors related to <b>\\\"cgroups\\\"</b>, it may help to add the following to <b>/boot/firmware/cmdline.txt</b>:<br><br><b>cgroup_enable=cpuset cgroup_enable=memory cgroup_memory=1</b><br><br>User pi needs to have access to <b>HOST_MEDIA_PATH</b>, you can force it with:<br><br><b>sudo chown -R pi:pi /path/to/media</b><br><br>Run <b>install_photoprism.sh</b> before deploying this container.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/photoprism.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "PhotoPrism",
      "type": 3
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/photoshow-icon.png",
      "name": "photoshow",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/thibaud-rohmer/PhotoShow\" target=\"_blank\">https://github.com/thibaud-rohmer/PhotoShow</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-photoshow\" target=\"_blank\">https://docs.linuxserver.io/images/docker-photoshow</a><br><br><br>",
      "platform": "linux",
      "ports": ["7380:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole.png",
      "name": "pihole",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pi-hole/docker-pi-hole/#running-pi-hole-docker\" target=\"_blank\">https://github.com/pi-hole/docker-pi-hole/#running-pi-hole-docker</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole with both DoH (DNS over HTTPS) and DoT (DNS over TLS) clients.",
      "image": "oijkn/pihole-doh-dot:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole_doh-dot.png",
      "name": "pihole DoH/DoT",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oijkn/pihole-doh-dot\" target=\"_blank\">https://hub.docker.com/r/oijkn/pihole-doh-dot</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole DoH/DoT",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole_DoH-DoT",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole_DoH-DoT/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole. This version has Ubound software installed on it so you don't need to rely on external DNS providers.",
      "env": [
        {
          "default": "192.168.0.X",
          "description": "Insert the Raspberry Pi IP here",
          "label": "ServerIP",
          "name": "ServerIP"
        },
        {
          "default": "Europe\\London",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DNSSEC",
          "name": "DNSSEC",
          "select": [
            {
              "default": true,
              "text": "Enable DNSSEC",
              "value": "true"
            },
            {
              "text": "Disable DNSSEC",
              "value": "false"
            }
          ]
        },
        {
          "default": "127.0.0.1#5335",
          "label": "DNS1",
          "name": "DNS1",
          "preset": true
        },
        {
          "default": "127.0.0.1#5335",
          "label": "DNS2",
          "name": "DNS2",
          "preset": true
        }
      ],
      "image": "cbcrowe/pihole-unbound:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole-unbound.png",
      "name": "pihole-unbound",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container\" target=\"_blank\">https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53. For extra information on this container visit the mainteiner <a href='https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container'>GitHub Page</a>. You can add ports: 5335 to access Ubound externally; 22 to enable SSH; 67 to use DHCP Server. Add those ports in Show advanced options.",
      "platform": "linux",
      "ports": ["53:53/tcp", "53:53/udp", "1010:80/tcp", "4443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole-Unbound",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole-Unbound",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole-Unbound/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/piwigo-icon.png",
      "name": "piwigo",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://piwigo.org/\" target=\"_blank\">http://piwigo.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-piwigo\" target=\"_blank\">https://docs.linuxserver.io/images/docker-piwigo</a><br><br><br>",
      "platform": "linux",
      "ports": ["7528:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "latest",
          "label": "VERSION",
          "name": "VERSION"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.plex.tv/\" target=\"_blank\">https://www.plex.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-plex\" target=\"_blank\">https://docs.linuxserver.io/images/docker-plex</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pritunl.png",
      "name": "pritunl",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pritunl.com/\" target=\"_blank\">https://pritunl.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/goofball222/pritunl\" target=\"_blank\">https://hub.docker.com/r/goofball222/pritunl</a><br><br><br>Documentation on this containier can be found here: <a href=https://hub.docker.com/r/goofball222/pritunl>https://hub.docker.com/r/goofball222/pritunl</a>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/pritunl.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Web"],
      "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "privatebin/nginx-fpm-alpine:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/privatebin.png",
      "name": "privatebin",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://privatebin.info/\" target=\"_blank\">https://privatebin.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/privatebin/nginx-fpm-alpine\" target=\"_blank\">https://hub.docker.com/r/privatebin/nginx-fpm-alpine</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "PrivateBin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/PrivateBin",
          "container": "/srv/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PrivateBin",
          "container": "/srv/cfg"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/projectsend-logo.png",
      "name": "projectsend",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.projectsend.org/\" target=\"_blank\">https://www.projectsend.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-projectsend\" target=\"_blank\">https://docs.linuxserver.io/images/docker-projectsend</a><br><br><br>",
      "platform": "linux",
      "ports": ["7580:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:build",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://protonmail.com/bridge/\" target=\"_blank\">https://protonmail.com/bridge/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/shenxn/protonmail-bridge\" target=\"_blank\">https://hub.docker.com/r/shenxn/protonmail-bridge</a><br><br><br>Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143:143/tcp", "25:25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pydio-icon.png",
      "name": "pydio",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.pydio.com/\" target=\"_blank\">https://www.pydio.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/pydio\" target=\"_blank\">https://hub.docker.com/r/linuxserver/pydio</a><br><br><br>",
      "platform": "linux",
      "ports": ["7526:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.qbittorrent.org/\" target=\"_blank\">https://www.qbittorrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-qbittorrent\" target=\"_blank\">https://docs.linuxserver.io/images/docker-qbittorrent</a><br><br><br>",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/quassel-core-icon.png",
      "name": "quassel-core",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://quassel-irc.org/\" target=\"_blank\">https://quassel-irc.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-quassel-core\" target=\"_blank\">https://docs.linuxserver.io/images/docker-quassel-core</a><br><br><br>",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/radarr.png",
      "name": "radarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://radarr.video/\" target=\"_blank\">https://radarr.video/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-radarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-radarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Monitor", "Tools"],
      "description": "Monitor your Raspberry Pi and Dockers using Grafana developed by oijkn. Please download grafana configs from his git https://github.com/oijkn/Docker-Raspberry-PI-Monitoring",
      "env": [
        {
          "default": "15d",
          "label": "PROMETHEUS_RETENTION",
          "name": "PROMETHEUS_RETENTION"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/rpi_monitor.png",
      "name": "RaspberryPi-Docker-Monitor",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">rpi_docker_monitor.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/rpi_docker_monitor.sh\" target=\"_blank\">rpi_docker_monitor.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=IoD3vFuep64&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=8\" target=\"_blank\">Raspberry Pi Docker Monitoring</a><br><br>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "repository": {
        "stackfile": "stack/raspberrypi-monitoring.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Raspberry Pi Docker Monitor",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "Rdesktop is an Ubuntu based container containing full desktop environments in officially supported flavors accessible via RDP.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/rdesktop:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/novaspirit/pi-hosted/master/images/rdesktop.png",
      "name": "rdesktop",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://xrdp.org/\" target=\"_blank\">http://xrdp.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-rdesktop\" target=\"_blank\">https://docs.linuxserver.io/images/docker-rdesktop</a><br><br><br>",
      "platform": "linux",
      "ports": ["3389:3389/tcp"],
      "restart_policy": "unless-stopped",
      "title": "RDesktop",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/RDesktop/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "martadinata666/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/reactiveresume.png",
      "name": "reactive-resume",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://rxresu.me/\" target=\"_blank\">https://rxresu.me/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/martadinata666/reactive-resume\" target=\"_blank\">https://hub.docker.com/r/martadinata666/reactive-resume</a><br><br><br>",
      "platform": "linux",
      "ports": ["7768:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/keepoutoftheway/var/www/html"
        }
      ]
    },
    {
      "categories": ["project-management", "Other", "Tools"],
      "description": "Open-source project management tool",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "redmine",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "redmine",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "",
          "label": "REDMINE_SECRET_KEY_BASE",
          "name": "REDMINE_SECRET_KEY_BASE"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/redmine.png",
      "name": "redmine",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.redmine.org/\" target=\"_blank\">https://www.redmine.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/redmine\" target=\"_blank\">https://hub.docker.com/_/redmine</a><br><br><br>Default user and password are admin/admin",
      "platform": "linux",
      "ports": ["4180:3000/tcp"],
      "repository": {
        "stackfile": "stack/redmine.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Redmine",
      "type": 3
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/resilio.png",
      "name": "resilio-sync",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.resilio.com/individuals/\" target=\"_blank\">https://www.resilio.com/individuals/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-resilio-sync\" target=\"_blank\">https://docs.linuxserver.io/images/docker-resilio-sync</a><br><br><br>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "55555:55555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "50",
          "label": "MAX_FILE_UPLOADS",
          "name": "MAX_FILE_UPLOADS"
        },
        {
          "default": "info",
          "label": "RT_LOG_LEVEL",
          "name": "RT_LOG_LEVEL"
        },
        {
          "default": "6881",
          "label": "RT_DHT_PORT",
          "name": "RT_DHT_PORT"
        },
        {
          "default": "8000",
          "label": "XMLRPC_PORT",
          "name": "XMLRPC_PORT"
        },
        {
          "default": "8080",
          "label": "RUTORRENT_PORT",
          "name": "RUTORRENT_PORT"
        },
        {
          "default": "9000",
          "label": "WEBDAV_PORT",
          "name": "WEBDAV_PORT"
        },
        {
          "default": "50000",
          "label": "RT_INC_PORT",
          "name": "RT_INC_PORT"
        },
        {
          "default": "erasedata,httprpc",
          "label": "RU_REMOVE_CORE_PLUGINS",
          "name": "RU_REMOVE_CORE_PLUGINS"
        }
      ],
      "image": "linuxserver/crazymax/rtorrent-rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Novik/ruTorrent\" target=\"_blank\">https://github.com/Novik/ruTorrent</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/crazy-max/docker-rtorrent-rutorrent\" target=\"_blank\">https://github.com/crazy-max/docker-rtorrent-rutorrent</a><br><br><br>For ruTorrent basic auth, XMLRPC through nginx and WebDAV on completed downloads, you can populate .htpasswd files with the following command:\\ndocker run --rm -it httpd:2.4-alpine htpasswd -Bbn <username> <password> >> $(pwd)/passwd/webdav.htpasswd",
      "platform": "linux",
      "ports": [
        "${RT_DHT_PORT}:${RT_DHT_PORT}/udp",
        "${XMLRPC_PORT}:${XMLRPC_PORT}/tcp",
        "${RUTORRENT_PORT}:${RUTORRENT_PORT}/tcp",
        "${WEBDAV_PORT}:${WEBDAV_PORT}/tcp",
        "${RT_INC_PORT}:${RT_INC_PORT}/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent/config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent/passwd",
          "container": "/passwd"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sabnzbd.org/\" target=\"_blank\">https://sabnzbd.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sabnzbd\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sabnzbd</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "command": "",
      "description": "Samba has provided secure, stable and fast file and print services for all clients using the SMB/CIFS protocol, such as all versions of DOS and Windows, OS/2, Linux and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "USERID",
          "name": "USERID"
        },
        {
          "default": "1000",
          "label": "GROUPID",
          "name": "GROUPID"
        },
        {
          "default": "guest;guest",
          "label": "USER",
          "name": "USER"
        },
        {
          "default": "true",
          "label": "PERMISSIONS",
          "name": "PERMISSIONS"
        },
        {
          "default": "portainer;/share;yes;no;yes;guest",
          "label": "SHARE",
          "name": "SHARE"
        }
      ],
      "image": "dperson/samba:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/samba.png",
      "name": "Samba",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.samba.org/\" target=\"_blank\">https://www.samba.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/dperson/samba\" target=\"_blank\">https://github.com/dperson/samba</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=2zZ3_1GRWrM&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=11\" target=\"_blank\">Setting up Raspberry Pi Samba Server For File Sharing on Docker</a><br><br>",
      "platform": "linux",
      "ports": ["139:139/tcp", "445:445/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Samba",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/share"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Open-Source Privacy-respecting metasearch engine",
      "env": [
        {
          "default": "http://localhost:9017",
          "label": "BASE_URL",
          "name": "BASE_URL"
        },
        {
          "default": "my-instance",
          "label": "INSTANCE_NAME",
          "name": "INSTANCE_NAME"
        }
      ],
      "image": "searxng/searxng:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/searx.png",
      "name": "SearXNG",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://docs.searxng.org/\" target=\"_blank\">https://docs.searxng.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.searxng.org/admin/installation-docker.html\" target=\"_blank\">https://docs.searxng.org/admin/installation-docker.html</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/searxng.md\" target=\"_blank\">searxng.md</a><br><br><br>",
      "platform": "linux",
      "ports": ["9017:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SearXNG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/searxng",
          "container": "/etc/searxng"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "nicholaswilde/shiori:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/shiori-icon.png",
      "name": "shiori",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/go-shiori/shiori\" target=\"_blank\">https://github.com/go-shiori/shiori</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/nicholaswilde/docker-shiori\" target=\"_blank\">https://github.com/nicholaswilde/docker-shiori</a><br><br><br>",
      "platform": "linux",
      "ports": ["7564:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sickchill-icon.png",
      "name": "sickchill",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://docs.linuxserver.io/images/docker-sickchill\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sickchill</a><br><b>Official Docker Documentation: </b><a href=\"https://sickchill.github.io/\" target=\"_blank\">https://sickchill.github.io/</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sickgear-icon.png",
      "name": "sickgear",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/SickGear/SickGear/wiki\" target=\"_blank\">https://github.com/SickGear/SickGear/wiki</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sickgear\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sickgear</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/smokeping-icon.png",
      "name": "smokeping",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://oss.oetiker.ch/smokeping/\" target=\"_blank\">https://oss.oetiker.ch/smokeping/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-smokeping\" target=\"_blank\">https://docs.linuxserver.io/images/docker-smokeping</a><br><br><br>",
      "platform": "linux",
      "ports": ["4794:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Snippet Box is a simple self-hosted app for organizing your code snippets.",
      "image": "pawelmalak/snippet-box:arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/snibox.png",
      "name": "Snippet-box",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pawelmalak/snippet-box\" target=\"_blank\">https://github.com/pawelmalak/snippet-box</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pawelmalak/snippet-box#with-docker\" target=\"_blank\">https://github.com/pawelmalak/snippet-box#with-docker</a><br><br><br>Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["5010:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snippet-box",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snippet-box",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sonarr-icon.png",
      "name": "sonarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sonarr.tv/\" target=\"_blank\">https://sonarr.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sonarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sonarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Run a Speedtest every hour and graph the results.  See https://hub.docker.com/r/henrywhitaker3/speedtest-tracker/tags for arch options",
      "env": [
        {
          "default": "latest-arm",
          "label": "arch",
          "name": "arch"
        },
        {
          "default": "true",
          "label": "OOKLA_EULA_GDPR",
          "name": "OOKLA_EULA_GDPR"
        }
      ],
      "image": "henrywhitaker3/speedtest-tracker:dev-arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/speedtest-tracker.png",
      "name": "speedtest-tracker",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/henrywhitaker3/Speedtest-Tracker\" target=\"_blank\">https://github.com/henrywhitaker3/Speedtest-Tracker</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/henrywhitaker3/Speedtest-Tracker#using-docker\" target=\"_blank\">https://github.com/henrywhitaker3/Speedtest-Tracker#using-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8765:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Speedtest Tracker",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/speedtest-tracker",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "Sshwifty is a SSH and Telnet connector made for the Web. It can be deployed on your computer or server to provide SSH and Telnet access interface for any compatible (standard) web browser.",
      "image": "niruix/sshwifty:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sshwifty-icon.png",
      "name": "Sshwifty",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sshwifty.herokuapp.com/\" target=\"_blank\">https://sshwifty.herokuapp.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/nirui/sshwifty#docker-image\" target=\"_blank\">https://github.com/nirui/sshwifty#docker-image</a><br><br><br>",
      "platform": "linux",
      "ports": ["8182:8182/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sshwifty",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/syncthing-icon.png",
      "name": "syncthing",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://syncthing.net/\" target=\"_blank\">https://syncthing.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-syncthing\" target=\"_blank\">https://docs.linuxserver.io/images/docker-syncthing</a><br><br><br>",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/tautulli-icon.png",
      "name": "tautulli",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tautulli.com/\" target=\"_blank\">https://tautulli.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-tautulli\" target=\"_blank\">https://docs.linuxserver.io/images/docker-tautulli</a><br><br><br>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://thelounge.chat/\" target=\"_blank\">https://thelounge.chat/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-thelounge\" target=\"_blank\">https://docs.linuxserver.io/images/docker-thelounge</a><br><br><br>",
      "platform": "linux",
      "ports": ["9500:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/tiddlywiki.png",
      "name": "tiddlywiki",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tiddlywiki.com/\" target=\"_blank\">https://tiddlywiki.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/djmaze/tiddlywiki-docker\" target=\"_blank\">https://github.com/djmaze/tiddlywiki-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Proxy", "Security", "Tools"],
      "description": "Cloud-Native Networking Stack That Just Works.",
      "image": "traefik:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/traefik.png",
      "name": "traefik",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://doc.traefik.io/traefik/\" target=\"_blank\">https://doc.traefik.io/traefik/</a><br><b>Official Docker Documentation: </b><a href=\"https://doc.traefik.io/traefik/getting-started/install-traefik/\" target=\"_blank\">https://doc.traefik.io/traefik/getting-started/install-traefik/</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/traefik.sh\" target=\"_blank\">traefik.sh</a><br><br>A simple and lightweight reverse proxy",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Traefik",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/traefik/traefik.yml",
          "container": "/traefik.yml"
        },
        {
          "bind": "/portainer/Files/AppData/Config/traefik/config.yml",
          "container": "/config.yml"
        },
        {
          "bind": "/portainer/Files/AppData/Config/traefik/acme.json",
          "container": "/acme.json"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-transmission\" target=\"_blank\">https://docs.linuxserver.io/images/docker-transmission</a><br><br><br>",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "description": "Optional. Mostly used to narrow down what location to use by the provider",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        },
        {
          "default": "true",
          "label": "watch-dir-enabled",
          "name": "TRANSMISSION_WATCH_DIR_ENABLED"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission-openvpn-v4",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://haugene.github.io/docker-transmission-openvpn/run-container/\" target=\"_blank\">https://haugene.github.io/docker-transmission-openvpn/run-container/</a><br><br><br>List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Transmission OpenVPN Version 4",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "description": "Optional. Mostly used to narrow down what location to use by the provider",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        },
        {
          "default": "true",
          "label": "watch-dir-enabled",
          "name": "TRANSMISSION_WATCH_DIR_ENABLED"
        }
      ],
      "image": "haugene/transmission-openvpn:3.7.1",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://haugene.github.io/docker-transmission-openvpn/run-container/\" target=\"_blank\">https://haugene.github.io/docker-transmission-openvpn/run-container/</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=tGLVEq913_4&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=5\" target=\"_blank\">Torrent with Docker and OPENVPN with Transmission and PIA</a><br><br>List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tvheadend.org/\" target=\"_blank\">https://tvheadend.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-tvheadend\" target=\"_blank\">https://docs.linuxserver.io/images/docker-tvheadend</a><br><br><br>",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "default": "512",
          "label": "MAXMEM",
          "name": "MAXMEM"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ubooquity-icon.png",
      "name": "ubooquity",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://vaemendis.net/ubooquity/\" target=\"_blank\">https://vaemendis.net/ubooquity/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-ubooquity\" target=\"_blank\">https://docs.linuxserver.io/images/docker-ubooquity</a><br><br><br>",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unifi-icon.png",
      "name": "unifi-controller",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ui.com/consoles\" target=\"_blank\">https://ui.com/consoles</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-unifi-controller\" target=\"_blank\">https://docs.linuxserver.io/images/docker-unifi-controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "default": "UniFi Video",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unifivideo-icon.png",
      "name": "UniFi Video",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pducharme/UniFi-Video-Controller\" target=\"_blank\">https://github.com/pducharme/UniFi-Video-Controller</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pducharme/UniFi-Video-Controller\" target=\"_blank\">https://github.com/pducharme/UniFi-Video-Controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Monitor", "Tools"],
      "description": "Monitor your Unifi Controller using Grafana developed by oijkn for the Raspberry Pi Monitor.",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unpoller-logo.png",
      "name": "UnPoller Unifi Controller Monitor",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://unpoller.com/\" target=\"_blank\">https://unpoller.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/novaspirit/pi-hosted/blob/master/docs/UnPoller-Monitor.md\" target=\"_blank\">https://github.com/novaspirit/pi-hosted/blob/master/docs/UnPoller-Monitor.md</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/UnPoller-Monitor.md\" target=\"_blank\">UnPoller-Monitor.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/unpoller-install.sh\" target=\"_blank\">unpoller-install.sh</a><br><br>",
      "platform": "linux",
      "ports": ["8086:8086/tcp"],
      "repository": {
        "stackfile": "stack/unpoller-stack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "UnPoller Monitor",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "It is a self-hosted monitoring tool like 'Uptime Robot'.",
      "image": "louislam/uptime-kuma:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/uptime-kuma.png",
      "name": "uptime-kuma",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/louislam/uptime-kuma\" target=\"_blank\">https://github.com/louislam/uptime-kuma</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/louislam/uptime-kuma/wiki/%F0%9F%94%A7-How-to-Install#-docker\" target=\"_blank\">https://github.com/louislam/uptime-kuma/wiki/%F0%9F%94%A7-How-to-Install#-docker</a><br><br><br>A fancy self-hosted monitoring tool.",
      "platform": "linux",
      "ports": ["3001:3001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Uptime Kuma",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/uptime-kuma",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bitwarden.png",
      "name": "vaultwarden",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/dani-garcia/vaultwarden\" target=\"_blank\">https://github.com/dani-garcia/vaultwarden</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/dani-garcia/vaultwarden/wiki\" target=\"_blank\">https://github.com/dani-garcia/vaultwarden/wiki</a><br><br><br>Alternative Implementation of the Bitwarden Server API in Rust, including web vault.",
      "platform": "linux",
      "ports": ["8010:80/tcp", "3012:3012/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bitwarden",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "todo"],
      "description": "Vikunja With Frontend.  The to-do app to organize your life.  Must run tools/install_vikunja.sh before installing the template.  More informantion at https://vikunja.io/",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "vikunja",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "vikunja",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/vikunja.png",
      "name": "vikunja",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://vikunja.io/\" target=\"_blank\">https://vikunja.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://vikunja.io/docs/full-docker-example/#example-with-nginx-as-proxy\" target=\"_blank\">https://vikunja.io/docs/full-docker-example/#example-with-nginx-as-proxy</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_vikunja.sh\" target=\"_blank\">install_vikunja.sh</a><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/vikunja.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Vikunja With Frontend",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/watchtower.png",
      "name": "watchtower",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://containrrr.dev/watchtower/\" target=\"_blank\">https://containrrr.dev/watchtower/</a><br><b>Official Docker Documentation: </b><a href=\"https://containrrr.dev/watchtower/usage-overview/\" target=\"_blank\">https://containrrr.dev/watchtower/usage-overview/</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=q3wKqk8qVS8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=7\" target=\"_blank\">Upgrading Portainer and Updating Containers</a><br><br>It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/webgrabplus.png",
      "name": "webgrabplus",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://www.webgrabplus.com/\" target=\"_blank\">http://www.webgrabplus.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-webgrabplus\" target=\"_blank\">https://docs.linuxserver.io/images/docker-webgrabplus</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:0.6.0",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/whoogle.png",
      "name": "whoogle",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/benbusby/whoogle-search\" target=\"_blank\">https://github.com/benbusby/whoogle-search</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/benbusby/whoogle-search#g-manual-docker\" target=\"_blank\">https://github.com/benbusby/whoogle-search#g-manual-docker</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=j3ZGxo3ibUs&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=12\" target=\"_blank\">How to Install Whoogle to replace using Google and repo notes</a><br><br>",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wikijs.png",
      "name": "wikijs",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://js.wiki/\" target=\"_blank\">https://js.wiki/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-wikijs\" target=\"_blank\">https://docs.linuxserver.io/images/docker-wikijs</a><br><br><br>",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Docker image for Windows 2000 Advanced Server with SP4.",
      "image": "hectormolinero/qemu-win2000:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/win2000.png",
      "name": "win2000",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/hectorm/docker-qemu-win2000\" target=\"_blank\">https://github.com/hectorm/docker-qemu-win2000</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/hectorm/docker-qemu-win2000#start-an-instance\" target=\"_blank\">https://github.com/hectorm/docker-qemu-win2000#start-an-instance</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=57Gnp0424Qc&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=13\" target=\"_blank\">Checking out Windows 2000 Docker</a><br><br>Why? Your scientists were so preoccupied with whether or not they could, that they didn't stop to think if they should. -- Dr. Ian Malcolm",
      "platform": "linux",
      "ports": ["3389:3389/tcp", "5900:5900/tcp", "6080:6080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Windows 2000",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Win2000/zdrive",
          "container": "/mnt"
        }
      ]
    },
    {
      "categories": ["Other", "VPN"],
      "description": "Fast VPN Server with easy to use User Interface",
      "env": [
        {
          "default": "example.domain.com",
          "description": "Set here your DDNS domain",
          "label": "WG_HOST",
          "name": "WG_HOST"
        },
        {
          "default": "ENTER AN ADMIN PASSWORD",
          "description": "Leave blank to access WebUI without loggin",
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "default": "51820",
          "label": "WG_PORT",
          "name": "WG_PORT"
        },
        {
          "default": "1.1.1.1",
          "label": "WG_DEFAULT_DNS",
          "name": "WG_DEFAULT_DNS"
        },
        {
          "default": "0.0.0.0/0, ::/0",
          "label": "WG_ALLOWED_IPS",
          "name": "WG_ALLOWED_IPS"
        }
      ],
      "image": "weejewel/wg-easy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wireguard.png",
      "name": "wg-easy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/WeeJeWel/wg-easy/\" target=\"_blank\">https://github.com/WeeJeWel/wg-easy/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/WeeJeWel/wg-easy/#1-install-docker\" target=\"_blank\">https://github.com/WeeJeWel/wg-easy/#1-install-docker</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/wireguard-install.md\" target=\"_blank\">wireguard-install.md</a><br><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/wireguard-easy.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Wireguard Server",
      "type": 3
    },
    {
      "categories": ["WordPress", "Web"],
      "description": "Wordpress setup with a MySQL database",
      "env": [
        {
          "default": "5080",
          "label": "External Port for webserver forward to port 80",
          "name": "WEB_SERVER_PORT"
        },
        {
          "default": "wordpress",
          "label": "Database user name",
          "name": "MYSQL_DATABASE_USER_NAME"
        },
        {
          "label": "Database password for user",
          "name": "MYSQL_DATABASE_PASSWORD"
        },
        {
          "label": "Database root password",
          "name": "MYSQL_DATABASE_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wordpress.png",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://wordpress.com/\" target=\"_blank\">https://wordpress.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/docker-library/docs/tree/master/wordpress#-via-docker-stack-deploy-or-docker-compose\" target=\"_blank\">https://github.com/docker-library/docs/tree/master/wordpress#-via-docker-stack-deploy-or-docker-compose</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/wordpress_installation.md\" target=\"_blank\">wordpress_installation.md</a><br><br><br>Deploys a Wordpress instance connected to a MySQL database.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/wordpress-stack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Wordpress",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://yacht.sh/\" target=\"_blank\">https://yacht.sh/</a><br><b>Official Docker Documentation: </b><a href=\"https://yacht.sh/docs/Installation/Install#via-docker-compose\" target=\"_blank\">https://yacht.sh/docs/Installation/Install#via-docker-compose</a><br><br><br>",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ytdlm.png",
      "name": "youtubedl-material",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Tzahi12345/YoutubeDL-Material\" target=\"_blank\">https://github.com/Tzahi12345/YoutubeDL-Material</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/Tzahi12345/YoutubeDL-Material#docker\" target=\"_blank\">https://github.com/Tzahi12345/YoutubeDL-Material#docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/znc-icon.png",
      "name": "znc",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://wiki.znc.in/ZNC\" target=\"_blank\">https://wiki.znc.in/ZNC</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-znc\" target=\"_blank\">https://docs.linuxserver.io/images/docker-znc</a><br><br><br>",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "[DEPRECATED] Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "airsonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS"
        }
      ],
      "image": "linuxserver/airsonic:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/airsonic-logo.png",
      "name": "airsonic",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://airsonic.github.io/\" target=\"_blank\">https://airsonic.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://airsonic.github.io/docs/install/docker/\" target=\"_blank\">https://airsonic.github.io/docs/install/docker/</a><br><br><br>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/config/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic Advanced is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "airsonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS"
        }
      ],
      "image": "linuxserver/airsonic-advanced:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/airsonic-logo.png",
      "name": "airsonic-advanced",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/airsonic-advanced/airsonic-advanced\" target=\"_blank\">https://github.com/airsonic-advanced/airsonic-advanced</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/linuxserver/docker-airsonic-advanced\" target=\"_blank\">https://github.com/linuxserver/docker-airsonic-advanced</a><br><br><br>",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic Advanced",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic-Advanced/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic-Advanced/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic-Advanced/config/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view sites you want to preserve offline.",
      "env": [
        {
          "default": "*",
          "label": "ALLOWED_HOSTS",
          "name": "ALLOWED_HOSTS"
        },
        {
          "default": "750m",
          "label": "MEDIA_MAX_SIZE",
          "name": "MEDIA_MAX_SIZE"
        },
        {
          "default": "true",
          "label": "PUBLIC_INDEX",
          "name": "PUBLIC_INDEX"
        },
        {
          "default": "true",
          "label": "PUBLIC_SNAPSHOTS",
          "name": "PUBLIC_SNAPSHOTS"
        },
        {
          "default": "false",
          "label": "PUBLIC_ADD_VIEW",
          "name": "PUBLIC_ADD_VIEW"
        }
      ],
      "image": "archivebox/archivebox:master",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/archivebox.png",
      "name": "archivebox",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://archivebox.io/\" target=\"_blank\">https://archivebox.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/ArchiveBox/ArchiveBox/wiki/Docker\" target=\"_blank\">https://github.com/ArchiveBox/ArchiveBox/wiki/Docker</a><br><br><br>By default an admin user is not created. You can do so by launching a shell in the container and executing 'archivebox manage createsuperuser'. Documentation is Available <a href='https://github.com/ArchiveBox/ArchiveBox/wiki'>here</a>.",
      "platform": "linux",
      "ports": ["8002:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Archivebox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/archivebox",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/authelia.png",
      "name": "authelia",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.authelia.com/\" target=\"_blank\">https://www.authelia.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.authelia.com/docs/configuration/\" target=\"_blank\">https://www.authelia.com/docs/configuration/</a><br><br><br>Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bazarr.png",
      "name": "bazarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.bazarr.media/\" target=\"_blank\">https://www.bazarr.media/</a><br><b>Official Docker Documentation: </b><a href=\"https://wiki.bazarr.media/Getting-Started/Installation/Docker/docker/\" target=\"_blank\">https://wiki.bazarr.media/Getting-Started/Installation/Docker/docker/</a><br><br><br>",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/beets-icon.png",
      "name": "beets",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://beets.io/\" target=\"_blank\">https://beets.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-beets\" target=\"_blank\">https://docs.linuxserver.io/images/docker-beets</a><br><br><br>",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/booksonic.png",
      "name": "booksonic",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://booksonic.org/\" target=\"_blank\">https://booksonic.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-booksonic-air\" target=\"_blank\">https://docs.linuxserver.io/images/docker-booksonic-air</a><br><br><br>",
      "platform": "linux",
      "ports": ["4041:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "http://192.168.X.Y:6875",
          "description": "Address to access Bookstack. If using a domain, add it here. If not set correctly the app will not be accessible",
          "label": "APP_URL",
          "name": "APP_URL"
        },
        {
          "default": "6875",
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bookstack2.png",
      "name": "bookstack",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.bookstackapp.com/\" target=\"_blank\">https://www.bookstackapp.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.bookstackapp.com/docs/admin/installation/#docker\" target=\"_blank\">https://www.bookstackapp.com/docs/admin/installation/#docker</a><br><br><br>Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/bookstack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Tools", "Web", "Webserver"],
      "description": "Caddy - The Ultimate Server with Automatic HTTPS.  Need to run tools/install_caddy.sh before installing the template.",
      "image": "caddy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/caddy.png",
      "name": "caddy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://caddyserver.com/\" target=\"_blank\">https://caddyserver.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/caddy\" target=\"_blank\">https://hub.docker.com/_/caddy</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_caddy.sh\" target=\"_blank\">install_caddy.sh</a><br><br>Caddy 2 is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "2019:2019/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Caddy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Data",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Caddy/Caddyfile",
          "container": "/etc/caddy/Caddyfile"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/calibre-web-icon.png",
      "name": "calibre-web",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://calibre-ebook.com/\" target=\"_blank\">https://calibre-ebook.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-calibre-web\" target=\"_blank\">https://docs.linuxserver.io/images/docker-calibre-web</a><br><br><br>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cardigann.png",
      "name": "cardigann",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/cardigann/cardigann\" target=\"_blank\">https://github.com/cardigann/cardigann</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/cardigann/\" target=\"_blank\">https://hub.docker.com/r/linuxserver/cardigann/</a><br><br><br>",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME"
        },
        {
          "default": "",
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX"
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/Chevereto.png",
      "name": "Chevereto",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://chevereto.com/\" target=\"_blank\">https://chevereto.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/nmtan/chevereto\" target=\"_blank\">https://hub.docker.com/r/nmtan/chevereto</a><br><br><br>",
      "platform": "linux",
      "ports": ["7382:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Cloudflare DDNS - A small and fast DDNS updater for Cloudflare.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "CF_API_TOKEN",
          "name": "CF_API_TOKEN"
        },
        {
          "default": "",
          "label": "DOMAINS (Comma Separated List)",
          "name": "DOMAINS"
        },
        {
          "default": "true",
          "label": "PROXIED",
          "name": "PROXIED"
        }
      ],
      "image": "favonia/cloudflare-ddns:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cloudflare-ddns.png",
      "name": "cloudflare-ddns",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.cloudflare.com/en-gb/learning/dns/glossary/dynamic-dns/\" target=\"_blank\">https://www.cloudflare.com/en-gb/learning/dns/glossary/dynamic-dns/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oznu/cloudflare-ddns/\" target=\"_blank\">https://hub.docker.com/r/oznu/cloudflare-ddns/</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Cloudflare DDNS",
      "type": 1
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/code-server.png",
      "name": "code-server",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://coder.com/\" target=\"_blank\">https://coder.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-code-server\" target=\"_blank\">https://docs.linuxserver.io/images/docker-code-server</a><br><br><br>",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/codiad-icon.png",
      "name": "codiad",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://codiad.com/\" target=\"_blank\">http://codiad.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/Codiad/Codiad/wiki/Quick-installation-using-Docker\" target=\"_blank\">https://github.com/Codiad/Codiad/wiki/Quick-installation-using-Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["7294:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/cops-icon.png",
      "name": "cops",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://blog.slucas.fr/projects/calibre-opds-php-server/\" target=\"_blank\">https://blog.slucas.fr/projects/calibre-opds-php-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-cops\" target=\"_blank\">https://docs.linuxserver.io/images/docker-cops</a><br><br><br>",
      "platform": "linux",
      "ports": ["8945:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/couchpotato-icon.png",
      "name": "couchpotato",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://couchpota.to/\" target=\"_blank\">https://couchpota.to/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-couchpotato\" target=\"_blank\">https://docs.linuxserver.io/images/docker-couchpotato</a><br><br><br>",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://owntone.github.io/owntone-server/\" target=\"_blank\">https://owntone.github.io/owntone-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-daapd\" target=\"_blank\">https://docs.linuxserver.io/images/docker-daapd</a><br><br><br>",
      "platform": "linux",
      "ports": ["3689:3689/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "failed2run/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dashmachine_logo.png",
      "name": "dashmachine",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/rmountjoy92/DashMachine\" target=\"_blank\">https://github.com/rmountjoy92/DashMachine</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/rmountjoy92/DashMachine\" target=\"_blank\">https://github.com/rmountjoy92/DashMachine</a><br><br><br>",
      "platform": "linux",
      "ports": ["5100:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/davos.png",
      "name": "davos",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/linuxserver/davos\" target=\"_blank\">https://github.com/linuxserver/davos</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-davos\" target=\"_blank\">https://docs.linuxserver.io/images/docker-davos</a><br><br><br>",
      "platform": "linux",
      "ports": ["7136:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/deemix.png",
      "name": "deemix",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://deemix.app/\" target=\"_blank\">https://deemix.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://gitlab.com/Bockiii/deemix-docker\" target=\"_blank\">https://gitlab.com/Bockiii/deemix-docker</a><br><br><br>Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "022",
          "label": "UMASK",
          "name": "UMASK"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/deluge-icon.png",
      "name": "deluge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.deluge-torrent.org/\" target=\"_blank\">https://www.deluge-torrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-deluge\" target=\"_blank\">https://docs.linuxserver.io/images/docker-deluge</a><br><br><br>",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "CA Toronto",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "192.168.0.0/16",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:arm64v8-latest",
      "name": "deluge-openvpn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.deluge-torrent.org/\" target=\"_blank\">https://www.deluge-torrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/sgtsquiggs/docker-deluge-openvpn\" target=\"_blank\">https://github.com/sgtsquiggs/docker-deluge-openvpn</a><br><br><br>",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://domoticz.com/\" target=\"_blank\">https://domoticz.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-domoticz\" target=\"_blank\">https://docs.linuxserver.io/images/docker-domoticz</a><br><br><br>",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Dozzle is a real-time log viewer for docker containers.",
      "image": "amir20/dozzle:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dozzle.png",
      "name": "dozzle",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://dozzle.dev/\" target=\"_blank\">https://dozzle.dev/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/amir20/dozzle\" target=\"_blank\">https://github.com/amir20/dozzle</a><br><br><br>View logs for docker containers.",
      "platform": "linux",
      "ports": ["8888:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dozzle",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Security"],
      "description": "Dradis Framework: Collaboration and reporting for IT Security teams http://dradisframework.org",
      "image": "raesene/dradis:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/dradis-logo.png",
      "name": "dradis",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://dradisframework.com/\" target=\"_blank\">https://dradisframework.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/raesene/dockerized-security-tools\" target=\"_blank\">https://github.com/raesene/dockerized-security-tools</a><br><br><br>",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dradis",
      "type": 1
    },
    {
      "categories": ["Other", "CMD", "Web", "Tools"],
      "description": "Drupal CMS.  Make sure you run the install script under tools before installing.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "drupal",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "drupal",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/drupal.png",
      "name": "drupal",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.drupal.org/\" target=\"_blank\">https://www.drupal.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.drupal.org/docs/develop/local-server-setup/docker-development-environments/docker-with-solr-cloud-integration/docker-configuration\" target=\"_blank\">https://www.drupal.org/docs/develop/local-server-setup/docker-development-environments/docker-with-solr-cloud-integration/docker-configuration</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_drupal.sh\" target=\"_blank\">install_drupal.sh</a><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/drupal.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Drupal",
      "type": 3
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "default": "",
          "label": "SUBDOMAINS (Comma Separated List)",
          "name": "SUBDOMAINS"
        },
        {
          "default": "",
          "label": "TOKEN",
          "name": "TOKEN"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/duckdns.png",
      "name": "duckdns",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.duckdns.org/\" target=\"_blank\">https://www.duckdns.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-duckdns\" target=\"_blank\">https://docs.linuxserver.io/images/docker-duckdns</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/duplicati-icon.png",
      "name": "duplicati",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.duplicati.com/\" target=\"_blank\">https://www.duplicati.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-duplicati\" target=\"_blank\">https://docs.linuxserver.io/images/docker-duplicati</a><br><br><br>",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Eclipse Mosquitto is an open source implementation of a server for versions 5, 3.1.1, and 3.1 of the MQTT protocol.\r\nYou will need to create /portainer/Files/AppData/Config/Mosquitto/config/mosquitto.conf and if needed your password file.\r\nHave a look on https://mosquitto.org/man/mosquitto_passwd-1.html",
      "hostname": "rpi-mosquitto",
      "image": "eclipse-mosquitto:latest",
      "logo": "https://raw.githubusercontent.com/docker-library/docs/757578e3a44e5460a8a11d32a81776f8b74231a9/eclipse-mosquitto/logo.png",
      "name": "mosquitto",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mosquitto.org/\" target=\"_blank\">https://mosquitto.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/eclipse-mosquitto\" target=\"_blank\">https://hub.docker.com/_/eclipse-mosquitto</a><br><br><br>",
      "platform": "linux",
      "ports": ["1883:1883/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Eclipse Mosquitto",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/config",
          "container": "/mosquitto/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/data",
          "container": "/mosquitto/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Mosquitto/log",
          "container": "/mosquitto/log"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/emby.png",
      "name": "emby",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://emby.media/\" target=\"_blank\">https://emby.media/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-emby\" target=\"_blank\">https://docs.linuxserver.io/images/docker-emby</a><br><br><br>",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/embystat.png",
      "name": "embystat",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mregni/EmbyStat\" target=\"_blank\">https://github.com/mregni/EmbyStat</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-embystat\" target=\"_blank\">https://docs.linuxserver.io/images/docker-embystat</a><br><br><br>Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "[arm] Web File Browser which can be used as a middleware or standalone app.",
      "image": "filebrowser/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/filebrowser.png",
      "name": "filebrowser",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://filebrowser.org/\" target=\"_blank\">https://filebrowser.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://filebrowser.org/installation#docker\" target=\"_blank\">https://filebrowser.org/installation#docker</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=30MYRgCObu8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=4\" target=\"_blank\">Installing JDownloader and File Browser On The Pi Docker Server</a><br><br>The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/srv"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Flame is self-hosted startpage for your server. Its design is inspired (heavily) by SUI. Flame is very easy to setup and use. With built-in editors, it allows you to setup your very own application hub in no time - no file editing necessary.",
      "env": [
        {
          "default": "",
          "label": "Flame Password",
          "name": "PASSWORD"
        }
      ],
      "image": "pawelmalak/flame:multiarch",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/flame.png",
      "name": "Flame",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pawelmalak/flame\" target=\"_blank\">https://github.com/pawelmalak/flame</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pawelmalak/flame#with-docker-recommended\" target=\"_blank\">https://github.com/pawelmalak/flame#with-docker-recommended</a><br><br><br>",
      "platform": "linux",
      "ports": ["5005:5005/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Flame",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Flame/data",
          "container": "/app/data"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Games"],
      "description": "This docker image provides the FoundryVTT system for hosting your own virtual table top games.",
      "env": [
        {
          "default": "John",
          "label": "Foundry Account Name",
          "name": "FOUNDRY_USERNAME"
        },
        {
          "default": "password",
          "label": "Foundry Password",
          "name": "FOUNDRY_PASSWORD"
        },
        {
          "default": "changeme",
          "label": "Instance Admin Password",
          "name": "FOUNDRY_ADMIN_KEY"
        },
        {
          "default": "true",
          "label": "CONTAINER_PRESERVE_CONFIG",
          "name": "CONTAINER_PRESERVE_CONFIG"
        }
      ],
      "image": "felddy/foundryvtt:release",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/foundrylogo.png",
      "name": "FoundryVTT",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://foundryvtt.com/\" target=\"_blank\">https://foundryvtt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/felddy/foundryvtt\" target=\"_blank\">https://hub.docker.com/r/felddy/foundryvtt</a><br><br><br>",
      "platform": "linux",
      "ports": ["30000:30000/tcp"],
      "restart_polocy": "unless-stopped",
      "title": "FoundryVTT Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/foundryvtt",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "freshrss/freshrss:arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/freshrss-icon.png",
      "name": "freshrss",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.freshrss.org/\" target=\"_blank\">https://www.freshrss.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/FreshRSS/FreshRSS/tree/edge/Docker\" target=\"_blank\">https://github.com/FreshRSS/FreshRSS/tree/edge/Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8132:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "[DEPRECATED] A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gazee-logo.png",
      "name": "gazee",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/hubbcaps/gazee\" target=\"_blank\">https://github.com/hubbcaps/gazee</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/gazee\" target=\"_blank\">https://hub.docker.com/r/linuxserver/gazee</a><br><br><br>",
      "platform": "linux",
      "ports": ["4243:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["SCM", "Tools"],
      "description": "A painless self-hosted Git service.",
      "env": [
        {
          "default": "1000",
          "label": "USER_UID",
          "name": "USER_UID"
        },
        {
          "default": "1000",
          "label": "USER_GID",
          "name": "USER_GID"
        }
      ],
      "image": "gitea/gitea:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gitea.png",
      "name": "gitea",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://gitea.com/\" target=\"_blank\">https://gitea.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.gitea.io/en-us/install-with-docker/\" target=\"_blank\">https://docs.gitea.io/en-us/install-with-docker/</a><br><br><br>More possible Environment Variables: https://docs.gitea.io/en-us/install-with-docker/#managing-deployments-with-environment-variables",
      "platform": "linux",
      "ports": ["8124:3000/tcp", "222:22/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gitea",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gitea",
          "container": "/data"
        },
        {
          "bind": "/etc/timezone",
          "container": "/etc/timezone:ro"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime:ro"
        }
      ]
    },
    {
      "categories": ["SCM", "Tools"],
      "description": "Gitea with Mariadb: A painless self-hosted Git service.",
      "env": [
        {
          "default": "1000",
          "label": "USER_UID",
          "name": "USER_UID"
        },
        {
          "default": "1000",
          "label": "USER_GID",
          "name": "USER_GID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "gitea",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "gitea",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gitea.png",
      "name": "gitea-mysql",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://gitea.com/\" target=\"_blank\">https://gitea.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.gitea.io/en-us/install-with-docker/#mysql-database\" target=\"_blank\">https://docs.gitea.io/en-us/install-with-docker/#mysql-database</a><br><br><br>More possible Environment Variables: https://docs.gitea.io/en-us/install-with-docker/#managing-deployments-with-environment-variables",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/gitea-mariadb.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Gitea with Mariadb",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A simple server for sending and receiving messages",
      "env": [
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "admin",
          "label": "GOTIFY_DEFAULTUSER_NAME",
          "name": "GOTIFY_DEFAULTUSER_NAME"
        },
        {
          "default": "admin123",
          "label": "GOTIFY_DEFAULTUSER_PASS",
          "name": "GOTIFY_DEFAULTUSER_PASS"
        }
      ],
      "image": "gotify/server-arm64:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/gotify.png",
      "name": "gotify",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://gotify.net/\" target=\"_blank\">https://gotify.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://gotify.net/docs/install\" target=\"_blank\">https://gotify.net/docs/install</a><br><br><br>ARM7 Image. Documentation is Available <a href='https://gotify.net/docs/index'>here</a>.",
      "platform": "linux",
      "ports": ["9008:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gotify",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/gotify",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/grocy_logo.png",
      "name": "grocy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://grocy.info/\" target=\"_blank\">https://grocy.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-grocy\" target=\"_blank\">https://docs.linuxserver.io/images/docker-grocy</a><br><br><br>",
      "platform": "linux",
      "ports": ["9283:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "[arm] A clientless remote desktop gateway.",
      "image": "oznu/guacamole:armhf",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/guacamole.png",
      "name": "guacamole",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://guacamole.apache.org/\" target=\"_blank\">https://guacamole.apache.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oznu/guacamole\" target=\"_blank\">https://hub.docker.com/r/oznu/guacamole</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=cKAhnf8X1lo&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=3\" target=\"_blank\">Manually Installing Guacamole on Portainer</a><br><br>The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/headphones-icon.png",
      "name": "headphones",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/rembo10/headphones\" target=\"_blank\">https://github.com/rembo10/headphones</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-headphones\" target=\"_blank\">https://docs.linuxserver.io/images/docker-headphones</a><br><br><br>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/heimdall-icon.png",
      "name": "heimdall",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://heimdall.site/\" target=\"_blank\">https://heimdall.site/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-heimdall\" target=\"_blank\">https://docs.linuxserver.io/images/docker-heimdall</a><br><br><br>",
      "platform": "linux",
      "ports": ["7202:80/tcp", "7203:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "description": "Home Assistant is a free and open-source software for home automation that is designed to be the central control system for smart home devices with focus on local control and privacy.",
      "image": "homeassistant/home-assistant:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homeassistant.png",
      "name": "home-assistant",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.home-assistant.io/\" target=\"_blank\">https://www.home-assistant.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://www.home-assistant.io/installation/raspberrypi#install-home-assistant-container\" target=\"_blank\">https://www.home-assistant.io/installation/raspberrypi#install-home-assistant-container</a><br><br><br>",
      "platform": "linux",
      "ports": ["8999:8123/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Home Assistant",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HomeAssistant/assets",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["HomeAutomation"],
      "description": "Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. There are over 2,000 Homebridge plugins supporting thousands of different smart accessories.",
      "env": [
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1",
          "label": "HOMEBRIDGE_CONFIG_UI",
          "name": "HOMEBRIDGE_CONFIG_UI"
        },
        {
          "default": "8581",
          "label": "HOMEBRIDGE_CONFIG_UI_PORT",
          "name": "HOMEBRIDGE_CONFIG_UI_PORT"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "oznu/homebridge:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homebridge.png",
      "name": "homebridge",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://homebridge.io/\" target=\"_blank\">https://homebridge.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker\" target=\"_blank\">https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker</a><br><br><br>Bringing HomeKit support where there is none",
      "platform": "linux",
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Homebridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/homebridge",
          "container": "/homebridge"
        }
      ]
    },
    {
      "categories": ["HomeAutomation"],
      "description": "Debian Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. There are over 2,000 Homebridge plugins supporting thousands of different smart accessories.",
      "env": [
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1",
          "label": "HOMEBRIDGE_CONFIG_UI",
          "name": "HOMEBRIDGE_CONFIG_UI"
        },
        {
          "default": "8581",
          "label": "HOMEBRIDGE_CONFIG_UI_PORT",
          "name": "HOMEBRIDGE_CONFIG_UI_PORT"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "oznu/homebridge:debian",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homebridge.png",
      "name": "homebridge-debian",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://homebridge.io/\" target=\"_blank\">https://homebridge.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker\" target=\"_blank\">https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Docker</a><br><br><br>Bringing HomeKit support where there is none",
      "platform": "linux",
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Homebridge - Debian",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/debian-homebridge",
          "container": "/homebridge"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "env": [
        {
          "default": "1000",
          "label": "GID",
          "name": "GID"
        },
        {
          "default": "1000",
          "label": "UID",
          "name": "UID"
        }
      ],
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/homer.png",
      "name": "homer",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/bastienwirtz/homer\" target=\"_blank\">https://github.com/bastienwirtz/homer</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md\" target=\"_blank\">https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=_d3J88ootYo&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=2\" target=\"_blank\">Installing and Configuring Homer Dashboard</a><br><br>This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://htpc.io/\" target=\"_blank\">https://htpc.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-htpcmanager\" target=\"_blank\">https://docs.linuxserver.io/images/docker-htpcmanager</a><br><br><br>",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "mjysci/huginn:arm32v7",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/huginn.png",
      "name": "huginn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/huginn/huginn\" target=\"_blank\">https://github.com/huginn/huginn</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/huginn/huginn/tree/master/docker\" target=\"_blank\">https://github.com/huginn/huginn/tree/master/docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["3005:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "InfluxDB is an open source time series database for recording metrics, events, and analytics. You will need to add /portainer/Files/AppData/Config/Influxdb/config/influxdb.conf",
      "hostname": "rpi-influxdb1810",
      "image": "influxdb:1.8.10",
      "logo": "https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/influxdb/logo.png",
      "name": "influxdb1810",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.influxdata.com/\" target=\"_blank\">https://www.influxdata.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.influxdata.com/influxdb/v2.0/install/?t=Docker\" target=\"_blank\">https://docs.influxdata.com/influxdb/v2.0/install/?t=Docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8086:8086/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Influxdb 1.8.10",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Influxdb/data",
          "container": "/var/lib/influxdb"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Influxdb/config",
          "container": "/var/lib/influxdb"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jacket-icon.png",
      "name": "jackett",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Jackett/Jackett\" target=\"_blank\">https://github.com/Jackett/Jackett</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-jackett\" target=\"_blank\">https://docs.linuxserver.io/images/docker-jackett</a><br><br><br>",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "JDownloader docker image",
      "env": [
        {
          "default": "",
          "label": "MYJD_DEVICE_NAME",
          "name": "MYJD_DEVICE_NAME"
        },
        {
          "default": "",
          "label": "MYJD_USER",
          "name": "MYJD_USER"
        },
        {
          "default": "",
          "label": "MYJD_PASSWORD",
          "name": "MYJD_PASSWORD"
        }
      ],
      "image": "jaymoulin/jdownloader:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jdownloader.png",
      "name": "JDownloader",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://my.jdownloader.org/\" target=\"_blank\">https://my.jdownloader.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/jaymoulin/docker-jdownloader\" target=\"_blank\">https://github.com/jaymoulin/docker-jdownloader</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=30MYRgCObu8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=4\" target=\"_blank\">Installing JDownloader and File Browser On The Pi Docker Server</a><br><br>",
      "platform": "linux",
      "ports": ["3129:3129/tcp"],
      "restart_policy": "unless-stopped",
      "title": "JDownloader",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/JDownloader",
          "container": "/opt/JDownloader/cfg"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/opt/JDownloader/Downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/jellyfin.png",
      "name": "jellyfin",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://jellyfin.org/\" target=\"_blank\">https://jellyfin.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-jellyfin\" target=\"_blank\">https://docs.linuxserver.io/images/docker-jellyfin</a><br><br><br>",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lsioarmhf/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/kodi-icon.png",
      "name": "kodi-headless",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://kodi.tv/\" target=\"_blank\">https://kodi.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/lsioarmhf/kodi-headless-aarch64/\" target=\"_blank\">https://hub.docker.com/r/lsioarmhf/kodi-headless-aarch64/</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8080/tcp", "9090:9090/tcp", "9777:9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config/.kodi"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lazylibrarian.gitlab.io/\" target=\"_blank\">https://lazylibrarian.gitlab.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lazylibrarian\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lazylibrarian</a><br><br><br>",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "[DEPRECATED] This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;",
      "env": [
        {
          "default": "-Xms256m -Xmx512m",
          "label": "EMAIL",
          "name": "EMAIL"
        },
        {
          "default": "-Xms256m -Xmx512m",
          "label": "URL",
          "name": "URL"
        },
        {
          "default": "www,",
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS"
        },
        {
          "default": "false",
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS"
        },
        {
          "default": "2048",
          "label": "DHLEVEL",
          "name": "DHLEVEL"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "http",
          "label": "VALIDATION",
          "name": "VALIDATION"
        },
        {
          "default": "http",
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN"
        }
      ],
      "image": "linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/letsencrypt.png",
      "name": "letsencrypt",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://letsencrypt.org/\" target=\"_blank\">https://letsencrypt.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/letsencrypt\" target=\"_blank\">https://hub.docker.com/r/linuxserver/letsencrypt</a><br><br><br>",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An alternative private front-end to Reddit",
      "image": "spikecodes/libreddit:arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/libreddit.png",
      "name": "libreddit",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://libreddit.silkky.cloud/\" target=\"_blank\">https://libreddit.silkky.cloud/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/spikecodes/libreddit#2-docker\" target=\"_blank\">https://github.com/spikecodes/libreddit#2-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8088:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "libreddit",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/libreddit",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/speedtest.png",
      "name": "librespeed",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://librespeed.org/\" target=\"_blank\">https://librespeed.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-librespeed\" target=\"_blank\">https://docs.linuxserver.io/images/docker-librespeed</a><br><br><br>",
      "platform": "linux",
      "ports": ["83:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lidarr.png",
      "name": "lidarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lidarr.audio/\" target=\"_blank\">https://lidarr.audio/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lidarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lidarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "mariadb",
          "label": "DB_HOST",
          "name": "DB_HOST"
        },
        {
          "default": "lychee",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "dbpassword_that_was_set_in_lychee-mariadb",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "lychee",
          "label": "DB_DATABASE",
          "name": "DB_DATABASE"
        },
        {
          "default": "3306",
          "label": "DB_PORT",
          "name": "DB_PORT"
        }
      ],
      "image": "linuxserver/lychee:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lychee-icon.png",
      "name": "lychee",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lycheeorg.github.io/\" target=\"_blank\">https://lycheeorg.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lychee\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lychee</a><br><br><br>",
      "platform": "linux",
      "ports": ["84:84/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee With Mariadb is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "lychee",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "lychee",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/lychee-icon.png",
      "name": "lychee-mariadb",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://lycheeorg.github.io/\" target=\"_blank\">https://lycheeorg.github.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-lychee\" target=\"_blank\">https://docs.linuxserver.io/images/docker-lychee</a><br><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/lychee-mariadb.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Lychee With Mariadb",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "",
          "label": "MYSQL_DATABASE",
          "name": "MYSQL_DATABASE"
        },
        {
          "default": "",
          "label": "MYSQL_USER",
          "name": "MYSQL_USER"
        },
        {
          "default": "dbpassword",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "rootpassword",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "image": "linuxserver/mariadb:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mariadb-icon.png",
      "name": "mariadb",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mariadb.org/\" target=\"_blank\">https://mariadb.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mariadb\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mariadb</a><br><br><br>",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A self-hosted recipe manager and meal planner",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "2",
          "label": "WEB_CONCURRENCY",
          "name": "WEB_CONCURRENCY"
        },
        {
          "default": "8",
          "label": "MAX_WORKERS",
          "name": "MAX_WORKERS"
        },
        {
          "default": "true",
          "label": "RECIPE_PUBLIC",
          "name": "RECIPE_PUBLIC"
        },
        {
          "default": "true",
          "label": "RECIPE_SHOW_NUTRITION",
          "name": "RECIPE_SHOW_NUTRITION"
        },
        {
          "default": "true",
          "label": "RECIPE_SHOW_ASSETS",
          "name": "RECIPE_SHOW_ASSETS"
        },
        {
          "default": "true",
          "label": "RECIPE_LANDSCAPE_VIEW",
          "name": "RECIPE_LANDSCAPE_VIEW"
        },
        {
          "default": "false",
          "label": "RECIPE_DISABLE_COMMENTS",
          "name": "RECIPE_DISABLE_COMMENTS"
        },
        {
          "default": "false",
          "label": "RECIPE_DISABLE_AMOUNT",
          "name": "RECIPE_DISABLE_AMOUNT"
        }
      ],
      "image": "hkotel/mealie:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mealie.png",
      "name": "mealie",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://hay-kot.github.io/mealie/\" target=\"_blank\">https://hay-kot.github.io/mealie/</a><br><b>Official Docker Documentation: </b><a href=\"https://hay-kot.github.io/mealie/documentation/getting-started/install/\" target=\"_blank\">https://hay-kot.github.io/mealie/documentation/getting-started/install/</a><br><br><br>Default Credentials: Username: changeme@email.com Password: MyPassword. Documentation is Available <a href='https://hay-kot.github.io/mealie/documentation/getting-started/install/'>here</a>.",
      "platform": "linux",
      "ports": ["9925:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mealie",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/mealie",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/medusa-icon.png",
      "name": "medusa",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pymedusa.com/\" target=\"_blank\">https://pymedusa.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-medusa\" target=\"_blank\">https://docs.linuxserver.io/images/docker-medusa</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Games"],
      "description": "This docker image provides a Minecraft Server that will automatically download the latest stable version at startup. You can also run/upgrade to any specific version or the latest snapshot. See the Versions section below for more information.",
      "env": [
        {
          "default": "TRUE",
          "label": "EULA",
          "name": "EULA"
        }
      ],
      "image": "itzg/minecraft-server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/minecraft.png",
      "name": "minecraft",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.minecraft.net/en-us\" target=\"_blank\">https://www.minecraft.net/en-us</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/itzg/docker-minecraft-server#using-docker-compose\" target=\"_blank\">https://github.com/itzg/docker-minecraft-server#using-docker-compose</a><br><br><br>",
      "platform": "linux",
      "ports": ["25565:25565/tcp"],
      "restart_polocy": "unless-stopped",
      "title": "Minecraft Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Minecraft-data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.minetest.net/\" target=\"_blank\">https://www.minetest.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-minetest\" target=\"_blank\">https://docs.linuxserver.io/images/docker-minetest</a><br><br><br>",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/minisatip-icon.png",
      "name": "minisatip",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/catalinii/minisatip\" target=\"_blank\">https://github.com/catalinii/minisatip</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-minisatip\" target=\"_blank\">https://docs.linuxserver.io/images/docker-minisatip</a><br><br><br>",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mstream.png",
      "name": "mstream",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://mstream.io/\" target=\"_blank\">https://mstream.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mstream\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mstream</a><br><br><br>",
      "platform": "linux",
      "ports": ["3200:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "yhaenggi/murmur:1.3.4",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/Mumble-logo.png",
      "name": "murmur",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.mumble.info/\" target=\"_blank\">https://www.mumble.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/yhaenggi/murmur-docker\" target=\"_blank\">https://github.com/yhaenggi/murmur-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "default": "",
          "label": "BRAINZCODE",
          "name": "BRAINZCODE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://musicbrainz.org/\" target=\"_blank\">https://musicbrainz.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/linuxserver-archive/docker-musicbrainz\" target=\"_blank\">https://github.com/linuxserver-archive/docker-musicbrainz</a><br><br><br>",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/muximux-icon.png",
      "name": "muximux",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mescon/Muximux\" target=\"_blank\">https://github.com/mescon/Muximux</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-muximux\" target=\"_blank\">https://docs.linuxserver.io/images/docker-muximux</a><br><br><br>",
      "platform": "linux",
      "ports": ["7205:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar3:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/mylar-icon.png",
      "name": "mylar",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/mylar3/mylar3\" target=\"_blank\">https://github.com/mylar3/mylar3</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-mylar3\" target=\"_blank\">https://docs.linuxserver.io/images/docker-mylar3</a><br><br><br>",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "n8n is an extendable workflow automation tool.",
      "env": [
        {
          "default": "true",
          "label": "N8N_BASIC_AUTH_ACTIVE",
          "name": "N8N_BASIC_AUTH_ACTIVE"
        },
        {
          "default": "admin",
          "label": "N8N_BASIC_AUTH_USER",
          "name": "N8N_BASIC_AUTH_USER"
        },
        {
          "default": "admin",
          "label": "N8N_BASIC_AUTH_PASSWORD",
          "name": "N8N_BASIC_AUTH_PASSWORD"
        }
      ],
      "image": "n8nio/n8n:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/n8n.jpg",
      "name": "n8n",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://n8n.io/\" target=\"_blank\">https://n8n.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.n8n.io/getting-started/installation/#docker\" target=\"_blank\">https://docs.n8n.io/getting-started/installation/#docker</a><br><br><br>Documentation is Available <a href='https://docs.n8n.io/'>here</a>",
      "platform": "linux",
      "ports": ["5678:5678/tcp"],
      "restart_policy": "unless-stopped",
      "title": "n8n",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/n8n",
          "container": "/home/node/.n8n"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Troubleshoot slowdowns and anomalies in your infrastructure with thousands of per-second metrics, meaningful visualizations, and insightful health alarms with zero configuration.",
      "env": [
        {
          "default": "1000",
          "label": "DOCKER_USR",
          "name": "DOCKER_USR"
        },
        {
          "default": "1000",
          "label": "DOCKER_GRP",
          "name": "DOCKER_GRP"
        }
      ],
      "image": "netdata/netdata:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/netdata.png",
      "name": "netdata",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.netdata.cloud/\" target=\"_blank\">https://www.netdata.cloud/</a><br><b>Official Docker Documentation: </b><a href=\"https://learn.netdata.cloud/docs/agent/packaging/docker\" target=\"_blank\">https://learn.netdata.cloud/docs/agent/packaging/docker</a><br><br><br>Documentation is Available <a href='https://learn.netdata.cloud/'>here</a>.",
      "platform": "linux",
      "ports": ["19999:19999/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Netdata",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/netdata/netdataconfig",
          "container": "/etc/netdata"
        },
        {
          "bind": "/portainer/Files/AppData/Config/netdata/netdatalib",
          "container": "/var/lib/netdata"
        },
        {
          "bind": "/etc/passwd",
          "container": "/host/etc/passwd:ro"
        },
        {
          "bind": "/etc/group",
          "container": "/host/etc/group:ro"
        },
        {
          "bind": "/proc",
          "container": "/host/proc:ro"
        },
        {
          "bind": "/sys",
          "container": "/host/sys:ro"
        },
        {
          "bind": "/etc/os-release",
          "container": "/host/etc/os-release:ro"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nextcloud.com/\" target=\"_blank\">https://nextcloud.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nextcloud\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nextcloud</a><br><br><br>The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/nextcloud.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ownyourbits/nextcloudpi:latest",
      "name": "nextcloudpi",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ownyourbits.com/nextcloudpi/\" target=\"_blank\">https://ownyourbits.com/nextcloudpi/</a><br><b>Official Docker Documentation: </b><a href=\"https://ownyourbits.com/2017/06/08/nextcloudpi-docker-for-raspberry-pi/\" target=\"_blank\">https://ownyourbits.com/2017/06/08/nextcloudpi-docker-for-raspberry-pi/</a><br><br><b>Extra useful script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/reset_premissions_nextcloud.sh\" target=\"_blank\">reset_premissions_nextcloud.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=E6IrT3g5Gqc&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=9\" target=\"_blank\">Installing Nextcloud on Raspberry Pi Docker</a><br><br>The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "ports": ["4444:4443/tcp", "8443:443/tcp", "8480:8480/tcp"],
      "title": "NextcloudPi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ncdata",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nginx-icon.png",
      "name": "nginx",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nginx.org/en/\" target=\"_blank\">https://nginx.org/en/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nginx\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nginx</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:80/tcp", "8443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.  Please see the install document at https://github.com/pi-hosted/pi-hosted/tree/master/docs installing the template",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "password",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "password",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nginxproxymanager.com/\" target=\"_blank\">https://nginxproxymanager.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://nginxproxymanager.com/setup/#using-mysql-mariadb-database\" target=\"_blank\">https://nginxproxymanager.com/setup/#using-mysql-mariadb-database</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/nginx_proxy_manager.md\" target=\"_blank\">nginx_proxy_manager.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/nginx-proxy-manager.sh\" target=\"_blank\">nginx-proxy-manager.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=yl2Laxbqvo8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=10\" target=\"_blank\">Installing Nginx Proxy Manager on Docker</a><br><br>",
      "platform": "linux",
      "ports": ["80:80/tcp", "81:81/tcp", "443:443/tcp"],
      "repository": {
        "stackfile": "stack/nginx-proxy-manager.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 3
    },
    {
      "categories": ["Other", "Web", "Tools"],
      "description": "Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.  It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click.",
      "env": [
        {
          "default": "your_secret_goes_here",
          "label": "NODE_RED_CREDENTIAL_SECRET",
          "name": "NODE_RED_CREDENTIAL_SECRET"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/node-red.png",
      "name": "node-red",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nodered.org/\" target=\"_blank\">https://nodered.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://nodered.org/docs/getting-started/docker\" target=\"_blank\">https://nodered.org/docs/getting-started/docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["1880:1880/tcp"],
      "repository": {
        "stackfile": "stack/node-red.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Node Red",
      "type": 3
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/nzbget-icon.png",
      "name": "nzbget",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://nzbget.net/\" target=\"_blank\">https://nzbget.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nzbget\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nzbget</a><br><br><br>",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/hydra-icon.png",
      "name": "nzbhydra2",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/theotherp/nzbhydra2\" target=\"_blank\">https://github.com/theotherp/nzbhydra2</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-nzbhydra2\" target=\"_blank\">https://docs.linuxserver.io/images/docker-nzbhydra2</a><br><br><br>",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": "TP-Link Omada is a software-defined network solution. The EAP Controller is used to manage multiple EAPs. Raspberry Pi 1 and Zero are not supported.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "mbentley/omada-controller:latest-arm64",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/omada.png",
      "name": "omada-controller",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.tp-link.com/us/business-networking/omada-sdn-controller/\" target=\"_blank\">https://www.tp-link.com/us/business-networking/omada-sdn-controller/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/mbentley/omada-controller\" target=\"_blank\">https://hub.docker.com/r/mbentley/omada-controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "8088:8088/tcp",
        "8043:8043/tcp",
        "27001:27001/udp",
        "27002:27002/tcp",
        "29810:29810/udp",
        "29811:29811/tcp",
        "29812:29812/tcp",
        "29813:29813/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Omada EAP Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Omada",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ombi.png",
      "name": "ombi",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ombi.io/\" target=\"_blank\">https://ombi.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-ombi\" target=\"_blank\">https://docs.linuxserver.io/images/docker-ombi</a><br><br><br>",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "default": "eth0",
          "label": "INTERFACE",
          "name": "INTERFACE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://openvpn.net/access-server/\" target=\"_blank\">https://openvpn.net/access-server/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/openvpn-as/\" target=\"_blank\">https://hub.docker.com/r/linuxserver/openvpn-as/</a><br><br><br>",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/organizr-icon.png",
      "name": "organizr-v2",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://organizr.app/\" target=\"_blank\">https://organizr.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/organizr/organizr\" target=\"_blank\">https://hub.docker.com/r/organizr/organizr</a><br><br><br>",
      "platform": "linux",
      "ports": ["7171:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://trac.streamboard.tv/oscam/\" target=\"_blank\">https://trac.streamboard.tv/oscam/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-oscam\" target=\"_blank\">https://docs.linuxserver.io/images/docker-oscam</a><br><br><br>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Management", "Productivity"],
      "description": "Paperless is an application by Daniel Quinn and contributors that indexes your scanned documents and allows you to easily search for documents and store metadata alongside your documents. https://github.com/jonaswinkler/paperless-ng",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/paperless-ng",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/paperless.png",
      "name": "paperless",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/jonaswinkler/paperless-ng\" target=\"_blank\">https://github.com/jonaswinkler/paperless-ng</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-paperless-ng\" target=\"_blank\">https://docs.linuxserver.io/images/docker-paperless-ng</a><br><br><br>",
      "platform": "linux",
      "ports": ["8005:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Paperless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/paperless/config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/paperless/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "PhotoPrism® is an AI-powered app for browsing, organizing & sharing your photo collection. It makes use of the latest technologies to tag and find pictures automatically without getting in your way. You can run it at home, on a private server, or in the cloud.",
      "env": [
        {
          "default": "change me to a secure password",
          "label": "PHOTOPRISM_ADMIN_PASSWORD",
          "name": "PHOTOPRISM_ADMIN_PASSWORD"
        },
        {
          "default": "http://localhost:2342/",
          "label": "PHOTOPRISM_SITE_URL",
          "name": "PHOTOPRISM_SITE_URL"
        },
        {
          "label": "PHOTOPRISM_PUBLIC",
          "name": "PHOTOPRISM_PUBLIC",
          "select": [
            {
              "default": true,
              "text": "Enable Password Protection",
              "value": "false"
            },
            {
              "text": "No authentication required",
              "value": "true"
            }
          ]
        },
        {
          "label": "PHOTOPRISM_READONLY",
          "name": "PHOTOPRISM_READONLY",
          "select": [
            {
              "default": true,
              "text": "Photo folder in Read/Write mode",
              "value": "false"
            },
            {
              "text": "Don't modify originals directory (reduced functionality)",
              "value": "true"
            }
          ]
        },
        {
          "label": "PHOTOPRISM_DISABLE_FACES",
          "name": "PHOTOPRISM_DISABLE_FACES",
          "select": [
            {
              "default": true,
              "text": "Enable facial recognition",
              "value": "false"
            },
            {
              "text": "Disable facial recognition",
              "value": "true"
            }
          ]
        },
        {
          "default": "change me to a secure password",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "change me to a secure password",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "/portainer/PhotoPrism",
          "label": "HOST_MEDIA_PATH",
          "name": "HOST_MEDIA_PATH"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/photoprism.png",
      "name": "PhotoPrism",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://photoprism.app/\" target=\"_blank\">https://photoprism.app/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.photoprism.app/getting-started/docker-compose/\" target=\"_blank\">https://docs.photoprism.app/getting-started/docker-compose/</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/photoprism.md\" target=\"_blank\">photoprism.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_photoprism.sh\" target=\"_blank\">install_photoprism.sh</a><br><br>Your device should have at least <b>4 GB</b> of memory. Running PhotoPrism on a server with less than 4 GB of swap space or setting a memory/swap limit can cause unexpected restarts, especially when the indexer temporarily needs more memory to process large files.<br>It's important to boot your Rapsberry Pi 3/4 with the parameter <b>arm_64bit=1</b> in <b>config.txt</b> to use ARM64 image.<br>If you see Docker errors related to <b>\\\"cgroups\\\"</b>, it may help to add the following to <b>/boot/firmware/cmdline.txt</b>:<br><br><b>cgroup_enable=cpuset cgroup_enable=memory cgroup_memory=1</b><br><br>User pi needs to have access to <b>HOST_MEDIA_PATH</b>, you can force it with:<br><br><b>sudo chown -R pi:pi /path/to/media</b><br><br>Run <b>install_photoprism.sh</b> before deploying this container.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/photoprism.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "PhotoPrism",
      "type": 3
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/photoshow-icon.png",
      "name": "photoshow",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/thibaud-rohmer/PhotoShow\" target=\"_blank\">https://github.com/thibaud-rohmer/PhotoShow</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-photoshow\" target=\"_blank\">https://docs.linuxserver.io/images/docker-photoshow</a><br><br><br>",
      "platform": "linux",
      "ports": ["7380:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole.png",
      "name": "pihole",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pi-hole/docker-pi-hole/#running-pi-hole-docker\" target=\"_blank\">https://github.com/pi-hole/docker-pi-hole/#running-pi-hole-docker</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole with both DoH (DNS over HTTPS) and DoT (DNS over TLS) clients.",
      "image": "oijkn/pihole-doh-dot:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole_doh-dot.png",
      "name": "pihole DoH/DoT",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/oijkn/pihole-doh-dot\" target=\"_blank\">https://hub.docker.com/r/oijkn/pihole-doh-dot</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole DoH/DoT",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole_DoH-DoT",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole_DoH-DoT/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole. This version has Ubound software installed on it so you don't need to rely on external DNS providers.",
      "env": [
        {
          "default": "192.168.0.X",
          "description": "Insert the Raspberry Pi IP here",
          "label": "ServerIP",
          "name": "ServerIP"
        },
        {
          "default": "Europe\\London",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DNSSEC",
          "name": "DNSSEC",
          "select": [
            {
              "default": true,
              "text": "Enable DNSSEC",
              "value": "true"
            },
            {
              "text": "Disable DNSSEC",
              "value": "false"
            }
          ]
        },
        {
          "default": "127.0.0.1#5335",
          "label": "DNS1",
          "name": "DNS1",
          "preset": true
        },
        {
          "default": "127.0.0.1#5335",
          "label": "DNS2",
          "name": "DNS2",
          "preset": true
        }
      ],
      "image": "cbcrowe/pihole-unbound:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pihole-unbound.png",
      "name": "pihole-unbound",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pi-hole.net/\" target=\"_blank\">https://pi-hole.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container\" target=\"_blank\">https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/pi-hole.md\" target=\"_blank\">pi-hole.md</a><br><br><br>When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53. For extra information on this container visit the mainteiner <a href='https://github.com/chriscrowe/docker-pihole-unbound/tree/master/one-container'>GitHub Page</a>. You can add ports: 5335 to access Ubound externally; 22 to enable SSH; 67 to use DHCP Server. Add those ports in Show advanced options.",
      "platform": "linux",
      "ports": ["53:53/tcp", "53:53/udp", "1010:80/tcp", "4443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole-Unbound",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole-Unbound",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole-Unbound/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/piwigo-icon.png",
      "name": "piwigo",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://piwigo.org/\" target=\"_blank\">http://piwigo.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-piwigo\" target=\"_blank\">https://docs.linuxserver.io/images/docker-piwigo</a><br><br><br>",
      "platform": "linux",
      "ports": ["7528:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "latest",
          "label": "VERSION",
          "name": "VERSION"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.plex.tv/\" target=\"_blank\">https://www.plex.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-plex\" target=\"_blank\">https://docs.linuxserver.io/images/docker-plex</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pritunl.png",
      "name": "pritunl",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://pritunl.com/\" target=\"_blank\">https://pritunl.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/goofball222/pritunl\" target=\"_blank\">https://hub.docker.com/r/goofball222/pritunl</a><br><br><br>Documentation on this containier can be found here: <a href=https://hub.docker.com/r/goofball222/pritunl>https://hub.docker.com/r/goofball222/pritunl</a>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/pritunl.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Web"],
      "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "privatebin/nginx-fpm-alpine:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/privatebin.png",
      "name": "privatebin",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://privatebin.info/\" target=\"_blank\">https://privatebin.info/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/privatebin/nginx-fpm-alpine\" target=\"_blank\">https://hub.docker.com/r/privatebin/nginx-fpm-alpine</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "PrivateBin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/PrivateBin",
          "container": "/srv/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PrivateBin",
          "container": "/srv/cfg"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/projectsend-logo.png",
      "name": "projectsend",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.projectsend.org/\" target=\"_blank\">https://www.projectsend.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-projectsend\" target=\"_blank\">https://docs.linuxserver.io/images/docker-projectsend</a><br><br><br>",
      "platform": "linux",
      "ports": ["7580:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:build",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://protonmail.com/bridge/\" target=\"_blank\">https://protonmail.com/bridge/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/shenxn/protonmail-bridge\" target=\"_blank\">https://hub.docker.com/r/shenxn/protonmail-bridge</a><br><br><br>Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143:143/tcp", "25:25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/pydio-icon.png",
      "name": "pydio",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.pydio.com/\" target=\"_blank\">https://www.pydio.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/linuxserver/pydio\" target=\"_blank\">https://hub.docker.com/r/linuxserver/pydio</a><br><br><br>",
      "platform": "linux",
      "ports": ["7526:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.qbittorrent.org/\" target=\"_blank\">https://www.qbittorrent.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-qbittorrent\" target=\"_blank\">https://docs.linuxserver.io/images/docker-qbittorrent</a><br><br><br>",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/quassel-core-icon.png",
      "name": "quassel-core",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://quassel-irc.org/\" target=\"_blank\">https://quassel-irc.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-quassel-core\" target=\"_blank\">https://docs.linuxserver.io/images/docker-quassel-core</a><br><br><br>",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/radarr.png",
      "name": "radarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://radarr.video/\" target=\"_blank\">https://radarr.video/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-radarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-radarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Monitor", "Tools"],
      "description": "Monitor your Raspberry Pi and Dockers using Grafana developed by oijkn. Please download grafana configs from his git https://github.com/oijkn/Docker-Raspberry-PI-Monitoring",
      "env": [
        {
          "default": "15d",
          "label": "PROMETHEUS_RETENTION",
          "name": "PROMETHEUS_RETENTION"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/rpi_monitor.png",
      "name": "RaspberryPi-Docker-Monitor",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/rpi_docker_monitor.md\" target=\"_blank\">rpi_docker_monitor.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/rpi_docker_monitor.sh\" target=\"_blank\">rpi_docker_monitor.sh</a><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=IoD3vFuep64&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=8\" target=\"_blank\">Raspberry Pi Docker Monitoring</a><br><br>",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "repository": {
        "stackfile": "stack/raspberrypi-monitoring.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Raspberry Pi Docker Monitor",
      "type": 3
    },
    {
      "categories": ["Other"],
      "description": "Rdesktop is an Ubuntu based container containing full desktop environments in officially supported flavors accessible via RDP.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/rdesktop:arm64v8-latest",
      "logo": "https://raw.githubusercontent.com/novaspirit/pi-hosted/master/images/rdesktop.png",
      "name": "rdesktop",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://xrdp.org/\" target=\"_blank\">http://xrdp.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-rdesktop\" target=\"_blank\">https://docs.linuxserver.io/images/docker-rdesktop</a><br><br><br>",
      "platform": "linux",
      "ports": ["3389:3389/tcp"],
      "restart_policy": "unless-stopped",
      "title": "RDesktop",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/RDesktop/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "martadinata666/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/reactiveresume.png",
      "name": "reactive-resume",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://rxresu.me/\" target=\"_blank\">https://rxresu.me/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/r/martadinata666/reactive-resume\" target=\"_blank\">https://hub.docker.com/r/martadinata666/reactive-resume</a><br><br><br>",
      "platform": "linux",
      "ports": ["7768:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/keepoutoftheway/var/www/html"
        }
      ]
    },
    {
      "categories": ["project-management", "Other", "Tools"],
      "description": "Open-source project management tool",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "redmine",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "redmine",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "",
          "label": "REDMINE_SECRET_KEY_BASE",
          "name": "REDMINE_SECRET_KEY_BASE"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/redmine.png",
      "name": "redmine",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.redmine.org/\" target=\"_blank\">https://www.redmine.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://hub.docker.com/_/redmine\" target=\"_blank\">https://hub.docker.com/_/redmine</a><br><br><br>Default user and password are admin/admin",
      "platform": "linux",
      "ports": ["4180:3000/tcp"],
      "repository": {
        "stackfile": "stack/redmine.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "Redmine",
      "type": 3
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/resilio.png",
      "name": "resilio-sync",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.resilio.com/individuals/\" target=\"_blank\">https://www.resilio.com/individuals/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-resilio-sync\" target=\"_blank\">https://docs.linuxserver.io/images/docker-resilio-sync</a><br><br><br>",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "55555:55555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "50",
          "label": "MAX_FILE_UPLOADS",
          "name": "MAX_FILE_UPLOADS"
        },
        {
          "default": "info",
          "label": "RT_LOG_LEVEL",
          "name": "RT_LOG_LEVEL"
        },
        {
          "default": "6881",
          "label": "RT_DHT_PORT",
          "name": "RT_DHT_PORT"
        },
        {
          "default": "8000",
          "label": "XMLRPC_PORT",
          "name": "XMLRPC_PORT"
        },
        {
          "default": "8080",
          "label": "RUTORRENT_PORT",
          "name": "RUTORRENT_PORT"
        },
        {
          "default": "9000",
          "label": "WEBDAV_PORT",
          "name": "WEBDAV_PORT"
        },
        {
          "default": "50000",
          "label": "RT_INC_PORT",
          "name": "RT_INC_PORT"
        },
        {
          "default": "erasedata,httprpc",
          "label": "RU_REMOVE_CORE_PLUGINS",
          "name": "RU_REMOVE_CORE_PLUGINS"
        }
      ],
      "image": "linuxserver/crazymax/rtorrent-rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Novik/ruTorrent\" target=\"_blank\">https://github.com/Novik/ruTorrent</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/crazy-max/docker-rtorrent-rutorrent\" target=\"_blank\">https://github.com/crazy-max/docker-rtorrent-rutorrent</a><br><br><br>For ruTorrent basic auth, XMLRPC through nginx and WebDAV on completed downloads, you can populate .htpasswd files with the following command:\\ndocker run --rm -it httpd:2.4-alpine htpasswd -Bbn <username> <password> >> $(pwd)/passwd/webdav.htpasswd",
      "platform": "linux",
      "ports": [
        "${RT_DHT_PORT}:${RT_DHT_PORT}/udp",
        "${XMLRPC_PORT}:${XMLRPC_PORT}/tcp",
        "${RUTORRENT_PORT}:${RUTORRENT_PORT}/tcp",
        "${WEBDAV_PORT}:${WEBDAV_PORT}/tcp",
        "${RT_INC_PORT}:${RT_INC_PORT}/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent/config",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent/passwd",
          "container": "/passwd"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sabnzbd.org/\" target=\"_blank\">https://sabnzbd.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sabnzbd\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sabnzbd</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "command": "",
      "description": "Samba has provided secure, stable and fast file and print services for all clients using the SMB/CIFS protocol, such as all versions of DOS and Windows, OS/2, Linux and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "1000",
          "label": "USERID",
          "name": "USERID"
        },
        {
          "default": "1000",
          "label": "GROUPID",
          "name": "GROUPID"
        },
        {
          "default": "guest;guest",
          "label": "USER",
          "name": "USER"
        },
        {
          "default": "true",
          "label": "PERMISSIONS",
          "name": "PERMISSIONS"
        },
        {
          "default": "portainer;/share;yes;no;yes;guest",
          "label": "SHARE",
          "name": "SHARE"
        }
      ],
      "image": "dperson/samba:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/samba.png",
      "name": "Samba",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://www.samba.org/\" target=\"_blank\">https://www.samba.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/dperson/samba\" target=\"_blank\">https://github.com/dperson/samba</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=2zZ3_1GRWrM&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=11\" target=\"_blank\">Setting up Raspberry Pi Samba Server For File Sharing on Docker</a><br><br>",
      "platform": "linux",
      "ports": ["139:139/tcp", "445:445/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Samba",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/share"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Open-Source Privacy-respecting metasearch engine",
      "env": [
        {
          "default": "http://localhost:9017",
          "label": "BASE_URL",
          "name": "BASE_URL"
        },
        {
          "default": "my-instance",
          "label": "INSTANCE_NAME",
          "name": "INSTANCE_NAME"
        }
      ],
      "image": "searxng/searxng:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/searx.png",
      "name": "SearXNG",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://docs.searxng.org/\" target=\"_blank\">https://docs.searxng.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.searxng.org/admin/installation-docker.html\" target=\"_blank\">https://docs.searxng.org/admin/installation-docker.html</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/searxng.md\" target=\"_blank\">searxng.md</a><br><br><br>",
      "platform": "linux",
      "ports": ["9017:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SearXNG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/searxng",
          "container": "/etc/searxng"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "nicholaswilde/shiori:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/shiori-icon.png",
      "name": "shiori",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/go-shiori/shiori\" target=\"_blank\">https://github.com/go-shiori/shiori</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/nicholaswilde/docker-shiori\" target=\"_blank\">https://github.com/nicholaswilde/docker-shiori</a><br><br><br>",
      "platform": "linux",
      "ports": ["7564:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sickchill-icon.png",
      "name": "sickchill",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://docs.linuxserver.io/images/docker-sickchill\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sickchill</a><br><b>Official Docker Documentation: </b><a href=\"https://sickchill.github.io/\" target=\"_blank\">https://sickchill.github.io/</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sickgear-icon.png",
      "name": "sickgear",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/SickGear/SickGear/wiki\" target=\"_blank\">https://github.com/SickGear/SickGear/wiki</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sickgear\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sickgear</a><br><br><br>",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/smokeping-icon.png",
      "name": "smokeping",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://oss.oetiker.ch/smokeping/\" target=\"_blank\">https://oss.oetiker.ch/smokeping/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-smokeping\" target=\"_blank\">https://docs.linuxserver.io/images/docker-smokeping</a><br><br><br>",
      "platform": "linux",
      "ports": ["4794:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Snippet Box is a simple self-hosted app for organizing your code snippets.",
      "image": "pawelmalak/snippet-box:arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/snibox.png",
      "name": "Snippet-box",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pawelmalak/snippet-box\" target=\"_blank\">https://github.com/pawelmalak/snippet-box</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pawelmalak/snippet-box#with-docker\" target=\"_blank\">https://github.com/pawelmalak/snippet-box#with-docker</a><br><br><br>Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["5010:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snippet-box",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snippet-box",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sonarr-icon.png",
      "name": "sonarr",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sonarr.tv/\" target=\"_blank\">https://sonarr.tv/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-sonarr\" target=\"_blank\">https://docs.linuxserver.io/images/docker-sonarr</a><br><br><br>",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Run a Speedtest every hour and graph the results.  See https://hub.docker.com/r/henrywhitaker3/speedtest-tracker/tags for arch options",
      "env": [
        {
          "default": "latest-arm",
          "label": "arch",
          "name": "arch"
        },
        {
          "default": "true",
          "label": "OOKLA_EULA_GDPR",
          "name": "OOKLA_EULA_GDPR"
        }
      ],
      "image": "henrywhitaker3/speedtest-tracker:dev-arm",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/speedtest-tracker.png",
      "name": "speedtest-tracker",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/henrywhitaker3/Speedtest-Tracker\" target=\"_blank\">https://github.com/henrywhitaker3/Speedtest-Tracker</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/henrywhitaker3/Speedtest-Tracker#using-docker\" target=\"_blank\">https://github.com/henrywhitaker3/Speedtest-Tracker#using-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8765:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Speedtest Tracker",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/speedtest-tracker",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "Sshwifty is a SSH and Telnet connector made for the Web. It can be deployed on your computer or server to provide SSH and Telnet access interface for any compatible (standard) web browser.",
      "image": "niruix/sshwifty:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/sshwifty-icon.png",
      "name": "Sshwifty",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://sshwifty.herokuapp.com/\" target=\"_blank\">https://sshwifty.herokuapp.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/nirui/sshwifty#docker-image\" target=\"_blank\">https://github.com/nirui/sshwifty#docker-image</a><br><br><br>",
      "platform": "linux",
      "ports": ["8182:8182/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sshwifty",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/syncthing-icon.png",
      "name": "syncthing",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://syncthing.net/\" target=\"_blank\">https://syncthing.net/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-syncthing\" target=\"_blank\">https://docs.linuxserver.io/images/docker-syncthing</a><br><br><br>",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/tautulli-icon.png",
      "name": "tautulli",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tautulli.com/\" target=\"_blank\">https://tautulli.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-tautulli\" target=\"_blank\">https://docs.linuxserver.io/images/docker-tautulli</a><br><br><br>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://thelounge.chat/\" target=\"_blank\">https://thelounge.chat/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-thelounge\" target=\"_blank\">https://docs.linuxserver.io/images/docker-thelounge</a><br><br><br>",
      "platform": "linux",
      "ports": ["9500:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/tiddlywiki.png",
      "name": "tiddlywiki",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tiddlywiki.com/\" target=\"_blank\">https://tiddlywiki.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/djmaze/tiddlywiki-docker\" target=\"_blank\">https://github.com/djmaze/tiddlywiki-docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Proxy", "Security", "Tools"],
      "description": "Cloud-Native Networking Stack That Just Works.",
      "image": "traefik:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/traefik.png",
      "name": "traefik",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://doc.traefik.io/traefik/\" target=\"_blank\">https://doc.traefik.io/traefik/</a><br><b>Official Docker Documentation: </b><a href=\"https://doc.traefik.io/traefik/getting-started/install-traefik/\" target=\"_blank\">https://doc.traefik.io/traefik/getting-started/install-traefik/</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/traefik.sh\" target=\"_blank\">traefik.sh</a><br><br>A simple and lightweight reverse proxy",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Traefik",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/traefik/traefik.yml",
          "container": "/traefik.yml"
        },
        {
          "bind": "/portainer/Files/AppData/Config/traefik/config.yml",
          "container": "/config.yml"
        },
        {
          "bind": "/portainer/Files/AppData/Config/traefik/acme.json",
          "container": "/acme.json"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-transmission\" target=\"_blank\">https://docs.linuxserver.io/images/docker-transmission</a><br><br><br>",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "description": "Optional. Mostly used to narrow down what location to use by the provider",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        },
        {
          "default": "true",
          "label": "watch-dir-enabled",
          "name": "TRANSMISSION_WATCH_DIR_ENABLED"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission-openvpn-v4",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://haugene.github.io/docker-transmission-openvpn/run-container/\" target=\"_blank\">https://haugene.github.io/docker-transmission-openvpn/run-container/</a><br><br><br>List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Transmission OpenVPN Version 4",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "description": "Optional. Mostly used to narrow down what location to use by the provider",
          "label": "OPENVPN_CONFIG",
          "name": "OPENVPN_CONFIG"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        },
        {
          "default": "true",
          "label": "watch-dir-enabled",
          "name": "TRANSMISSION_WATCH_DIR_ENABLED"
        }
      ],
      "image": "haugene/transmission-openvpn:3.7.1",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://transmissionbt.com/\" target=\"_blank\">https://transmissionbt.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://haugene.github.io/docker-transmission-openvpn/run-container/\" target=\"_blank\">https://haugene.github.io/docker-transmission-openvpn/run-container/</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=tGLVEq913_4&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=5\" target=\"_blank\">Torrent with Docker and OPENVPN with Transmission and PIA</a><br><br>List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://tvheadend.org/\" target=\"_blank\">https://tvheadend.org/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-tvheadend\" target=\"_blank\">https://docs.linuxserver.io/images/docker-tvheadend</a><br><br><br>",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "default": "512",
          "label": "MAXMEM",
          "name": "MAXMEM"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ubooquity-icon.png",
      "name": "ubooquity",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://vaemendis.net/ubooquity/\" target=\"_blank\">https://vaemendis.net/ubooquity/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-ubooquity\" target=\"_blank\">https://docs.linuxserver.io/images/docker-ubooquity</a><br><br><br>",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unifi-icon.png",
      "name": "unifi-controller",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://ui.com/consoles\" target=\"_blank\">https://ui.com/consoles</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-unifi-controller\" target=\"_blank\">https://docs.linuxserver.io/images/docker-unifi-controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "default": "UniFi Video",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unifivideo-icon.png",
      "name": "UniFi Video",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/pducharme/UniFi-Video-Controller\" target=\"_blank\">https://github.com/pducharme/UniFi-Video-Controller</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/pducharme/UniFi-Video-Controller\" target=\"_blank\">https://github.com/pducharme/UniFi-Video-Controller</a><br><br><br>",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Monitor", "Tools"],
      "description": "Monitor your Unifi Controller using Grafana developed by oijkn for the Raspberry Pi Monitor.",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/unpoller-logo.png",
      "name": "UnPoller Unifi Controller Monitor",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://unpoller.com/\" target=\"_blank\">https://unpoller.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/novaspirit/pi-hosted/blob/master/docs/UnPoller-Monitor.md\" target=\"_blank\">https://github.com/novaspirit/pi-hosted/blob/master/docs/UnPoller-Monitor.md</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/UnPoller-Monitor.md\" target=\"_blank\">UnPoller-Monitor.md</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/unpoller-install.sh\" target=\"_blank\">unpoller-install.sh</a><br><br>",
      "platform": "linux",
      "ports": ["8086:8086/tcp"],
      "repository": {
        "stackfile": "stack/unpoller-stack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "restart_policy": "unless-stopped",
      "title": "UnPoller Monitor",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "It is a self-hosted monitoring tool like 'Uptime Robot'.",
      "image": "louislam/uptime-kuma:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/uptime-kuma.png",
      "name": "uptime-kuma",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/louislam/uptime-kuma\" target=\"_blank\">https://github.com/louislam/uptime-kuma</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/louislam/uptime-kuma/wiki/%F0%9F%94%A7-How-to-Install#-docker\" target=\"_blank\">https://github.com/louislam/uptime-kuma/wiki/%F0%9F%94%A7-How-to-Install#-docker</a><br><br><br>A fancy self-hosted monitoring tool.",
      "platform": "linux",
      "ports": ["3001:3001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Uptime Kuma",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/uptime-kuma",
          "container": "/app/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/bitwarden.png",
      "name": "vaultwarden",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/dani-garcia/vaultwarden\" target=\"_blank\">https://github.com/dani-garcia/vaultwarden</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/dani-garcia/vaultwarden/wiki\" target=\"_blank\">https://github.com/dani-garcia/vaultwarden/wiki</a><br><br><br>Alternative Implementation of the Bitwarden Server API in Rust, including web vault.",
      "platform": "linux",
      "ports": ["8010:80/tcp", "3012:3012/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bitwarden",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "todo"],
      "description": "Vikunja With Frontend.  The to-do app to organize your life.  Must run tools/install_vikunja.sh before installing the template.  More informantion at https://vikunja.io/",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "America/New_York",
          "label": "TZ",
          "name": "TZ"
        },
        {
          "default": "vikunja",
          "label": "DATABASE_NAME",
          "name": "DATABASE_NAME"
        },
        {
          "default": "vikunja",
          "label": "DATABASE_USER",
          "name": "DATABASE_USER"
        },
        {
          "default": "",
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "default": "",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/vikunja.png",
      "name": "vikunja",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://vikunja.io/\" target=\"_blank\">https://vikunja.io/</a><br><b>Official Docker Documentation: </b><a href=\"https://vikunja.io/docs/full-docker-example/#example-with-nginx-as-proxy\" target=\"_blank\">https://vikunja.io/docs/full-docker-example/#example-with-nginx-as-proxy</a><br><br><b>Pre-installation script: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/tools/install_vikunja.sh\" target=\"_blank\">install_vikunja.sh</a><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/vikunja.yml",
        "url": "https://github.com/pi-hosted/pi-hosted/"
      },
      "restart_policy": "unless-stopped",
      "title": "Vikunja With Frontend",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/watchtower.png",
      "name": "watchtower",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://containrrr.dev/watchtower/\" target=\"_blank\">https://containrrr.dev/watchtower/</a><br><b>Official Docker Documentation: </b><a href=\"https://containrrr.dev/watchtower/usage-overview/\" target=\"_blank\">https://containrrr.dev/watchtower/usage-overview/</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=q3wKqk8qVS8&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=7\" target=\"_blank\">Upgrading Portainer and Updating Containers</a><br><br>It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/webgrabplus.png",
      "name": "webgrabplus",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"http://www.webgrabplus.com/\" target=\"_blank\">http://www.webgrabplus.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-webgrabplus\" target=\"_blank\">https://docs.linuxserver.io/images/docker-webgrabplus</a><br><br><br>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:0.6.0",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/whoogle.png",
      "name": "whoogle",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/benbusby/whoogle-search\" target=\"_blank\">https://github.com/benbusby/whoogle-search</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/benbusby/whoogle-search#g-manual-docker\" target=\"_blank\">https://github.com/benbusby/whoogle-search#g-manual-docker</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=j3ZGxo3ibUs&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=12\" target=\"_blank\">How to Install Whoogle to replace using Google and repo notes</a><br><br>",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wikijs.png",
      "name": "wikijs",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://js.wiki/\" target=\"_blank\">https://js.wiki/</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-wikijs\" target=\"_blank\">https://docs.linuxserver.io/images/docker-wikijs</a><br><br><br>",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Docker image for Windows 2000 Advanced Server with SP4.",
      "image": "hectormolinero/qemu-win2000:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/win2000.png",
      "name": "win2000",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/hectorm/docker-qemu-win2000\" target=\"_blank\">https://github.com/hectorm/docker-qemu-win2000</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/hectorm/docker-qemu-win2000#start-an-instance\" target=\"_blank\">https://github.com/hectorm/docker-qemu-win2000#start-an-instance</a><br><br><br><b>Youtube Video: </b><a href=\"https://www.youtube.com/watch?v=57Gnp0424Qc&list=PL846hFPMqg3jwkxcScD1xw2bKXrJVvarc&index=13\" target=\"_blank\">Checking out Windows 2000 Docker</a><br><br>Why? Your scientists were so preoccupied with whether or not they could, that they didn't stop to think if they should. -- Dr. Ian Malcolm",
      "platform": "linux",
      "ports": ["3389:3389/tcp", "5900:5900/tcp", "6080:6080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Windows 2000",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Win2000/zdrive",
          "container": "/mnt"
        }
      ]
    },
    {
      "categories": ["Other", "VPN"],
      "description": "Fast VPN Server with easy to use User Interface",
      "env": [
        {
          "default": "example.domain.com",
          "description": "Set here your DDNS domain",
          "label": "WG_HOST",
          "name": "WG_HOST"
        },
        {
          "default": "ENTER AN ADMIN PASSWORD",
          "description": "Leave blank to access WebUI without loggin",
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "default": "51820",
          "label": "WG_PORT",
          "name": "WG_PORT"
        },
        {
          "default": "1.1.1.1",
          "label": "WG_DEFAULT_DNS",
          "name": "WG_DEFAULT_DNS"
        },
        {
          "default": "0.0.0.0/0, ::/0",
          "label": "WG_ALLOWED_IPS",
          "name": "WG_ALLOWED_IPS"
        }
      ],
      "image": "weejewel/wg-easy:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wireguard.png",
      "name": "wg-easy",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/WeeJeWel/wg-easy/\" target=\"_blank\">https://github.com/WeeJeWel/wg-easy/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/WeeJeWel/wg-easy/#1-install-docker\" target=\"_blank\">https://github.com/WeeJeWel/wg-easy/#1-install-docker</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/wireguard-install.md\" target=\"_blank\">wireguard-install.md</a><br><br><br>",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/wireguard-easy.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Wireguard Server",
      "type": 3
    },
    {
      "categories": ["WordPress", "Web"],
      "description": "Wordpress setup with a MySQL database",
      "env": [
        {
          "default": "5080",
          "label": "External Port for webserver forward to port 80",
          "name": "WEB_SERVER_PORT"
        },
        {
          "default": "wordpress",
          "label": "Database user name",
          "name": "MYSQL_DATABASE_USER_NAME"
        },
        {
          "label": "Database password for user",
          "name": "MYSQL_DATABASE_PASSWORD"
        },
        {
          "label": "Database root password",
          "name": "MYSQL_DATABASE_ROOT_PASSWORD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/wordpress.png",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://wordpress.com/\" target=\"_blank\">https://wordpress.com/</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/docker-library/docs/tree/master/wordpress#-via-docker-stack-deploy-or-docker-compose\" target=\"_blank\">https://github.com/docker-library/docs/tree/master/wordpress#-via-docker-stack-deploy-or-docker-compose</a><br><b>Pi-Hosted dedicated documentation: </b><a href=\"https://github.com/pi-hosted/pi-hosted/blob/master/docs/wordpress_installation.md\" target=\"_blank\">wordpress_installation.md</a><br><br><br>Deploys a Wordpress instance connected to a MySQL database.",
      "platform": "linux",
      "repository": {
        "stackfile": "stack/wordpress-stack.yml",
        "url": "https://github.com/pi-hosted/pi-hosted"
      },
      "title": "Wordpress",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://yacht.sh/\" target=\"_blank\">https://yacht.sh/</a><br><b>Official Docker Documentation: </b><a href=\"https://yacht.sh/docs/Installation/Install#via-docker-compose\" target=\"_blank\">https://yacht.sh/docs/Installation/Install#via-docker-compose</a><br><br><br>",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/ytdlm.png",
      "name": "youtubedl-material",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://github.com/Tzahi12345/YoutubeDL-Material\" target=\"_blank\">https://github.com/Tzahi12345/YoutubeDL-Material</a><br><b>Official Docker Documentation: </b><a href=\"https://github.com/Tzahi12345/YoutubeDL-Material#docker\" target=\"_blank\">https://github.com/Tzahi12345/YoutubeDL-Material#docker</a><br><br><br>",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/pi-hosted/pi-hosted/master/images/znc-icon.png",
      "name": "znc",
      "note": "<h3>Template created by Pi-Hosted Series</h3><b>Check our Github page: <a href=\"https://github.com/pi-hosted/pi-hosted\" target=\"_blank\">https://github.com/pi-hosted/pi-hosted</a></b><br><br><b>Official Webpage: </b><a href=\"https://wiki.znc.in/ZNC\" target=\"_blank\">https://wiki.znc.in/ZNC</a><br><b>Official Docker Documentation: </b><a href=\"https://docs.linuxserver.io/images/docker-znc\" target=\"_blank\">https://docs.linuxserver.io/images/docker-znc</a><br><br><br>",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "lscr.io/linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bazarr.png",
      "name": "bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "lscr.io/linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "lscr.io/linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/embystat.png",
      "name": "embystat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "lscr.io/linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "lscr.io/linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "lscr.io/linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "image": "lscr.io/linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jlesage/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "ports": ["80:8080/tcp", "81:8181/tcp", "443:4443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizrtools/organizr-v2:php-fpm",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/snibox.png",
      "name": "snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Save recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cardigann.png",
      "name": "cardigann",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "lscr.io/linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/davos.png",
      "name": "davos",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK",
          "name": "UMASK",
          "set": "000"
        }
      ],
      "image": "lscr.io/linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deluge-icon.png",
      "namme": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/emby.png",
      "name": "emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "lscr.io/linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "lscr.io/linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/pritunl/Images/pritunl.png",
      "name": "pritunl",
      "note": "Documentation on this containier can be found here: <a href=https://hub.docker.com/r/goofball222/pritunl>https://hub.docker.com/r/goofball222/pritunl</a>",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/pritunl.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bitwarden.png",
      "name": "vaultwarden",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Vaultwarden",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "lscr.io/linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/wikijs.png",
      "name": "wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "UniFi Video"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/UniFiVideo-logo.png",
      "name": "UniFi Video",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1001",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1001",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:latest",
      "name": "deluge-openvpn",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Security"],
      "description": "Dradis Framework: Collaboration and reporting for IT Security teams http://dradisframework.org",
      "image": "raesene/dradis:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dradis-logo.png",
      "name": "dradis",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dradis",
      "type": 1
    },
    {
      "categories": ["Other", "Tools", "Management"],
      "description": "Peppermint is a free and open source tickeg management solution with a range of features",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "5001",
          "label": "PORT",
          "name": "PORT"
        },
        {
          "default": "peppermint",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "1234",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "postgres",
          "label": "DB_HOST",
          "name": "DB_HOST"
        }
      ],
      "image": "pepperlabs/peppermint:latest",
      "logo": "https://raw.githubusercontent.com/Peppermint-Lab/peppermint/master/public/logo.svg",
      "name": "Peppermint",
      "platform": "linux",
      "ports": ["5001:5001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Peppermint",
      "type": 1,
      "volumes": [
        {
          "bind": "/srv/dev-disk-by-label-media/Files/AppData/Config/peppermint",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "lscr.io/linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bazarr.png",
      "name": "bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "lscr.io/linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "lscr.io/linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/embystat.png",
      "name": "embystat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd &lt;username&gt;",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "lscr.io/linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "lscr.io/linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "lscr.io/linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "image": "lscr.io/linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jlesage/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "ports": ["80:8080/tcp", "81:8181/tcp", "443:4443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizrtools/organizr-v2:php-fpm",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/snibox.png",
      "name": "snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Save recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cardigann.png",
      "name": "cardigann",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "lscr.io/linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/davos.png",
      "name": "davos",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK",
          "name": "UMASK",
          "set": "000"
        }
      ],
      "image": "lscr.io/linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deluge-icon.png",
      "namme": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/emby.png",
      "name": "emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "lscr.io/linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "lscr.io/linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "lscr.io/linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/pritunl/Images/pritunl.png",
      "name": "pritunl",
      "note": "Documentation on this containier can be found here: <a href=https://hub.docker.com/r/goofball222/pritunl>https://hub.docker.com/r/goofball222/pritunl</a>",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/pritunl.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT&gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT&gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bitwarden.png",
      "name": "vaultwarden",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Vaultwarden",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "lscr.io/linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/wikijs.png",
      "name": "wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "UniFi Video"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/UniFiVideo-logo.png",
      "name": "UniFi Video",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lscr.io/linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Deluge with a configuration where Deluge is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1001",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1001",
          "label": "PGID",
          "name": "PUID"
        },
        {
          "default": "MULLVAD",
          "description": "see https://github.com/sgtsquiggs/docker-deluge-openvpn",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        }
      ],
      "image": "sgtsquiggs/deluge-openvpn:latest",
      "name": "deluge-openvpn",
      "platform": "linux",
      "ports": ["8112:8112/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Deluge openvpn",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Files/AppData/Config/DelugeOpenVPN/config",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Security"],
      "description": "Dradis Framework: Collaboration and reporting for IT Security teams http://dradisframework.org",
      "image": "raesene/dradis:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dradis-logo.png",
      "name": "dradis",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dradis",
      "type": 1
    },
    {
      "categories": ["Other", "Tools", "Management"],
      "description": "Peppermint is a free and open source tickeg management solution with a range of features",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "5001",
          "label": "PORT",
          "name": "PORT"
        },
        {
          "default": "peppermint",
          "label": "DB_USERNAME",
          "name": "DB_USERNAME"
        },
        {
          "default": "1234",
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "default": "postgres",
          "label": "DB_HOST",
          "name": "DB_HOST"
        }
      ],
      "image": "pepperlabs/peppermint:latest",
      "logo": "https://raw.githubusercontent.com/Peppermint-Lab/peppermint/master/public/logo.svg",
      "name": "Peppermint",
      "platform": "linux",
      "ports": ["5001:5001/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Peppermint",
      "type": 1,
      "volumes": [
        {
          "bind": "/srv/dev-disk-by-label-media/Files/AppData/Config/peppermint",
          "container": "/data"
        }
      ]
    },
    {
      "category": ["Video", "Music", "Other"],
      "description": "Htpcmanager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/htpcmanager-icon.png",
      "platform": "linux",
      "ports": ["8085/tcp"],
      "title": "htpcmanager",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/jacket-icon.png",
      "platform": "linux",
      "ports": ["9117/tcp"],
      "title": "jackett",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "booksonic"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/booksonic.png",
      "platform": "linux",
      "ports": ["4040/tcp"],
      "title": "booksonic",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/podcast"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Management"],
      "description": "Smokeping keeps track of your network latency.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/smokeping-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "smokeping",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/data"
        }
      ]
    },
    {
      "category": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence. First, go to duckdns site, register your subdomain and retrieve your token. Then run the docker create command above with your subdomain(s) and token. It will update your IP with the DuckDNS service every 5 minutes.",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/duckdns.png",
      "platform": "linux",
      "title": "duckdns",
      "type": 1
    },
    {
      "category": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.Optional postprocessors to add IMDb data, or to customize your xmltv listing.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/webgrabplus.png",
      "platform": "linux",
      "title": "webgrabplus",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/data"
        }
      ]
    },
    {
      "category": ["HomeAutomation:", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "devices": [
        {
          "path to device": ""
        }
      ],
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/logo.png",
      "platform": "linux",
      "ports": ["1443/tcp", "6144/tcp", "8080/tcp"],
      "title": "domoticz",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, ï¿½TP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/transmission-icon.png",
      "platform": "linux",
      "ports": ["9091/tcp", "51413/tcp", "51413/udp"],
      "title": "transmission",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "category": ["Music"],
      "description": "Libresonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room. /music = Location of music. /media = Location of other media. /podcasts = Location of podcasts. /playlists = Location for playlists storage. CONTEXT_PATH is for setting url-base in reverse proxy setups - (optional) Default user/pass is admin/admin",
      "env": [
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": ""
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/libresonic:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/libresonic.png",
      "platform": "linux",
      "ports": ["4040/tcp"],
      "title": "libresonic",
      "type": 1,
      "volumes": [
        {
          "container": "/music"
        },
        {
          "container": "/playlists"
        },
        {
          "container": "/podcasts"
        },
        {
          "container": "/media"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders", "Video"],
      "description": "Sickchill is an Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/sickchill.png",
      "platform": "linux",
      "ports": ["8081/tcp"],
      "title": "sickchill",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/tv"
        }
      ]
    },
    {
      "category": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "label": "WEBADDRESS",
          "name": "WEBADDRESS",
          "set": ""
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/musicbrainz-icon.png",
      "platform": "linux",
      "ports": ["5000/tcp"],
      "title": "musicbrainz",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/data"
        }
      ]
    },
    {
      "category": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/quassel-core-icon.png",
      "platform": "linux",
      "ports": ["4242/tcp"],
      "title": "quassel-core",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/photoshow-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "photoshow",
      "type": 1,
      "volumes": [
        {
          "container": "/Pictures"
        },
        {
          "container": "/Thumbs"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "platform": "linux",
      "title": "daapd",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/music"
        }
      ]
    },
    {
      "category": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/gazee-logo.png",
      "platform": "linux",
      "ports": ["4242/tcp"],
      "title": "gazee",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/mylar"
        }
      ]
    },
    {
      "category": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/codiad-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "codiad",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/oscam.png",
      "platform": "linux",
      "ports": ["8888/tcp", "10000/tcp"],
      "title": "oscam",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Video"],
      "description": "Headless installation of Kodiï¿½ (formerly known as XBMCï¿½), to enable library updates.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/kodi-icon.png",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "title": "kodi-headless",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.kodi"
        }
      ]
    },
    {
      "category": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/pydio-icon.png",
      "platform": "linux",
      "ports": ["443/tcp"],
      "title": "pydio",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/data"
        }
      ]
    },
    {
      "category": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/sabnzbd-icon.png",
      "platform": "linux",
      "ports": ["8080/tcp", "9090/tcp"],
      "title": "sabnzbd",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "category": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/medusa-icon.png",
      "platform": "linux",
      "ports": ["8081/tcp"],
      "title": "medusa",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/tv"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/heimdall-icon.png",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "title": "heimdall",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Backup:", "Cloud", "Other", "Tools"],
      "description": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/syncthing-icon.png",
      "platform": "linux",
      "ports": ["8384/tcp", "21027/udp", "22000/tcp"],
      "title": "syncthing",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "category": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/muximux-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "muximux",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/beets-icon.png",
      "platform": "linux",
      "ports": ["8337/tcp"],
      "title": "beets",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/music"
        }
      ]
    },
    {
      "category": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/mariadb-icon.png",
      "platform": "linux",
      "ports": ["3306/tcp"],
      "title": "mariadb",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/znc-icon.png",
      "platform": "linux",
      "ports": ["6501/tcp"],
      "title": "znc",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/cops-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "cops",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "platform": "linux",
      "ports": ["9000/tcp"],
      "title": "thelounge",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/nzbget-icon.png",
      "platform": "linux",
      "ports": ["6789/tcp"],
      "title": "nzbget",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/ombi.png",
      "platform": "linux",
      "ports": ["3579/tcp"],
      "title": "ombi",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/lychee-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "lychee",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/pictures"
        }
      ]
    },
    {
      "category": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/deluge-icon.png",
      "platform": "linux",
      "title": "deluge",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/nginx-icon.png",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "title": "nginx",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/lidarr.png",
      "platform": "linux",
      "ports": ["8686/tcp"],
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/music"
        }
      ]
    },
    {
      "category": ["Management", "Tools"],
      "description": "The Unifi-controller Controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/unifi-icon.png",
      "platform": "linux",
      "ports": [
        "3478/udp",
        "10001/udp",
        "8080/tcp",
        "8081/tcp",
        "8443/tcp",
        "8843/tcp",
        "8880/tcp",
        "6789/tcp"
      ],
      "title": "unifi-controller",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/calibre-web-icon.png",
      "platform": "linux",
      "ports": ["8083/tcp"],
      "title": "calibre-web",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Video", "Music", "Photos"],
      "description": "Plex organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone Plex Media Server. has always been a top priority. Straightforward design and bulk actions mean getting things done faster.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/plex-icon.png",
      "platform": "linux",
      "title": "plex",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Music"],
      "description": "Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, ï¿½Torrent and Blackhole.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/headphones-icon.png",
      "platform": "linux",
      "ports": ["8181/tcp"],
      "title": "headphones",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/music"
        }
      ]
    },
    {
      "category": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to ï¿½Torrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/qbittorrent-icon.png",
      "platform": "linux",
      "ports": ["6881/tcp", "6881/udp", "8080/tcp"],
      "title": "qbittorrent",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/couchpotato-icon.png",
      "platform": "linux",
      "ports": ["5050/tcp"],
      "title": "couchpotato",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/movies"
        }
      ]
    },
    {
      "category": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/davos.png",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "title": "davos",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/download"
        }
      ]
    },
    {
      "category": ["Other"],
      "description": "A free, self-hostable rss aggregatorï¿½",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/freshrss-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "freshrss",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/openvpn-as-icon.png",
      "platform": "linux",
      "ports": ["943/tcp", "9443/tcp", "1194/udp"],
      "title": "openvpn-as",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/mylar-icon.png",
      "platform": "linux",
      "ports": ["8090/tcp"],
      "title": "mylar",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/comics"
        }
      ]
    },
    {
      "category": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/hydra2:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/hydra-icon.png",
      "platform": "linux",
      "ports": ["5076/tcp"],
      "title": "hydra2",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/projectsend-logo.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "projectsend",
      "type": 1,
      "volumes": [
        {
          "container": "/data"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "platform": "linux",
      "ports": ["30000/udp"],
      "title": "minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "category": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT\u0026gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT\u0026gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/tvheadend.png",
      "platform": "linux",
      "ports": ["9981/tcp", "9982/tcp"],
      "title": "tvheadend",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "category": ["Backup:", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/duplicati-icon.png",
      "platform": "linux",
      "ports": ["8200/tcp"],
      "title": "duplicati",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "category": ["Backup:", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/resilio.png",
      "platform": "linux",
      "ports": ["8888/tcp", "55555/tcp"],
      "title": "resilio-sync",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies ï¿½ la Couchpotato.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/radarr.png",
      "platform": "linux",
      "ports": ["7878/tcp"],
      "title": "radarr",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/movies"
        }
      ]
    },
    {
      "category": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/piwigo-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "piwigo",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/ubooquity-icon.png",
      "platform": "linux",
      "ports": ["2202/tcp", "2203/tcp"],
      "title": "ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/lazylibrarian-icon.png",
      "platform": "linux",
      "ports": ["5299/tcp"],
      "title": "lazylibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "category": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/airsonic-logo.png",
      "platform": "linux",
      "ports": ["4040/tcp"],
      "title": "airsonic",
      "type": 1,
      "volumes": [
        {
          "container": "/music"
        },
        {
          "container": "/playlists"
        },
        {
          "container": "/podcasts"
        },
        {
          "container": "/media"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd \u0026lt;username\u0026gt;",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/letsencrypt.png",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "title": "letsencrypt",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/sonarr-icon.png",
      "platform": "linux",
      "ports": ["8989/tcp"],
      "title": "sonarr",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/dev/rtc"
        },
        {
          "container": "/tv"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/tautulli-icon.png",
      "platform": "linux",
      "ports": ["8181/tcp"],
      "title": "tautulli",
      "type": 1,
      "volumes": [
        {
          "container": "/logs"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "platform": "linux",
      "ports": ["80/tcp", "51413/tcp", "6881/udp"],
      "title": "rutorrent",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        }
      ]
    },
    {
      "category": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Nextcloud is an open source, self-hosted file sync and communication app platform. Access and sync your files, contacts, calendars and communicate and collaborate across your devices. You decide what happens with your data, where it is and who can access it!",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/nextcloud:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/nextcloud-icon.png",
      "platform": "linux",
      "ports": ["443/tcp"],
      "title": "nextcloud",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/data"
        }
      ]
    },
    {
      "category": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/minisatip-icon.png",
      "platform": "linux",
      "ports": ["8875/tcp", "554/tcp", "1900/udp"],
      "title": "minisatip",
      "type": 1
    },
    {
      "category": ["Other", "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.",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "organizrtools/organizr:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/organizr-icon.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "Organizr",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        }
      ]
    },
    {
      "category": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "label": "PUID",
          "name": "PUID",
          "set": "1000"
        },
        {
          "label": "PGID",
          "name": "PGID",
          "set": "1000"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        },
        {
          "label": "TZ",
          "name": "TZ",
          "set": "America/Chicago"
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/thesugarat/portainer_templates-1/master/Images/Chevereto.png",
      "platform": "linux",
      "ports": ["80/tcp"],
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "AdGuard Home is a network-wide software for blocking ads & tracking. After you set it up, it’ll cover ALL your home devices, and you don’t need any client-side software for that. With the rise of Internet-Of-Things and connected devices, it becomes more and more important to be able to control your whole network.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "adguard home"
        }
      ],
      "image": "adguard/adguardhome:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/adguard.png",
      "name": "adguard",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "68:68/tcp",
        "68:68/udp",
        "80:80/tcp",
        "443:443/tcp",
        "853:853/tcp",
        "3000:3000/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Adguard",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Adguard/Workdir",
          "container": "/opt/adguardhome/work"
        },
        {
          "bind": "/portainer/Files/AppData/Adguard/Conf",
          "container": "/opt/adguardhome/conf"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is available <a href='https://docs.authelia.com/deployment/deployment-ha'>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "hotio/bazarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bazarr.png",
      "name": "Bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.",
      "image": "vaultwarden/server:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bitwarden.png",
      "name": "vaultwarden",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": [":80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Vaultwarden",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Vaultwarden",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "note": "Configuration <ul><li><b>/config</b> - Where Calibre-web should store it's database</li><li><b>/books</b> - Path to your calibre library metadata.db file</li></ul>",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "ave recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/davos.png",
      "name": "davos",
      "note": "Configuration <ul><li><b>/config</b> - AppData Location</li><li><b>/downloads</b> - File Download Location</li></ul>",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to <a href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'>this page</a> for userToken details.",
      "platform": "linux",
      "ports": ["6595:6595/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/deluge-icon.png",
      "name": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "note": "<b>Configuration</b></br>First, go to duckdns site, register your subdomain and retrieve your token<br/>Then run the docker create command above with your subdomain(s) and token<br/>It will update your IP with the DuckDNS service every 5 minutes",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/emby.png",
      "name": "Emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/embystat.png",
      "name": "EmbyStat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utility.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manager, a front end for many htpc related applications. Uses the Hellowlol HTPC Manager fork.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation <a href='https://github.com/invoiceninja/dockerfiles'>here</a>. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jellyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/swag:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt / SWAG",
      "note": "Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.<ul><li>- Port 443 on the internet side of the router should be forwarded to this container's port 443.</li><li>- If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains can be www,ftp,cloud</li><li>- The container detects changes to url and subdomains, revokes existing certs and generates new ones during start.</li><li>- It also detects changes to the DHLEVEL parameter and replaces the dhparams file.</li><li>- If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file <code>docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd \u0026lt;username\u0026gt;</code>",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt / SWAG",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/lidarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards. The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone.",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": "MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "image": "jc21/nginx-proxy-manager",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/proxy_mgr.png",
      "name": "nginx-proxy-manager",
      "platform": "linux",
      "env": [
        {
          "label": "DB_SQLITE_FILE",
          "name": "DB_SQLITE_FILE",
          "default": "/data/database.sqlite"
        }
      ],
      "ports": ["80:80/tcp", "81:81/tcp", "443:443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Proxy Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/data",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Nginx-Proxy/letsencrypt",
          "container": "/etc/letsencrypt"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module (CAM). The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "label": "INTERFACE",
          "name": "INTERFACE",
          "set": "eth0"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizr/organizr:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Overseerr is a free and open source software application for managing requests for your media library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/overseerr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/overseerr-icon.png",
      "name": "Overseerr",
      "platform": "linux",
      "ports": ["5055:5055/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Overseerr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Overseerr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "ownCloud is a self-hosted file sync and share server. It provides access to your data through a web interface, sync clients or WebDAV while providing a platform to view, sync and share across devices easily—all under your control. ownCloud’s open architecture is extensible via a simple but powerful API for applications and plugins and it works with any storage.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "OWNCLOUD_DOMAIN",
          "name": "OWNCLOUD_DOMAIN"
        },
        {
          "label": "DB_PASSWORD",
          "name": "DB_PASSWORD"
        },
        {
          "label": "ADMIN_USERNAME",
          "name": "ADMIN_USERNAME"
        },
        {
          "label": "ADMIN_PASSWORD",
          "name": "ADMIN_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/docker-library/docs/9d36b4ed7cabc35dbd3849272ba2bd7abe482172/owncloud/logo.png",
      "name": "Owncloud",
      "note": "The database user is owncloud and the database is owncloud.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/owncloud.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Owncloud",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Petio is a third party companion app available to Plex server owners to allow their users to request, review and discover content.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/petio-icon.png",
      "name": "Petio",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/petio.yml",
        "url": "https://github.com/Qballjos/portainer_templates"
      },
      "title": "Petio",
      "type": 3
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article <a href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'>here</a> if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VERSION",
          "name": "VERSION",
          "set": "latest"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation <a href='https://hub.docker.com/r/shenxn/protonmail-bridge'/>here</a> to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Sonarr, Radarr, Lidarr, and Readarr offering complete management of your indexers with no per app Indexer setup required (we do it all).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "ghcr.io/linuxserver/prowlarr:develop",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/prowlarr.png",
      "name": "prowlarr",
      "platform": "linux",
      "ports": ["9696:9696/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Prowlarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Prowlarr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core - much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/radarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": "SmokePing is a latency logging and graphing and alerting system. It consists of a daemon process which organizes the latency measurements and a CGI which presents the graphs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/snibox.png",
      "name": "Snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "hotio/sonarr:release",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "note": "<b>Port 8181</b> The webui for Tautulli's webui<br/></br>Configuration <ul><li><b>/config</b> - Storing Configuration and the Tautulli database</li><li><b>/logs</b> - Map to you plex logs (required for IP logging)</li></ul>",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration where Transmission is running only when OpenVPN has an active tunnel. It bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available <a href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/>here</a>.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT\u0026gt;IP and HDHomeRun as input sources. Tvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT\u0026gt;IP streaming. Multiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": "The Unifi-controller Controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "note": "Configuration <ul><li><b>/config</b> - This is where WebGrab+Plus will store it's configuration</li><li><b>/data</b> - This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.</li></ul>",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/wikijs.png",
      "name": "Wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "100",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/Qballjos/portainer_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "Airsonic is a free, web-based media streamer, providing ubiqutious access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "airsonic"
        },
        {
          "label": "JAVA_OPTS",
          "name": "JAVA_OPTS",
          "set": "-Xms256m -Xmx512m"
        }
      ],
      "image": "linuxserver/airsonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/airsonic-logo.png",
      "name": "airsonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Airsonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Music",
          "container": "/music"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Playlists",
          "container": "/playlists"
        },
        {
          "bind": "/portainer/Podcasts",
          "container": "/podcasts"
        },
        {
          "bind": "/portainer/Files/AppData/Airsonic/Media",
          "container": "/media"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Airsonic/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Authentication"],
      "description": "An open-source authentication and authorization server providing 2-factor authentication and single sign-on (SSO) for your applications via a web portal.",
      "env": [
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "authelia/authelia:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/authelia.png",
      "name": "authelia",
      "note": "Requires a configuration.yml file in order to work. Documentation is Available \u003ca href='https://docs.authelia.com/deployment/deployment-ha'\u003ehere\u003c/a\u003e.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Authelia",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Authelia",
          "container": "/etc/authelia/"
        }
      ]
    },
    {
      "categories": ["Video", "Music"],
      "description": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/bazarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bazarr.png",
      "name": "bazarr",
      "platform": "linux",
      "ports": ["6767:6767/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bazarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bazarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "The purpose of beets is to get your music collection right once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a bouquet of tools for manipulating and accessing your music.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/beets:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/beets-icon.png",
      "name": "beets",
      "platform": "linux",
      "ports": ["8337:8337/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Beets",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Beets",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "This is a Bitwarden server API implementation written in Rust compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal..",
      "image": "bitwardenrs/server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bitwarden.png",
      "name": "bitwardenrs",
      "note": "This project is not associated with the Bitwarden project nor 8bit Solutions LLC.",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Bitwarden RS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Bitwarden-rs",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books", "Other"],
      "description": "Booksonic is a server and an app for streaming your audiobooks to any pc or android phone. Most of the functionality is also availiable on other platforms that have apps for subsonic",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "booksonic",
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH"
        }
      ],
      "image": "linuxserver/booksonic:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/booksonic.png",
      "name": "booksonic",
      "platform": "linux",
      "ports": ["4040:4040/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Booksonic",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/Podcasts",
          "container": "/podcast"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Booksonic",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Embystat is a personal web server that can calculate all kinds of statistics from your (local) Emby server. Just install this on your server and let him calculate all kinds of fun stuff.",
      "image": "linuxserver/embystat:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/embystat.png",
      "name": "embystat",
      "note": "Access the ui at your-ip:6555. Follow the setup wizard on initial install. Then configure the required services.",
      "platform": "linux",
      "ports": ["6555:6555/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EmbyStat",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EmbyStat",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/headphones:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/headphones-icon.png",
      "name": "headphones",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Headphones",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Headphones",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/Downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Tools", "Web", "Other"],
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/heimdall:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/heimdall-icon.png",
      "name": "heimdall",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Heimdall",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Heimdall",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A dead simple static HOMepage for your servER to keep your s ervices on hand, from a simple yaml configuration file.",
      "image": "b4bz/homer:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/homer.png",
      "name": "homer",
      "note": "This container requires a yml file within the config volume. See the documentation here https://github.com/bastienwirtz/homer",
      "platform": "linux",
      "ports": ["8902:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Homer",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Homer/assets",
          "container": "/www/assets"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Homer",
          "container": "/www/config.yml"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Create agents that monitor and act on your behalf.",
      "image": "huginn/huginn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/huginn.png",
      "name": "huginn",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Huginn",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/huginn",
          "container": "/var/lib/mysql"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Invoices, Expenses and Tasks built with Laravel and Flutter.",
      "env": [
        {
          "default": "invoice.my.domain",
          "label": "URL",
          "name": "URL"
        },
        {
          "label": "APP_KEY",
          "name": "APP_KEY"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/invoice_ninja.png",
      "name": "invoice_ninja",
      "note": "The database user is invoice_ninja and the database is ninja_db. Please generate an app key following the documentation \u003ca href='https://github.com/invoiceninja/dockerfiles'\u003ehere\u003c/a\u003e. ",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/invoice-ninja.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Invoice Ninja",
      "type": 3
    },
    {
      "categories": ["Downloaders", "Tools"],
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.[",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/jackett:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jacket-icon.png",
      "name": "jackett",
      "platform": "linux",
      "ports": ["9117:9117/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jackett",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jackett",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/jellyfin:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/jellyfin.png",
      "name": "jellyfin",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jellyfin",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Jelllyfin",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Video"],
      "description": "Headless installation of Kodi™ (formerly known as XBMC™), to enable library updates.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/kodi-headless:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/kodi-icon.png",
      "name": "kodi-headless",
      "platform": "linux",
      "ports": ["8080/tcp", "9777/udp"],
      "restart_policy": "unless-stopped",
      "title": "Kodi Headless",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Kodi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Books"],
      "description": "LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lazylibrarian:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lazylibrarian-icon.png",
      "name": "lazylibrarian",
      "platform": "linux",
      "ports": ["5299:5299/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LazyLibrarian",
      "type": 1,
      "volumes": [
        {
          "container": "/config"
        },
        {
          "container": "/downloads"
        },
        {
          "container": "/books"
        }
      ]
    },
    {
      "categories": ["Tools", "Web"],
      "description": "This container sets up an Nginx webserver and reverse proxy with php support and a built-in letsencrypt client that automates free SSL server certificate generation and renewal processes. It also contains fail2ban for intrusion prevention.\r\n  \r\n  Before running this container, make sure that the url and subdomains are properly forwarded to this container's host.\r\n  \r\n  - Port 443 on the internet side of the router should be forwarded to this container's port 443.\r\n  - If you need a dynamic dns provider, you can use the free provider duckdns.org where the url will be yoursubdomain.duckdns.org and the subdomains    can be www,ftp,cloud\r\n  - The container detects changes to url and subdomains, revokes existing certs and generates new ones during start. \r\n  - It also detects changes to the DHLEVEL parameter and replaces the dhparams file.\r\n  \r\n  - If you'd like to password protect your sites, you can use htpasswd. Run the following command on your host to generate the htpasswd file docker exec -it letsencrypt htpasswd -c /config/nginx/.htpasswd \u0026lt;username\u0026gt;",
      "env": [
        {
          "label": "EMAIL",
          "name": "EMAIL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "URL",
          "name": "URL",
          "set": "-Xms256m -Xmx512m"
        },
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": "www,"
        },
        {
          "label": "ONLY_SUBDOMAINS",
          "name": "ONLY_SUBDOMAINS",
          "set": "false"
        },
        {
          "label": "DHLEVEL",
          "name": "DHLEVEL",
          "set": "2048"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "VALIDATION",
          "name": "VALIDATION",
          "set": "http"
        },
        {
          "label": "DNSPLUGIN",
          "name": "DNSPLUGIN",
          "set": "http"
        }
      ],
      "image": "linuxserver/letsencrypt:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/letsencrypt.png",
      "name": "letsencrypt",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Let's Encrypt",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LetsEncrypt",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Free and Open Source Speedtest for HTML5 and more.",
      "image": "linuxserver/librespeed:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/speedtest.png",
      "name": "librespeed",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "LibreSpeed",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/LibreSpeed",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Web", "Management", "Photos"],
      "description": "Lychee is a free photo-management tool, which runs on your server or web-space. Installing is a matter of seconds. Upload, manage and share photos like from a native application. Lychee comes with everything you need and all your photos are stored securely.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lychee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lychee-icon.png",
      "name": "lychee",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Lychee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lychee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Pictures",
          "container": "/pictures"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        }
      ],
      "image": "linuxserver/mariadb:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mariadb-icon.png",
      "name": "mariadb",
      "platform": "linux",
      "ports": ["3306:3306/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MariaDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mariadb",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "An Enhanced drop in replacement for Mysql",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "localhost",
          "description": "Address/host name of the MySQL server",
          "label": "PMA_HOST",
          "name": "PMA_HOST"
        },
        {
          "default": "3306",
          "description": "Port of the MySQL server",
          "label": "PMA_PORT",
          "name": "PMA_PORT"
        },
        {
          "default": "root",
          "description": "Username to use for config authentication method",
          "label": "PMA_USER",
          "name": "PMA_USER"
        },
        {
          "default": "",
          "description": "Password to use for config authentication method",
          "label": "PMA_PASSWORD",
          "name": "PMA_PASSWORD"
        },
        {
          "default": "",
          "description": "User-facing URI (when using a reverse proxy etc.)",
          "label": "PMA_ABSOLUTE_URI",
          "name": "PMA_ABSOLUTE_URI"
        },
        {
          "description": "Comma separated list of address/host names of the MySQL servers (for multiple servers)",
          "label": "PMA_HOSTS",
          "name": "PMA_HOSTS",
          "set": ""
        },
        {
          "description": "Comma separated list of ports of the MySQL servers (for multiple servers)",
          "label": "PMA_PORTS",
          "name": "PMA_PORTS",
          "set": ""
        }
      ],
      "image": "phpmyadmin/phpmyadmin:latest",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/phpmyadmin-icon.png",
      "name": "phpmyadmin",
      "platform": "linux",
      "ports": ["8080:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "phpmyadmin",
      "type": 1
    },
    {
      "categories": ["Other"],
      "description": "McMyAdmin 2 is the leading web control panel and administration console for Minecraft servers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mcmyadmin2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mcmyadmin-icon.png",
      "name": "mcmyadmin2",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "25565:25565/tcp"],
      "restart_policy": "unless-stopped",
      "title": "McMyAdmin 2",
      "type": 1,
      "volumes": [
        {
          "container": "/minecraft"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Medusa, automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/medusa:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/medusa-icon.png",
      "name": "medusa",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Medusa",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Medusa",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Server version of minetest, a free, open source alternative to minecraft.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minetest:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/minetest-icon.png",
      "name": "minetest",
      "platform": "linux",
      "ports": ["30000:30000/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minetest",
      "type": 1,
      "volumes": [
        {
          "container": "/config/.minetest"
        }
      ]
    },
    {
      "categories": ["Video", "Other", "Tools"],
      "description": "Minisatip is a multi-threaded satip server version 1.2 that runs under Linux and it was tested with DVB-S, DVB-S2, DVB-T, DVB-T2, DVB-C, DVB-C2, ATSC and ISDB-T cards.\n\n  The application is designed to stream the requested data to multiple clients (even with one dvb card) at the same time while opening different pids.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/minisatip:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/minisatip-icon.png",
      "name": "minisatip",
      "platform": "linux",
      "ports": ["8875:8875/tcp", "554:554/tcp", "1900:1900/udp"],
      "restart_policy": "unless-stopped",
      "title": "Minisatip",
      "type": 1
    },
    {
      "categories": ["Other", "Music"],
      "description": "Mstream is a personal music streaming server. You can use mStream to stream your music from your home computer to any device, anywhere. There are mobile apps available for both Android and iPhone..",
      "image": "linuxserver/mstream:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mstream.png",
      "name": "mstream",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mstream",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mstream",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Voice", "Chat"],
      "description": "Mumble is a voicechat program for gamers written on top of Qt and Opus. Murmur is the server backend for Mumble.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "goofball222/murmur:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Mumble-logo.png",
      "name": "murmur",
      "platform": "linux",
      "ports": ["64738:64738/tcp", "64738:64738/udp"],
      "restart_policy": "unless-stopped",
      "title": "Murmur",
      "type": 1,
      "volumes": [
        {
          "bind": "/etc/localtime:ro",
          "container": "/etc/localtime"
        },
        {
          "bind": "/portainer/Files/Config/Murmur",
          "container": "/opt/murmur/config"
        },
        {
          "bind": "/portainer/Files/Murmur/data",
          "container": "/opt/murmur/data"
        },
        {
          "bind": "/portainer/Files/Murmur/log",
          "container": "/opt/murmur/log"
        }
      ]
    },
    {
      "categories": ["Music", "Other", "Tools"],
      "description": " MusicBrainz is an open music encyclopedia that collects music metadata and makes it available to the public.",
      "env": [
        {
          "label": "BRAINZCODE",
          "name": "BRAINZCODE",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/musicbrainz:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/musicbrainz-icon.png",
      "name": "musicbrainz",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MusicBrainz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MusicBrainz",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/MusicBrainz",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy", "Other", "Tools"],
      "description": "A lightweight portal to view, manage your HTPC apps without having to run anything more than a PHP enabled webserver. With Muximux you don't need to keep multiple tabs open, or bookmark the URL to all of your apps.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/muximux:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/muximux-icon.png",
      "name": "muximux",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Muximux",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Muximux",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Books"],
      "description": "An automated Comic Book downloader (cbr/cbz) for use with SABnzbd, NZBGet and torrents.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/mylar:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/mylar-icon.png",
      "name": "mylar",
      "platform": "linux",
      "ports": ["8090:8090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mylar",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mylar",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other", "Web"],
      "description": "Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nextcloud-icon.png",
      "name": "nextcloud",
      "note": "The database user is nextcloud and the database is nextcloud_db. The host of the database will be located at the bottom of the DB conotainer in portainer.",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/nextcloud.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Nextcloud",
      "type": 3
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nginx:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nginx-icon.png",
      "name": "nginx",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nginx",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Proxy"],
      "description": "Nginx is a web server with a strong focus on high concurrency, performance and low memory usage. It can also act as a reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer and an HTTP cache.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "nginx:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nginx-icon.png",
      "name": "nginx-offical",
      "platform": "linux",
      "ports": ["80/tcp", "443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Nginx Official",
      "type": 1
    },
    {
      "categories": ["Proxy", "Tools"],
      "description": "Nginx Proxy Manager enables you to easily forward to your websites running at home or otherwise, including free SSL, without having to know too much about Nginx or Letsencrypt.",
      "env": [
        {
          "default": "8181",
          "label": "Nginx Proxy Manager WebUI Port",
          "name": "NPM_WEBUI_PORT"
        },
        {
          "default": "80",
          "label": "Nginx Proxy Manager HTTP Port",
          "name": "NPM_HTTP_PORT"
        },
        {
          "default": "443",
          "label": "Nginx Proxy Manager HTTPS Port",
          "name": "NPM_HTTPS_PORT"
        },
        {
          "default": "3306",
          "label": "MYSQL_PORT",
          "name": "MYSQL_PORT"
        },
        {
          "default": "npm",
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "npm",
          "label": "MYSQL_DATABASE",
          "name": "MYSQL_DATABASE"
        },
        {
          "default": "npm",
          "label": "MYSQL_USER",
          "name": "MYSQL_USER"
        },
        {
          "default": "npm",
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/nginx-proxy-manager.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Nginx Proxy Manager",
      "name": "nginx-proxy-manager",
      "type": 3
    },
    {
      "categories": ["Downloaders"],
      "description": "NZBGet is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources. It supports all platforms including Windows, Mac, Linux and works on all devices including PC, NAS, WLAN routers and media players",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbget:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/nzbget-icon.png",
      "name": "nzbget",
      "platform": "linux",
      "ports": ["6789:6789/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBGet",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbget",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Tools"],
      "description": "NZBHydra is a meta search for NZB indexers and the \"spiritual successor\" to NZBmegasearcH. It provides easy access to a number of raw and newznab based indexers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/nzbhydra2:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/hydra-icon.png",
      "name": "nzbhydra2",
      "platform": "linux",
      "ports": ["5076:5076/tcp"],
      "restart_policy": "unless-stopped",
      "title": "NZBHydra 2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Nzbhydra2",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Ombi allows you to host your own Plex Request and user management system. ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ombi:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ombi.png",
      "name": "ombi",
      "platform": "linux",
      "ports": ["3579:3579/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ombi",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Ombi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "VPN"],
      "description": "OpenVPN Access Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "default": "eth0",
          "label": "INTERFACE",
          "name": "INTERFACE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone (i.e. 'America/Los Angeles')",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/openvpn-as:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/openvpn-as-icon.png",
      "name": "openvpn-as",
      "platform": "linux",
      "ports": ["943:943/tcp", "9443:9443/tcp", "1194:1194/udp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "OpenVPN Access Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OpenVPN-AS",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "VPN"],
      "description": "Wireguard Server is a full featured secure network tunneling VPN software solution that integrates OpenVPN server capabilities, enterprise management capabilities, simplified OpenVPN Connect UI, and OpenVPN Client software packages that accommodate Windows, MAC, Linux, Android, and iOS environments.",
      "env": [
        {
          "default": "wireguard.domain.com",
          "label": "Server URL",
          "name": "SERVERURL"
        },
        {
          "default": "51820",
          "label": "Server Port",
          "name": "SERVERPORT"
        },
        {
          "default": "1",
          "label": "Peers",
          "name": "PEERS"
        },
        {
          "default": "auto",
          "label": "Peer DNS",
          "name": "PEERDNS"
        },
        {
          "default": "10.64.1.0",
          "label": "Internal Subnet",
          "name": "INTERNAL_SUBNET"
        },
        {
          "default": "0.0.0.0/0",
          "label": "Allowed IPs",
          "name": "ALLOWEDIPS"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "Europe/London",
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/wireguard.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "WireGuard",
      "name": "wireguard",
      "type": 3
    },
    {
      "categories": ["Other", "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.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "organizrtools/organizr-v2:php-fpm",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/organizr-icon.png",
      "name": "organizr-v2",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Organizr v2",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Organizr",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "OScam is a softcam, software to be used to decrypt digital television channels on a settopbox (receiver), as an alternative for a conditional access module\n  (CAM). OScam is, compared with other softcams (CCcam, mgcamd, etc.), open source. Hence, the name Open Source Conditional Access Module (OScam). OScam is based on the\n  not so well known softcam MpCS. The main features of OSCam are next to its softcam capabilities, that it is able to function as a cardserver.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/oscam:latest",
      "logo": "http://i.imgur.com/8LadrLg.png",
      "name": "oscam",
      "platform": "linux",
      "ports": ["8888:8888/tcp", "10000:10000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "OScam",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/OScam",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "A simple, easy way to turn a photo album into a webgallery",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/photoshow:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/photoshow-icon.png",
      "name": "photoshow",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PhotoShow",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Pictures",
          "container": "/Pictures"
        },
        {
          "bind": "/portainer/Files/AppData/Photoshow/Thumbs",
          "container": "/Thumbs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PhotoShow",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted snippet manager.",
      "image": "snowmean/snibox-sqlite:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/snibox.png",
      "name": "snibox",
      "note": "Label-oriented interface with search. Supports various programming languages, markdown, plain text.",
      "platform": "linux",
      "ports": ["3010:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Snibox",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Snibox",
          "container": "/app/db/database"
        }
      ]
    },
    {
      "categories": ["Wiki"],
      "description": "Bookstack is a free and open source Wiki designed for creating beautiful documentation. Feautring a simple, but powerful WYSIWYG editor it allows for teams to create detailed and useful documentation with ease.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "DATABASE_PASSWORD",
          "name": "DATABASE_PASSWORD"
        },
        {
          "label": "MYSQL_ROOT_PASSWORD",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "label": "PORT",
          "name": "PORT"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/bookstack2.png",
      "note": "Default login is admin@admin.com with a password of password. The database created is called bookstackapp and the database user is called bookstack",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/bookstack.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Bookstack",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Photo"],
      "description": "Chevereto is a powerful and fast image hosting script that allows you to create your very own full featured image hosting website in just minutes. Please note that this offers only the free Chevereto version..",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "CHEVERETO_DB_HOST",
          "name": "CHEVERETO_DB_HOST",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_USERNAME",
          "name": "CHEVERETO_DB_USERNAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PASSWORD",
          "name": "CHEVERETO_DB_PASSWORD",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_NAME",
          "name": "CHEVERETO_DB_NAME",
          "set": ""
        },
        {
          "label": "CHEVERETO_DB_PREFIX",
          "name": "CHEVERETO_DB_PREFIX",
          "set": ""
        }
      ],
      "image": "nmtan/chevereto:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/Chevereto.png",
      "name": "Chevereto",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chevereto",
      "type": 1,
      "volumes": [
        {
          "container": "/var/www/html/images"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Save recipes in seconds with plain text formatting and create beatiful recipe pages with automated ease.",
      "image": "gregyankovoy/chowdown:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/chowdown.png",
      "name": "Chowdown",
      "platform": "linux",
      "ports": ["4000:4000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Chowdown",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Chowdown",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Calibre Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.\n\n  [br][br]\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\n  [b]/config[/b] Where Calibre-web should store it's database[br]\n  [b]/books[/b] Path to your calibre library metadata.db file[br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/calibre-web:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/calibre-web-icon.png",
      "name": "calibre-web",
      "platform": "linux",
      "ports": ["8083:8083/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Calibre Web",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Calibre-web",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cardigann:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cardigann.png",
      "name": "cardigann",
      "platform": "linux",
      "ports": ["5060:5060/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Cardigann",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Cardigann",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Code-server is VS Code running on a remote server, accessible through the browser.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "GUID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        },
        {
          "label": "PASSWORD",
          "name": "PASSWORD"
        },
        {
          "label": "SUDO_PASSWORD",
          "name": "SUDO_PASSWORD"
        },
        {
          "default": "example.my.domain",
          "label": "PROXY_DOMAIN",
          "name": "PROXY_DOMAIN"
        }
      ],
      "image": "linuxserver/code-server:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/code-server.png",
      "name": "code-server",
      "platform": "linux",
      "ports": ["8443:8443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Code Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Code-Server",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Productivity"],
      "description": "Codiad is a web-based IDE framework with a small footprint and minimal requirements.\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/codiad:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/codiad-icon.png",
      "name": "codiad",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Codiad",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Codiad",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/cops:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/cops-icon.png",
      "name": "cops",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "COPS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Books",
          "container": "/books"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Cops",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/couchpotato:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/couchpotato-icon.png",
      "name": "couchpotato",
      "platform": "linux",
      "ports": ["5050:5050/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CouchPotato",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Couchpotato",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Music"],
      "description": "DAAP (iTunes) media server with support for AirPlay devices, Apple Remote (and compatibles), MPD and internet radio.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/daapd:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/daapd-icon.png",
      "name": "daapd",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Daapd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Daapd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Another application bookmark dashboard, with fun features.",
      "image": "rmountjoy/dashmachine:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dashmachine_logo.png",
      "name": "dashmachine",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DashMachine",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Dashmachine",
          "container": "/dashmachine/dashmachine/user_data"
        }
      ]
    },
    {
      "categories": ["FTP", "Other", "Tools"],
      "description": "davos is an FTP automation tool that periodically scans given host locations for new files. It can be configured for various purposes, including listening for specific files to appear in the host location, ready for it to download and then move, if required. It also supports completion notifications as well as downstream API calls, to further the workflow.\r\n\r\n/config : AppData Location\r\n/download : File Download Location",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/davos:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/davos.png",
      "name": "davos",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Davos",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Davos",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Music"],
      "description": "Deemix is a deezer downloader built from the ashes of Deezloader Remix.",
      "image": "registry.gitlab.com/bockiii/deemix-docker",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deemix.png",
      "name": "deemix",
      "note": "Deemix may take a few minutes to install. Be sure to check the logs for details. Refer to \u003ca href='https://notabug.org/RemixDevs/DeezloaderRemix/wiki/Login+via+userToken'\u003ethis page\u003c/a\u003e for userToken details.",
      "platform": "linux",
      "ports": ["9666:9666/tcp"],
      "restart_policy": "unless-stopped",
      "title": "DeeMix",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DeeMix",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client providing: Full Encryption, WebUI, Plugin System, Much more...",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "UMASK_SET",
          "name": "UMASK_SET",
          "set": "000"
        }
      ],
      "image": "linuxserver/deluge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/deluge-icon.png",
      "namme": "deluge",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Deluge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Deluge",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["HomeAutomation", "Management"],
      "description": "Domoticz is a Home Automation System that lets you monitor and configure various devices like: Lights, Switches, various sensors/meters like Temperature, Rain, Wind, UV, Electra, Gas, Water and much more. Notifications/Alerts can be sent to any mobile device",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/domoticz:latest",
      "logo": "https://github.com/domoticz/domoticz/raw/master/www/images/logo.png",
      "name": "domoticz",
      "platform": "linux",
      "ports": ["1443:1443/tcp", "6144:6144/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Domoticz",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Domoticz",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["DNS", "Tools"],
      "description": "Duck DNS is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice. The service is completely free, and doesn't require reactivation or forum posts to maintain its existence.\r\n\r\nFirst, go to duckdns site, register your subdomain and retrieve your token\r\nThen run the docker create command above with your subdomain(s) and token\r\nIt will update your IP with the DuckDNS service every 5 minutes\r\n\r\n",
      "env": [
        {
          "label": "SUBDOMAINS",
          "name": "SUBDOMAINS",
          "set": ""
        },
        {
          "label": "TOKEN",
          "name": "TOKEN",
          "set": ""
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duckdns:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duckdns.png",
      "name": "duckdns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Duck DNS",
      "type": 1
    },
    {
      "categories": ["DNS", "Cloud", "Other", "Tools"],
      "description": "This small Alpine Linux based Docker image will allow you to use the free CloudFlare DNS Service as a Dynamic DNS Provider (DDNS).",
      "note": "Follow the steps at https://github.com/oznu/docker-cloudflare-ddns#creating-a-cloudflare-api-token to generate a proper API Token for Cloudflare.",
      "env": [
        {
          "label": "API_KEY",
          "name": "API_KEY",
          "set": "",
          "description": "Your CloudFlare scoped API token. Follow the steps in the information section above to generate an API Token."
        },
        {
          "label": "ZONE",
          "name": "ZONE",
          "set": "",
          "description": "The DNS zone that DDNS updates should be applied to. Example: example.com"
        },
        {
          "label": "SUBDOMAIN",
          "name": "SUBDOMAIN",
          "description": "A subdomain of the ZONE to write DNS changes to. If this is not supplied the root zone will be used. Example: dynamic"
        },
        {
          "label": "RRTYPE",
          "name": "RRTYPE",
          "select": [
            {
              "text": "A",
              "value": "A",
              "default": true
            },
            {
              "text": "AAAA",
              "value": "AAAA"
            }
          ],
          "description": "Set to AAAA to use set IPv6 records instead of IPv4 records."
        },
        {
          "label": "PROXIED",
          "name": "PROXIED",
          "select": [
            {
              "text": "false",
              "value": "false",
              "default": true
            },
            {
              "text": "true",
              "value": "true"
            }
          ],
          "description": "Set to true to make traffic go through the CloudFlare CDN."
        },
        {
          "label": "DELETE_ON_STOP",
          "name": "DELETE_ON_STOP",
          "select": [
            {
              "text": "false",
              "value": "false",
              "default": true
            },
            {
              "text": "true",
              "value": "true"
            }
          ],
          "description": "Set to true to have the DNS record deleted when the container is stopped."
        },
        {
          "label": "DNS_SERVER",
          "name": "DNS_SERVER",
          "description": "Set to the IP address of the DNS server you would like to use. Defaults to 1.1.1.1 otherwise."
        },
        {
          "label": "CUSTOM_LOOKUP_CMD",
          "name": "CUSTOM_LOOKUP_CMD",
          "description": "Set to any shell command to run them and have the IP pulled from the standard output. Leave unset to use default IP address detection methods."
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "oznu/cloudflare-ddns:latest",
      "logo": "https://unpkg.com/simple-icons@latest/icons/cloudflare.svg",
      "name": "cloudflare-ddns",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Cloudflare DDNS",
      "type": 1
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Productivity", "Tools"],
      "description": "Free backup software to store encrypted backups online, Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive and S3, Google Drive, box.com, Mega, hubiC and many others.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/duplicati:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/duplicati-icon.png",
      "name": "duplicati",
      "platform": "linux",
      "ports": ["8200:8200/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Duplicati",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Duplicati",
          "container": "/config"
        },
        {
          "container": "/tmp"
        },
        {
          "container": "/backups"
        },
        {
          "container": "/source"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Emby organizes video, music, live TV, and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone emby Media Server.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "TZ",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/emby:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/emby.png",
      "name": "emby",
      "platform": "linux",
      "ports": ["8096:8096/tcp", "8920:8920/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Emby",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Emby",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/data/tvshows"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/data/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Web File Browser which can be used as a middleware or standalone app.",
      "image": "80x86/filebrowser:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/filebrowser.png",
      "name": "filebrowser",
      "note": "The default user and password is admin/admin.",
      "platform": "linux",
      "ports": ["8082:8082/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FileBrowser",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/FileBrowser",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config",
          "container": "/myfiles"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "A free, self-hostable rss aggregator…",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/freshrss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/freshrss-icon.png",
      "name": "freshrss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "FreshRSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/freshrss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Web", "Books", "Tools"],
      "description": "A WebApp Comic Reader for your favorite digital comics. Reach and read your comic library from any web connected device with a modern web browser",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/gazee:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/gazee-logo.png",
      "name": "gazee",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Gazee",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Gazee",
          "container": "/config"
        },
        {
          "bind": "/portainer/Comics",
          "container": "/comics"
        },
        {
          "bind": "/portainer/Files/AppData/Gazee",
          "container": "/mylar"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Finance"],
      "description": "Grocy is an ERP system for your kitchen! Cut down on food waste, and manage your chores with this brilliant utulity.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "linuxserver/grocy:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/grocy_logo.png",
      "name": "grocy",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Grocy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grocy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Docker container for Firefox.",
      "env": [
        {
          "default": "5800",
          "label": "WEB_PORT",
          "name": "WEB_PORT"
        },
        {
          "default": "5900",
          "label": "VNC_PORT",
          "name": "VNC_PORT"
        },
        {
          "default": "1",
          "label": "Keep App Running",
          "name": "KEEP_APP_RUNNING"
        },
        {
          "default": "1280",
          "label": "Display Width",
          "name": "DISPLAY_WIDTH"
        },
        {
          "default": "768",
          "label": "Display Height",
          "name": "DISPLAY_HEIGHT"
        },
        {
          "default": "0",
          "label": "Secure Connection",
          "name": "SECURE_CONNECTION"
        },
        {
          "label": "VNC Password",
          "name": "VNC_PASSWORD",
          "description": "Note: Password is limited to 8 characters"
        },
        {
          "default": "1000",
          "label": "User ID",
          "name": "USER_ID"
        },
        {
          "default": "1000",
          "label": "Group ID",
          "name": "GROUP_ID"
        },
        {
          "default": "Europe/London",
          "label": "Timezone",
          "name": "TZ"
        },
        {
          "default": "2g",
          "label": "Shared Memory Size",
          "name": "SHM_SIZE"
        },
        {
          "default": "-nocursor",
          "label": "X11VNC Extra Options",
          "name": "X11VNC_EXTRA_OPTS"
        },
        {
          "default": "jlesage/firefox:latest",
          "label": "Docker Image",
          "name": "DOCKER_IMAGE"
        },
        {
          "default": "/portainer/Files/AppData/Config/Firefox",
          "label": "Volume Path",
          "name": "VOLUME_PATH"
        }
      ],
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/firefox.png",
      "name": "firefox",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/firefox.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Firefox",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Docker container for Firefox V2.",
      "env": [
        {
          "default": "5800",
          "label": "WEB_PORT",
          "name": "WEB_PORT"
        },
        {
          "default": "5900",
          "label": "VNC_PORT",
          "name": "VNC_PORT"
        },
        {
          "default": "1",
          "label": "Keep App Running",
          "name": "KEEP_APP_RUNNING"
        },
        {
          "default": "1280",
          "label": "Display Width",
          "name": "DISPLAY_WIDTH"
        },
        {
          "default": "768",
          "label": "Display Height",
          "name": "DISPLAY_HEIGHT"
        },
        {
          "default": "0",
          "label": "Secure Connection",
          "name": "SECURE_CONNECTION"
        },
        {
          "label": "VNC Password",
          "name": "VNC_PASSWORD",
          "description": "Note: Password is limited to 8 characters"
        },
        {
          "default": "1000",
          "label": "User ID",
          "name": "USER_ID"
        },
        {
          "default": "1000",
          "label": "Group ID",
          "name": "GROUP_ID"
        },
        {
          "default": "Europe/London",
          "label": "Timezone",
          "name": "TZ"
        },
        {
          "default": "2g",
          "label": "Shared Memory Size",
          "name": "SHM_SIZE"
        },
        {
          "default": "-nocursor",
          "label": "X11VNC Extra Options",
          "name": "X11VNC_EXTRA_OPTS"
        },
        {
          "default": "0",
          "label": "Kiosk Mode",
          "name": "KIOSK_MODE"
        },
        {
          "default": "olivercullimore/docker-firefox:master",
          "label": "Docker Image",
          "name": "DOCKER_IMAGE"
        },
        {
          "default": "/portainer/Files/AppData/Config/FirefoxV2",
          "label": "Volume Path",
          "name": "VOLUME_PATH"
        }
      ],
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/firefox.png",
      "name": "firefoxv2",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/firefox.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "FirefoxV2",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Docker container for Chrome.",
      "env": [
        {
          "default": "5800",
          "label": "WEB_PORT",
          "name": "WEB_PORT"
        },
        {
          "default": "5900",
          "label": "VNC_PORT",
          "name": "VNC_PORT"
        },
        {
          "default": "1",
          "label": "Keep App Running",
          "name": "KEEP_APP_RUNNING"
        },
        {
          "default": "1280",
          "label": "Display Width",
          "name": "DISPLAY_WIDTH"
        },
        {
          "default": "768",
          "label": "Display Height",
          "name": "DISPLAY_HEIGHT"
        },
        {
          "default": "0",
          "label": "Secure Connection",
          "name": "SECURE_CONNECTION"
        },
        {
          "label": "VNC Password",
          "name": "VNC_PASSWORD",
          "description": "Note: Password is limited to 8 characters"
        },
        {
          "default": "1000",
          "label": "User ID",
          "name": "USER_ID"
        },
        {
          "default": "1000",
          "label": "Group ID",
          "name": "GROUP_ID"
        },
        {
          "default": "Europe/London",
          "label": "Timezone",
          "name": "TZ"
        },
        {
          "default": "2GB",
          "label": "Shared Memory Size",
          "name": "SHM_SIZE"
        },
        {
          "default": "-nocursor",
          "label": "X11VNC Extra Options",
          "name": "X11VNC_EXTRA_OPTS"
        }
      ],
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/chrome.png",
      "name": "googlechrome",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/chrome.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Google Chrome",
      "type": 3
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A clientless remote desktop gateway.",
      "image": "oznu/guacamole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/guacamole.png",
      "name": "guacamole",
      "note": "The default login will be guacadmin/guacadmin. It is common practice to add a new admin user and remove the default user for Guacamole.",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Guacamole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Guacamole",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Other"],
      "description": "HTPC Manaager, a front end for many htpc related applications. Hellowlol version.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/htpcmanager:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/htpcmanager-icon.png",
      "name": "htpcmanager",
      "platform": "linux",
      "ports": ["8085:8085/tcp"],
      "restart_policy": "unless-stopped",
      "title": "HTPC Manager",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/HTPCmanager",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Music"],
      "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/lidarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/lidarr.png",
      "name": "lidarr",
      "platform": "linux",
      "ports": ["8686:8686/tcp"],
      "restart_policy": "unless-stopped",
      "title": "lidarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Lidarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Music",
          "container": "/music"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A Linux network-level advertisement and Internet tracker blocking application which acts as a DNS sinkhole.",
      "image": "pihole/pihole:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pihole.png",
      "name": "pihole",
      "note": "When the installation is complete, navigate to your.ip.goes.here:1010/admin. Follow the article \u003ca href='https://medium.com/@niktrix/getting-rid-of-systemd-resolved-consuming-port-53-605f0234f32f'\u003ehere\u003c/a\u003e if you run into issues binding to port 53.",
      "platform": "linux",
      "ports": [
        "53:53/tcp",
        "53:53/udp",
        "67:67/udp",
        "1010:80/tcp",
        "4443:443/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "Pi-Hole",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiHole",
          "container": "/etc/pihole"
        },
        {
          "bind": "/portainer/Files/AppData/Config/PiHole/DNS",
          "container": "/etc/dnsmasq.d"
        }
      ]
    },
    {
      "categories": ["Photos"],
      "description": "Piwigo is photo gallery software for the web, built by an active community of users and developers.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/piwigo:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/piwigo-icon.png",
      "name": "piwigo",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Piwigo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PiWigo",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Music", "Photos"],
      "description": "Your favorite movies, TV, music, web shows, podcasts, and more, all streamed to your favorite screens.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "latest",
          "label": "VERSION",
          "name": "VERSION"
        },
        {
          "default": "",
          "label": "PLEX_CLAIM",
          "name": "PLEX_CLAIM"
        }
      ],
      "image": "linuxserver/plex:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/plex-icon.png",
      "name": "plex",
      "network": "host",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Plex",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Plex",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Other", "Video", "Tools"],
      "description": "Simple automated way for users to request new content for Plex.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "label": "URL_BASE",
          "name": "URL_BASE",
          "set": ""
        }
      ],
      "image": "linuxserver/plexrequests:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/plexrequests-icon.png",
      "name": "plexrequests",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Plex Requests",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PlexRequests",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Productivity", "Tools", "Other"],
      "description": "ProjectSend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself! Secure, private and easy. No more depending on external services or e-mail to send those files!\n  ",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/projectsend:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/projectsend-logo.png",
      "name": "projectsend",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProjectSend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProjectSend",
          "container": "/data"
        },
        {
          "bind": "/portainer/Files/AppData/Config/ProjectSend",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Email", "Productivity", "Tools", "Other"],
      "description": "This is an unofficial Docker container of the ProtonMail Bridge. Some of the scripts are based on Hendrik Meyer's work.",
      "image": "shenxn/protonmail-bridge:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/protonmail-bridge.png",
      "name": "protonmail-bridge",
      "note": "Please refer to the documentation \u003ca href='https://hub.docker.com/r/shenxn/protonmail-bridge'/\u003ehere\u003c/a\u003e to set this up.",
      "platform": "linux",
      "ports": ["143/tcp", "25/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ProtonMail Bridge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/ProtonMail-Bridge",
          "container": "/root"
        }
      ]
    },
    {
      "categories": ["VPN", "Tools", "Other", "Web"],
      "description": "Pritunl container built on Alpine Linux. Supports IPv6 and running behind a reverse proxy. This container requires an external Mongo DB and should be run via Docker Compose or other orchestration.",
      "env": [
        {
          "default": "false",
          "label": "REVERSE_PROXY",
          "name": "REVERSE_PROXY"
        },
        {
          "label": "PRITUNL_OPTS",
          "name": "PRITUNL_OPTS"
        },
        {
          "default": "mongodb://mongo:27017/pritunl",
          "label": "MONGODB_URI",
          "name": "MONGODB_URI"
        },
        {
          "default": "false",
          "label": "WIREGUARD",
          "name": "WIREGUARD"
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/pritunl/Images/pritunl.png",
      "name": "pritunl",
      "note": "Documentation on this containier can be found here: \u003ca href=https://hub.docker.com/r/goofball222/pritunl\u003ehttps://hub.docker.com/r/goofball222/pritunl\u003c/a\u003e",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/pritunl.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Pritunl",
      "type": 3
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Pydio (formerly AjaXplorer) is a mature open source software solution for file sharing and synchronization. With intuitive user interfaces (web / mobile / desktop), Pydio provides enterprise-grade features to gain back control and privacy of your data: user directory connectors, legacy filesystems drivers, comprehensive admin interface, and much more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/pydio:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/pydio-icon.png",
      "name": "pydio",
      "platform": "linux",
      "ports": ["443/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Pydio",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Pydio",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Pydio",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent. qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/qbittorrent:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/qbittorrent-icon.png",
      "name": "qbittorrent",
      "platform": "linux",
      "ports": ["6881:6881/tcp", "6881:6881/udp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "qBittorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/qBittorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "Quassel IRC is a modern, cross-platform, distributed IRC client, meaning that one (or multiple) client(s) can attach to and detach from a central core -- much like the popular combination of screen and a text-based IRC client such as WeeChat, but graphical. Blowfish support and optional web-ui included.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/quassel-core:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/quassel-core-icon.png",
      "name": "quassel-core",
      "platform": "linux",
      "ports": ["4242:4242/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Quassel IRC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Quassel-core",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Radarr - A fork of Sonarr to work with movies à la Couchpotato.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/radarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/radarr.png",
      "name": "radarr",
      "platform": "linux",
      "ports": ["7878:7878/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Radarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Radarr",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Movies",
          "container": "/movies"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A one-of-a-kind resume builder that's not out to get your data. Completely secure, customizable, portable, open-source and free forever.",
      "image": "amruthpillai/reactive-resume:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/reactiveresume.png",
      "name": "reactive-resume",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Reactive-Resume",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ReactiveResume",
          "container": "/usr/src/app"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/resilio-sync:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/resilio.png",
      "name": "resilio-sync",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Resilio Sync",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Resilio-Sync",
          "container": "/config"
        },
        {
          "container": "/sync"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Popular torrent client with a webui for ease of use.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/rutorrent:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/beta-templates/master/lsiodev/img/rutorrent-icon.png",
      "name": "rutorrent",
      "platform": "linux",
      "ports": ["80/tcp", "51413:51413/tcp", "6881:6881/udp"],
      "restart_policy": "unless-stopped",
      "title": "ruTorrent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ruTorrent",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sabnzbd:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sabnzbd-icon.png",
      "name": "sabnzbd",
      "platform": "linux",
      "ports": ["8080:8080/tcp", "9090:9090/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SABnzbd",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sabnzbd",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/Downloads/incomplete",
          "container": "/incomplete-downloads"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application.",
      "image": "radhifadlillah/shiori:latest",
      "logo": "https://raw.githubusercontent.com/robocopAlpha/selfhosted_templates/master/Images/shiori-icon.png",
      "name": "shiori",
      "platform": "linux",
      "ports": ["8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Shiori",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Shiori",
          "container": "/srv/shiori"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickchill:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickchill-icon.png",
      "name": "sickchill",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickChill",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickChill",
          "container": "/config"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "SickGear provides management of TV shows and/or Anime, it detects new episodes, links downloader apps, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sickgear:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sickgear-icon.png",
      "name": "sickgear",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SickGear",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/SickGear",
          "container": "/config"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Management"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/smokeping:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/smokeping-icon.png",
      "name": "smokeping",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SmokePing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Smokeping",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Smokeping",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Downloaders", "Video"],
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/sonarr:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/sonarr-icon.png",
      "name": "sonarr",
      "platform": "linux",
      "ports": ["8989:8989/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Sonarr",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Sonarr",
          "container": "/config"
        },
        {
          "bind": "/dev/rtc",
          "container": "/dev/rtc"
        },
        {
          "bind": "/portainer/TV",
          "container": "/tv"
        },
        {
          "bind": "/portainer/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["Backup", "Cloud", "Other", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/syncthing:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/syncthing-icon.png",
      "name": "syncthing",
      "platform": "linux",
      "ports": ["8384:8384/tcp", "21027:21027/udp", "22000:22000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "SyncThing",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Syncthing",
          "container": "/config"
        },
        {
          "container": "/sync"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Tautulli is a 3rd party application that you can run along side your Plex Media Server to monitor activity and track various statistics. Most importantly, these statistics include what has been watched, who watched it, when and where they watched it, and how it was watched. All statistics are presented in a nice and clean interface with many tables and graphs, which makes it easy to brag about your server to everyone else.[br][br]\r\n  [b][u][span style='color: #E80000;']Configuration[/span][/u][/b][br]\r\n  [b]8181[/b] The webui for Tautulli's webui [br]\r\n  [b]/config[/b] Storing Configuration and the Tautulli database[br]\r\n[b]/logs[/b] Map to you plex logs (required for IP logging)[br]\r\n\r\n",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tautulli:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tautulli-icon.png",
      "name": "tautulli",
      "platform": "linux",
      "ports": ["8181:8181/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tautulli",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Logs",
          "container": "/logs"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Tautulli",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "A self-hosted web IRC client",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/thelounge:latest",
      "logo": "https://raw.githubusercontent.com/linuxserver/community-templates/master/lsiocommunity/img/shout-icon.png",
      "name": "thelounge",
      "platform": "linux",
      "ports": ["9000:9000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TheLounge",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TheLounge",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A unique, non-linear notebook wiki.",
      "image": "mazzolino/tiddlywiki:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tiddlywiki.png",
      "name": "tiddlywiki",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "TiddlyWiki",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TiddlyWiki",
          "container": "/var/lib/tiddlywiki"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/transmission:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission",
      "platform": "linux",
      "ports": ["9091:9091/tcp", "51413:51413/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Transmission",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/Downloads",
          "container": "/downloads"
        },
        {
          "container": "/watch"
        }
      ]
    },
    {
      "categories": ["Other", "VPN", "Tools"],
      "description": "This container contains OpenVPN and Transmission with a configuration\nwhere Transmission is running only when OpenVPN has an active tunnel.\nIt bundles configuration files for many popular VPN providers to make the setup easier.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "MULLVAD",
          "description": "https://haugene.github.io/docker-transmission-openvpn/supported-providers/",
          "label": "OPENVPN_PROVIDER",
          "name": "OPENVPN_PROVIDER"
        },
        {
          "default": "",
          "label": "OPENVPN_USERNAME",
          "name": "OPENVPN_USERNAME"
        },
        {
          "default": "",
          "label": "OPENVPN_PASSWORD",
          "name": "OPENVPN_PASSWORD"
        },
        {
          "default": "192.168.0.0/24",
          "label": "LOCAL_NETWORK",
          "name": "LOCAL_NETWORK"
        }
      ],
      "image": "haugene/transmission-openvpn:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/transmission-icon.png",
      "name": "transmission-openvpn",
      "note": "List of supported providers available \u003ca href='https://haugene.github.io/docker-transmission-openvpn/supported-providers'/\u003ehere\u003c/a\u003e.",
      "platform": "linux",
      "ports": ["9091:9091/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Transmission-OpenVPN",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Downloads",
          "container": "/data"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime"
        }
      ]
    },
    {
      "categories": ["Other"],
      "description": "Tiny Tiny RSS is an open source web-based news feed (RSS/Atom) reader and aggregator, designed to allow you to read news from any location, while feeling as close to a real desktop application as possible.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "lunik1/tt-rss:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/tt-rss-icon.png",
      "name": "tt-rss",
      "platform": "linux",
      "ports": ["80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tiny Tiny RSS",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/tt-rss",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a TV streaming server and recorder for Linux, FreeBSD and Android supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, ISDB-T, IPTV, SAT\u0026gt;IP and HDHomeRun as input sources.\r\nTvheadend offers the HTTP (VLC, MPlayer), HTSP (Kodi, Movian) and SAT\u0026gt;IP streaming.\r\nMultiple EPG sources are supported (over-the-air DVB and ATSC including OpenTV DVB extensions, XMLTV, PyXML).",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/tvheadend:latest",
      "logo": "http://i.imgur.com/zGSUAT4.png",
      "name": "tvheadend",
      "platform": "linux",
      "ports": ["9981:9981/tcp", "9982:9982/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvheadend",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/TVHeadend",
          "container": "/config"
        },
        {
          "container": "/recordings"
        }
      ]
    },
    {
      "categories": ["Video", "Other"],
      "description": "Tvheadend is a small flask app to proxy requests between Plex Media Server and Tvheadend.",
      "env": [
        {
          "default": "",
          "label": "TVH_BINDADDR",
          "name": "TVH_BINDADDR"
        },
        {
          "default": "http://test:test@localhost:9981",
          "label": "TVH_URL",
          "name": "TVH_URL"
        },
        {
          "default": "http://localhost",
          "label": "TVH_PROXY_URL",
          "name": "TVH_PROXY_URL"
        },
        {
          "default": "6",
          "description": "Number of tuners in TVHeadend",
          "label": "TVH_TUNER_COUNT",
          "name": "TVH_TUNER_COUNT"
        },
        {
          "default": "300",
          "description": "Subscription priority",
          "label": "TVH_WEIGHT",
          "name": "TVH_WEIGHT"
        },
        {
          "default": "pass",
          "description": "Stream profile for adhoc transcoding in TVHeadend, e.g. mp4",
          "label": "TVH_PROFILE",
          "name": "TVH_PROFILE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "christoefar/tvhproxy:latest",
      "name": "tvhproxy",
      "platform": "linux",
      "ports": ["5004:5004/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Tvhproxy",
      "type": 1
    },
    {
      "categories": ["Video", "Other"],
      "description": "An app to emulate the HDHomeRun API which allows Plex Media Server's DVR feature to connect to EETV Boxes.",
      "env": [
        {
          "default": "localhost",
          "description": "Specify the host domain/IP to use e.g. 192.168.1.50",
          "label": "PROXY_HOST",
          "name": "PROXY_HOST"
        },
        {
          "default": "5004",
          "description": "Specify the port to use e.g. 5004",
          "label": "PROXY_PORT",
          "name": "PROXY_PORT"
        },
        {
          "default": "192.168.1.52",
          "description": "Specify the IP of the EETV Box e.g. 192.168.1.50",
          "label": "EETV_IP",
          "name": "EETV_IP"
        },
        {
          "default": "",
          "description": "Specify the AppKey for the EETV Box. Leave blank to use default AppKey",
          "label": "EETV_APP_KEY",
          "name": "EETV_APP_KEY"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "olivercullimore/eetv-plex-proxy:latest",
      "name": "eetv-plex-proxy",
      "platform": "linux",
      "ports": ["5004:5004/tcp"],
      "restart_policy": "unless-stopped",
      "title": "EETV Plex Proxy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/EETVPlexProxy",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Cloud", "Books"],
      "description": "Ubooquity is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer.",
      "env": [
        {
          "label": "MAXMEM",
          "name": "MAXMEM",
          "set": "512"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/ubooquity:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ubooquity-icon.png",
      "name": "ubooquity",
      "platform": "linux",
      "ports": ["2202:2202/tcp", "2203:2203/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Ubooquity",
      "type": 1,
      "volumes": [
        {
          "container": "/books"
        },
        {
          "container": "/comics"
        },
        {
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Management", "Tools"],
      "description": null,
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/unifi-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/unifi-icon.png",
      "name": "unifi-controller",
      "platform": "linux",
      "ports": [
        "3478:3478/udp",
        "10001:10001/udp",
        "8080:8080/tcp",
        "8081:8081/tcp",
        "8443:8443/tcp",
        "8843:8843/tcp",
        "8880:8880/tcp",
        "6789:6789/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Controller",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Unifi",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry. Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially.",
      "env": [
        {
          "label": "Time Zone",
          "description": "Sets the time zone to be used by WatchTower's logs and the optional Cron 'Schedule'.",
          "name": "TZ",
          "default": "UTC"
        },
        {
          "label": "Cleanup",
          "description": "Removes old images after updating. When true, watchtower will remove the old image after restarting a container with a new image. Use this option to prevent the accumulation of orphaned images on your system as containers are updated.",
          "name": "WATCHTOWER_CLEANUP",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Remove Attached Volumes",
          "description": "Removes attached volumes after updating. When true, watchtower will remove all attached volumes from the container before restarting with a new image. Use this option to force new volumes to be populated as containers are updated.",
          "name": "WATCHTOWER_REMOVE_VOLUMES",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Docker host",
          "description": "Docker daemon socket to connect to. Can be pointed at a remote Docker host by specifying a TCP endpoint as 'tcp://hostname:port'.",
          "name": "DOCKER_HOST",
          "default": "unix:///var/run/docker.sock"
        },
        {
          "label": "Docker API version",
          "description": "The API version to use by the Docker client for connecting to the Docker daemon. The minimum supported version is 1.24.",
          "name": "DOCKER_API_VERSION",
          "default": "1.24"
        },
        {
          "label": "Include Restarting",
          "description": "Will also include restarting containers.",
          "name": "WATCHTOWER_INCLUDE_RESTARTING",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Include Stopped",
          "description": "Will also include created and exited containers.",
          "name": "WATCHTOWER_INCLUDE_STOPPED",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Revive Stopped",
          "description": "Start any stopped containers that have had their image updated. This is only valid if 'Include Stopped' is true.",
          "name": "WATCHTOWER_REVIVE_STOPPED",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Poll Interval",
          "description": "Poll interval (in seconds). This value controls how frequently watchtower will poll for new images. Either 'Schedule' or a 'Poll Interval' can be defined, but not both.",
          "name": "WATCHTOWER_POLL_INTERVAL",
          "default": "86400"
        },
        {
          "label": "Label Enable",
          "description": "Only update containers that have a 'com.centurylinklabs.watchtower.enable' label set to true.",
          "name": "WATCHTOWER_LABEL_ENABLE",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Without Updating Containers",
          "description": "Will only monitor for new images, send notifications and invoke the pre-check/post-check hooks, but will not update the containers.",
          "name": "WATCHTOWER_MONITOR_ONLY",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Without Restarting Containers",
          "description": "Do not restart containers after updating. This option can be useful when the start of the containers is managed by an external system such as systemd.",
          "name": "WATCHTOWER_NO_RESTART",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Without Pulling New Images",
          "description": "Do not pull new images. When this is true, watchtower will not attempt to pull new images from the registry. Instead it will only monitor the local image cache for changes. Use this option if you are building new images directly on the Docker host without pushing them to a registry.",
          "name": "WATCHTOWER_NO_PULL",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Without Sending A Startup Message",
          "description": "Do not send a message after watchtower started. Otherwise there will be an info-level notification.",
          "name": "WATCHTOWER_NO_STARTUP_MESSAGE",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Run Once",
          "description": "Run an update attempt against a container name list one time immediately and exit.",
          "name": "WATCHTOWER_RUN_ONCE",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "HTTP API Mode",
          "description": "Runs Watchtower in HTTP API mode, only allowing image updates to be triggered by an HTTP request. For details see HTTP API. Add WATCHTOWER_HTTP_API_TOKEN env variable to set an authentication token.",
          "name": "WATCHTOWER_HTTP_API",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "HTTP API Metrics",
          "description": "Enables a metrics endpoint, exposing prometheus metrics via HTTP. See Metrics for details.",
          "name": "WATCHTOWER_HTTP_API_METRICS",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Rolling Restart",
          "description": "Restart one image at time instead of stopping and starting all at once. Useful in conjunction with lifecycle hooks to implement zero-downtime deploy.",
          "name": "WATCHTOWER_ROLLING_RESTART",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Wait Until Timeout",
          "description": "Timeout before the container is forcefully stopped.",
          "name": "WATCHTOWER_TIMEOUT",
          "default": "10s"
        },
        {
          "label": "TLS Verification",
          "description": "Use TLS when connecting to the Docker socket and verify the server's certificate.",
          "name": "DOCKER_TLS_VERIFY",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "HEAD Failure Warnings",
          "description": "When to warn about HEAD pull requests failing. Auto means that it will warn when the registry is known to handle the requests and may rate limit pull requests (mainly docker.io).",
          "name": "WATCHTOWER_WARN_ON_HEAD_FAILURE",
          "select": [
            {
              "text": "always",
              "value": "always"
            },
            {
              "default": true,
              "text": "auto",
              "value": "auto"
            },
            {
              "text": "never",
              "value": "never"
            }
          ]
        },
        {
          "label": "Debug",
          "description": "Enable debug mode with verbose logging.",
          "name": "WATCHTOWER_DEBUG",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "Trace",
          "description": "Enable trace mode with very verbose logging. Caution: exposes credentials!",
          "name": "WATCHTOWER_TRACE",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        },
        {
          "label": "ANSI Colors",
          "description": "Disable ANSI color escape codes in log output.",
          "name": "NO_COLOR",
          "select": [
            {
              "text": "true",
              "value": "true"
            },
            {
              "default": true,
              "text": "false",
              "value": "false"
            }
          ]
        }
      ],
      "image": "containrrr/watchtower:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/watchtower.png",
      "name": "watchtower",
      "note": "It is recommended to manually update your containers but we're including this for those of you that don't care",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Watchtower",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Downloaders"],
      "description": "WebGrab+Plus is a multi-site incremental xmltv epg grabber. It collects tv-program guide data from selected tvguide sites for your favourite channels.[br]\r\n\t\tOptional postprocessors to add IMDb data or to customize your xmltv listing.[br]\r\n\t\thttp://www.webgrabplus.com/[br]\r\n\t\t[b][span style='color: #E80000;']Directions:[/span][/b][br]\r\n\t\t[b]/config[/b] : This is where WebGrab+Plus will store it's configuration.[br][br]\r\n\t\t[b]/data[/b] : This is where tv_grab_wg script in the Tvheadend container looks for the guide.xml file.[br][br]",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/webgrabplus:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/webgrabplus.png",
      "name": "webgrabplus",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "WebGrab+Plus",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/WebGrabPlus",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/WebGrabPlus",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Self-hosted, ad-free, privacy-respecting Google metasearch engine.",
      "image": "benbusby/whoogle-search:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/whoogle.png",
      "name": "whoogle",
      "platform": "linux",
      "ports": ["5001:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Whoogle",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Whoogle",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "Wikijs A modern, lightweight and powerful wiki app built on NodeJS.",
      "image": "linuxserver/wikijs:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/wikijs.png",
      "name": "wikijs",
      "platform": "linux",
      "ports": ["3100:3000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wikijs",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs",
          "container": "/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/Wikijs/data",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "YoutubeDL-Material is a Material Design frontend for youtube-dl. It's coded using Angular 9 for the frontend, and Node.js on the backend.",
      "image": "tzahi12345/youtubedl-material:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ytdlm.png",
      "name": "youtubedl-material",
      "platform": "linux",
      "ports": ["17442:17442/tcp"],
      "restart_policy": "unless-stopped",
      "title": "YouTubeDL-Material",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/YTDLM",
          "container": "/app/appdata"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Video",
          "container": "/app/video"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Subscriptions",
          "container": "/app/subscriptions"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Users",
          "container": "/app/users"
        },
        {
          "bind": "/portainer/Files/AppData/Youtube/Audio",
          "container": "/app/audio"
        }
      ]
    },
    {
      "categories": ["Other", "Downloaders"],
      "description": "Web GUI for youtube-dl with playlist support. Allows you to download videos from YouTube and dozens of other sites (https://ytdl-org.github.io/youtube-dl/supportedsites.html).",
      "image": "alexta69/metube:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/ytdlm.png",
      "name": "metube-youtubedl",
      "platform": "linux",
      "ports": ["8081:8081/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MeTube (YouTubeDL)",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MeTube/Downloads",
          "container": "/downloads"
        }
      ]
    },
    {
      "categories": ["CCTV"],
      "description": "UniFi Video is a powerful and flexible, integrated IP video management surveillance system designed to work with Ubiquiti’s UniFi Video Camera product line. UniFi Video has an intuitive, configurable, and feature‑packed user interface with advanced features such as motion detection, auto‑discovery, user‑level security, storage management, reporting, and mobile device support.",
      "env": [
        {
          "default": "99",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        },
        {
          "default": "002",
          "label": "UMASK",
          "name": "UMASK"
        },
        {
          "label": "CONTEXT_PATH",
          "name": "CONTEXT_PATH",
          "set": "UniFi Video"
        }
      ],
      "image": "pducharme/unifi-video-controller:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/UniFiVideo-logo.png",
      "name": "UniFi Video",
      "platform": "linux",
      "ports": [
        "1935:1935/tcp",
        "7444:7444/tcp",
        "7447:7447/tcp",
        "6666:6666/tcp",
        "7442:7442/tcp",
        "7080:7080/tcp",
        "7443:7443/tcp",
        "7445:7445/tcp",
        "7446:7446/tcp"
      ],
      "restart_policy": "unless-stopped",
      "title": "UniFi Video",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/UnifFiVideo/Recordings/",
          "container": "/recordings"
        },
        {
          "bind": "/portainer/Files/AppData/Config/UniFiVideo/",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.",
      "image": "selfhostedpro/yacht:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/Yacht/master/readme_media/Yacht_logo_1_dark.png",
      "name": "yacht",
      "platform": "linux",
      "ports": ["8001:8000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Yacht",
      "type": 1,
      "volumes": [
        {
          "bind": "yacht",
          "container": "/config"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Messenger"],
      "description": "ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "linuxserver/znc:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/znc-icon.png",
      "name": "znc",
      "platform": "linux",
      "ports": ["6501:6501/tcp"],
      "restart_policy": "unless-stopped",
      "title": "ZNC",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/ZNC",
          "container": "/config"
        }
      ]
    },
    {
      "categories": ["Other", "Tools"],
      "description": "NOTE: Once you deploy your GoPhish instance, please navigate to the logs section in Portainer and acquire your 'admin' credentials for login. Gophish is an open-source phishing toolkit designed for businesses and penetration testers. It provides the ability to quickly and easily setup and execute phishing engagements and security awareness training.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "gophish/gophish:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/gophish.png",
      "name": "gophish",
      "platform": "linux",
      "ports": ["3333:3333/tcp"],
      "restart_policy": "unless-stopped",
      "title": "GOPHISH",
      "type": 1
    },
    {
      "categories": ["Cloud", "Other"],
      "description": "Seafile is an open-source, cross-platform file-hosting software system. Files are stored on a central server and can be synchronized with personal computers and mobile devices through apps. Files on the Seafile server can also be accessed directly via the server's web interface.",
      "env": [
        {
          "default": "Etc/UTC",
          "label": "Time Zone",
          "name": "TIME_ZONE"
        },
        {
          "default": "password",
          "label": "Database Password",
          "name": "MYSQL_ROOT_PASSWORD"
        },
        {
          "default": "me@example.com",
          "label": "Administrator Email",
          "name": "ADMIN_EMAIL"
        },
        {
          "default": "asecret",
          "label": "Administrator Password",
          "name": "ADMIN_PASSWORD"
        },
        {
          "default": "docs.seafile.com",
          "label": "Domain Name",
          "name": "SERVER_HOSTNAME"
        },
        {
          "label": "Enable HTTPS?",
          "name": "ENABLE_HTTPS",
          "select": [
            {
              "default": true,
              "text": "Yes",
              "value": "true"
            },
            {
              "text": "No",
              "value": "false"
            }
          ]
        }
      ],
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/seafile.png",
      "name": "seafile",
      "platform": "linux",
      "repository": {
        "stackfile": "Template/Stack/seafile.yml",
        "url": "https://github.com/SelfhostedPro/selfhosted_templates"
      },
      "title": "Seafile",
      "type": 3
    },
    {
      "categories": ["Other", "Tools", "Maintenance"],
      "description": "Dozzle is a simple, lightweight application that provides you with a web based interface to monitor your Docker container logs live. It doesn’t store log information, it is for live monitoring of your container logs only.",
      "image": "amir20/dozzle:latest",
      "logo": "https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/master/Images/dozzle.png",
      "name": "dozzle",
      "platform": "linux",
      "ports": ["8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Dozzle",
      "type": 1,
      "volumes": [
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Tools", "Productivity", "Web", "Other"],
      "description": "wallabag is a self hostable application for saving web pages: Save and classify articles. Read them later. Freely.",
      "env": [
        {
          "default": "ovmpmAWXRCabNlMgzlzFXDYmCFfzGv",
          "description": "This should be set to a random string of characters.",
          "label": "Secret",
          "name": "SYMFONY__ENV__SECRET"
        },
        {
          "default": "https://wallabag.example.com",
          "label": "Domain Name",
          "name": "SYMFONY__ENV__DOMAIN_NAME"
        },
        {
          "default": "127.0.0.1",
          "label": "SMTP Host",
          "name": "SYMFONY__ENV__MAILER_HOST"
        },
        {
          "default": "~",
          "label": "SMTP Username",
          "name": "SYMFONY__ENV__MAILER_USER"
        },
        {
          "default": "~",
          "label": "SMTP Password",
          "name": "SYMFONY__ENV__MAILER_PASSWORD"
        },
        {
          "default": "wallabag@example.com",
          "label": "SMTP From Email",
          "name": "SYMFONY__ENV__FROM_EMAIL"
        },
        {
          "label": "Enable public user registration?",
          "name": "SYMFONY__ENV__FOSUSER_REGISTRATION",
          "select": [
            {
              "default": true,
              "text": "Yes",
              "value": "true"
            },
            {
              "text": "No",
              "value": "false"
            }
          ]
        },
        {
          "label": "Require registration confirmation?",
          "name": "SYMFONY__ENV__FOSUSER_CONFIRMATION",
          "select": [
            {
              "default": true,
              "text": "Yes",
              "value": "true"
            },
            {
              "text": "No",
              "value": "false"
            }
          ]
        }
      ],
      "image": "wallabag/wallabag:latest",
      "logo": "https://raw.githubusercontent.com/jake-walker/selfhosted_templates/wallabag/Images/wallabag.png",
      "name": "wallabag",
      "platform": "linux",
      "ports": ["80:80/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Wallbag",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Wallabag/data",
          "container": "/var/www/wallabag/data"
        },
        {
          "bind": "/portainer/Files/AppData/Wallabag/images",
          "container": "/var/www/wallabag/web/assets/images"
        }
      ]
    },
    {
      "categories": ["Tools", "Other"],
      "description": "GitLab runner",
      "image": "gitlab/gitlab-runner:alpine",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/gitlab-runner-icon.png",
      "name": "gitlab-runner",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "GitLab Runner",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/gitlab-runner/config",
          "container": "/etc/gitlab-runner"
        },
        {
          "bind": "/var/run/docker.sock",
          "container": "/var/run/docker.sock"
        }
      ]
    },
    {
      "categories": ["Tools", "Other"],
      "description": "Jetbrains TeamCity Server",
      "image": "jetbrains/teamcity-server",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/teamcity.png",
      "name": "teamcity-server",
      "platform": "linux",
      "ports": ["8111:8111/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Jetbrains TeamCity Server",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/teamcity-server/data",
          "container": "/data/teamcity_server/datadir"
        },
        {
          "bind": "/portainer/Files/AppData/teamcity-server/logs",
          "container": "/opt/teamcity/logs"
        }
      ]
    },
    {
      "categories": ["Tools", "Other"],
      "description": "Jetbrains TeamCity Agent",
      "env": [
        {
          "description": "URL of the TeamCity server agent will connect to.",
          "label": "Server URL",
          "name": "SERVER_URL",
          "default": ""
        }
      ],
      "image": "jetbrains/teamcity-agent",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/teamcity.png",
      "name": "teamcity-agent",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "Jetbrains TeamCity Agent",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/teamcity-agent/data",
          "container": "/data/teamcity_agent/conf"
        }
      ]
    },
    {
      "categories": ["Tools", "Other"],
      "description": "Jetbrains TeamCity Agent (Docker in Docker)",
      "env": [
        {
          "description": "URL of the TeamCity server agent will connect to.",
          "label": "Server URL",
          "name": "SERVER_URL",
          "default": ""
        },
        {
          "description": "Start Docker within the Docker container.",
          "label": "Docker in Docker",
          "name": "DOCKER_IN_DOCKER",
          "default": "start"
        }
      ],
      "image": "jetbrains/teamcity-agent:2020.2.4-linux-sudo",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/teamcity.png",
      "name": "teamcity-agent",
      "platform": "linux",
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Jetbrains TeamCity Agent Docker",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/teamcity-agent/data",
          "container": "/data/teamcity_agent/conf"
        },
        {
          "container": "/var/lib/docker"
        }
      ]
    },
    {
      "categories": ["Tools", "Media", "Other"],
      "description": "Jetbrains TeamCity Server with 3 Jetbrains TeamCity Agents (Docker in Docker).",
      "env": [
        {
          "default": "8111",
          "label": "TeamCity Server Port",
          "name": "SERVER_PORT"
        },
        {
          "default": "-Xmx2g -XX:ReservedCodeCacheSize=350m",
          "label": "TeamCity Server Memory Options",
          "name": "SERVER_MEM_OPTS"
        },
        {
          "description": "Start Docker within the Agent Docker container.",
          "label": "Agent Docker in Docker",
          "name": "AGENT_DOCKER_IN_DOCKER",
          "default": "start"
        },
        {
          "label": "MySQL Root Password",
          "name": "MYSQL_ROOT_PASSWORD",
          "set": ""
        },
        {
          "default": "teamcity",
          "label": "MYSQL_DATABASE",
          "name": "MYSQL_DATABASE"
        },
        {
          "default": "teamcity",
          "label": "MYSQL_USER",
          "name": "MYSQL_USER"
        },
        {
          "label": "MYSQL_PASSWORD",
          "name": "MYSQL_PASSWORD"
        },
        {
          "default": "Europe/London",
          "label": "Timezone",
          "name": "TZ"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/teamcity.png",
      "name": "teamcity-stack",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/teamcity-server-agents.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Jetbrains TeamCity Stack",
      "type": 3
    },
    {
      "categories": ["Tools", "Other"],
      "description": "TestProject Agent with headless Chrome & Firefox browsers.",
      "env": [
        {
          "label": "TestProject API Key",
          "name": "TP_API_KEY"
        },
        {
          "default": "docker-agent-1",
          "label": "TestProject Agent Alias",
          "name": "TP_AGENT_ALIAS"
        },
        {
          "label": "Chrome SMH Size",
          "name": "CHROME_SMH_SIZE",
          "default": "1g"
        },
        {
          "label": "Firefox SMH Size",
          "name": "FIREFOX_SMH_SIZE",
          "default": "1g"
        }
      ],
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/testproject.png",
      "name": "testproject-chrome-firefox",
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/testproject-chrome-firefox.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "TestProject Agent Browser Stack",
      "type": 3
    },
    {
      "categories": ["Tools", "Media", "Other"],
      "description": "Refer to https://github.com/OliverCullimore/media-grabber-worker for documentation.",
      "env": [
        {
          "default": "redis",
          "label": "REDIS_HOST",
          "name": "REDIS_HOST"
        },
        {
          "default": "6379",
          "label": "REDIS_PORT",
          "name": "REDIS_PORT"
        },
        {
          "default": "1",
          "label": "REDIS_DATABASE",
          "name": "REDIS_DATABASE"
        },
        {
          "label": "REDIS_PASSWORD",
          "name": "REDIS_PASSWORD"
        },
        {
          "default": "best",
          "label": "YTDL_FORMAT",
          "name": "YTDL_FORMAT"
        },
        {
          "default": "",
          "label": "YTDL_PROXY",
          "name": "YTDL_PROXY"
        },
        {
          "default": true,
          "label": "YTDL_WRITEINFOJSON",
          "name": "YTDL_WRITEINFOJSON",
          "select": [
            {
              "text": "Enabled",
              "value": true,
              "default": true
            },
            {
              "text": "Disabled",
              "value": false
            }
          ]
        },
        {
          "default": false,
          "label": "YTDL_VERBOSE",
          "name": "YTDL_VERBOSE",
          "select": [
            {
              "text": "Disabled",
              "value": false,
              "default": true
            },
            {
              "text": "Enabled",
              "value": true
            }
          ]
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/media-grabber-worker-redis.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Media Grabber Worker with Redis",
      "name": "Media Grabber Worker with Redis",
      "type": 3
    },
    {
      "categories": ["Tools", "Media", "Other"],
      "description": "Refer to https://github.com/OliverCullimore/media-grabber-worker for documentation.",
      "env": [
        {
          "default": "redis",
          "label": "REDIS_HOST",
          "name": "REDIS_HOST"
        },
        {
          "default": "6379",
          "label": "REDIS_PORT",
          "name": "REDIS_PORT"
        },
        {
          "default": "1",
          "label": "REDIS_DATABASE",
          "name": "REDIS_DATABASE"
        },
        {
          "label": "REDIS_PASSWORD",
          "name": "REDIS_PASSWORD"
        },
        {
          "default": "best",
          "label": "YTDL_FORMAT",
          "name": "YTDL_FORMAT"
        },
        {
          "default": "%(title)s-%(id)s.%(ext)s",
          "label": "YTDL_OUTPUT_TEMPLATE",
          "name": "YTDL_OUTPUT_TEMPLATE"
        },
        {
          "default": "socks5h://proxy:1080",
          "label": "YTDL_PROXY",
          "name": "YTDL_PROXY"
        },
        {
          "default": true,
          "label": "YTDL_WRITEINFOJSON",
          "name": "YTDL_WRITEINFOJSON",
          "select": [
            {
              "text": "Enabled",
              "value": true,
              "default": true
            },
            {
              "text": "Disabled",
              "value": false
            }
          ]
        },
        {
          "default": false,
          "label": "YTDL_VERBOSE",
          "name": "YTDL_VERBOSE",
          "select": [
            {
              "text": "Disabled",
              "value": false,
              "default": true
            },
            {
              "text": "Enabled",
              "value": true
            }
          ]
        },
        {
          "default": "us-sfo.prod.surfshark.com",
          "label": "PROXY_SERVER",
          "name": "PROXY_SERVER"
        },
        {
          "default": "",
          "label": "PROXY_SERVER_PORT",
          "name": "PROXY_SERVER_PORT"
        },
        {
          "default": "",
          "label": "PROXY_SERVER_PASSWORD",
          "name": "PROXY_SERVER_PASSWORD"
        },
        {
          "default": "1080",
          "label": "PROXY_PORT",
          "name": "PROXY_PORT"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/media-grabber-worker-proxy.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Media Grabber Worker with Proxy",
      "name": "Media Grabber Worker with Proxy",
      "type": 3
    },
    {
      "categories": ["Docker", "Tools", "Other"],
      "description": "Docker image registry",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "registry:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/registry.png",
      "name": "docker-registry",
      "platform": "linux",
      "ports": ["5000:5000/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Docker Registry",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/DockerRegistry",
          "container": "/var/lib/registry"
        }
      ]
    },
    {
      "categories": ["Web", "Tools", "Other"],
      "description": "HTTP/2 web server with automatic HTTPS",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "abiosoft/caddy:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/caddy.png",
      "name": "caddy",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "2015:2015/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Caddy",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Caddy",
          "container": "/root/.caddy"
        }
      ]
    },
    {
      "categories": ["Database", "Tools", "Other"],
      "description": "The most advanced open-source database",
      "env": [
        {
          "name": "POSTGRES_USER",
          "label": "Superuser"
        },
        {
          "name": "POSTGRES_PASSWORD",
          "label": "Superuser password"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "postgres:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/postgres.png",
      "name": "postgresql",
      "platform": "linux",
      "ports": ["5432:5432/tcp"],
      "restart_policy": "unless-stopped",
      "title": "PostgreSQL",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/PostgreSQL",
          "container": "/var/lib/postgresql/data"
        }
      ]
    },
    {
      "categories": ["Database", "Tools", "Other"],
      "description": "Open-source document-oriented database",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "mongo:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/mongo.png",
      "name": "mongo",
      "platform": "linux",
      "ports": ["27017:27017/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Mongo",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Mongo",
          "container": "/data/db"
        }
      ]
    },
    {
      "categories": ["Database", "Tools", "Other"],
      "description": "An open-source, survivable, strongly consistent, scale-out SQL database",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "cockroachdb/cockroach:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cockroachdb.png",
      "name": "cockroachdb",
      "platform": "linux",
      "ports": ["26257:26257/tcp", "8080:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CockroachDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/CockroachDB",
          "container": "/cockroach/cockroach-data"
        }
      ],
      "command": "start --insecure"
    },
    {
      "categories": ["Database", "Tools", "Other"],
      "description": "An open-source distributed SQL database",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "crate:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/cratedb.png",
      "name": "cratedb",
      "platform": "linux",
      "ports": ["4200:4200/tcp", "4300:4300/tcp"],
      "restart_policy": "unless-stopped",
      "title": "CrateDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/CrateDB",
          "container": "/data"
        }
      ]
    },
    {
      "categories": ["Database", "Tools", "Other"],
      "description": "Open-source search and analytics engine",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "elasticsearch:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/elasticsearch.png",
      "name": "elasticsearch",
      "platform": "linux",
      "ports": ["9200:9200/tcp", "9300:9300/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Elasticsearch",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Elasticsearch",
          "container": "/usr/share/elasticsearch/data"
        }
      ]
    },
    {
      "categories": ["Database", "Tools", "Other"],
      "description": "Open-source document-oriented database",
      "env": [
        {
          "description": "Automatically initializes a database with the name of this environment variable.",
          "label": "InfluxDB Database Name",
          "name": "INFLUXDB_DB"
        },
        {
          "default": "true",
          "description": "Enables authentication. Either this must be set or auth-enabled = true must be set within the configuration file for any authentication related options below to work.",
          "label": "InfluxDB HTTP Auth Enabled",
          "name": "INFLUXDB_HTTP_AUTH_ENABLED"
        },
        {
          "description": "The name of the admin user to be created. If this is unset, no admin user is created.",
          "label": "InfluxDB Admin User",
          "name": "INFLUXDB_ADMIN_USER"
        },
        {
          "description": "The password for the admin user configured with INFLUXDB_ADMIN_USER. If this is unset, a random password is generated and printed to standard out.",
          "label": "InfluxDB Admin Password",
          "name": "INFLUXDB_ADMIN_PASSWORD"
        },
        {
          "description": "The name of a user to be created with no privileges. If INFLUXDB_DB is set, this user will be granted read and write permissions for that database.",
          "label": "InfluxDB User",
          "name": "INFLUXDB_USER"
        },
        {
          "description": "The password for the user configured with INFLUXDB_USER. If this is unset, a random password is generated and printed to standard out.",
          "label": "InfluxDB User Password",
          "name": "INFLUXDB_USER_PASSWORD"
        },
        {
          "description": "The name of a user to be created with read privileges on INFLUXDB_DB. If INFLUXDB_DB is not set, this user will have no granted permissions.",
          "label": "InfluxDB Read User",
          "name": "INFLUXDB_READ_USER"
        },
        {
          "description": "The password for the user configured with INFLUXDB_READ_USER. If this is unset, a random password is generated and printed to standard out.",
          "label": "InfluxDB Read User Password",
          "name": "INFLUXDB_READ_USER_PASSWORD"
        },
        {
          "description": "The name of a user to be created with write privileges on INFLUXDB_DB. If INFLUXDB_DB is not set, this user will have no granted permissions.",
          "label": "InfluxDB Write User",
          "name": "INFLUXDB_WRITE_USER"
        },
        {
          "description": "The password for the user configured with INFLUXDB_WRITE_USER. If this is unset, a random password is generated and printed to standard out.",
          "label": "InfluxDB Write User Password",
          "name": "INFLUXDB_WRITE_USER_PASSWORD"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "quay.io/influxdb/influxdb:v2.0.3",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/influxdb.png",
      "name": "influxdb",
      "platform": "linux",
      "ports": ["8086:8086/tcp"],
      "restart_policy": "unless-stopped",
      "title": "InfluxDB",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/InfluxDB",
          "container": "/var/lib/influxdb"
        }
      ]
    },
    {
      "categories": ["Tools", "Other"],
      "description": "The analytics platform for all your metrics",
      "note": "Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "grafana/grafana",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/grafana.png",
      "name": "grafana",
      "platform": "linux",
      "ports": ["3000:3000/tcp"],
      "privileged": true,
      "restart_policy": "unless-stopped",
      "title": "Grafana",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/Grafana",
          "container": "/var/lib/grafana"
        }
      ]
    },
    {
      "categories": ["Tools", "Other"],
      "description": "Open-source end-to-end software development platform",
      "note": "Default username is <b>root</b>. Check the <a href=\"https://docs.gitlab.com/omnibus/docker/README.html#after-starting-a-container\" target=\"_blank\">Gitlab documentation</a> to get started.",
      "env": [
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "gitlab/gitlab-ce:latest",
      "logo": "https://portainer-io-assets.sfo2.digitaloceanspaces.com/logos/gitlab_ce.png",
      "name": "gitlab-ce",
      "platform": "linux",
      "ports": ["80:80/tcp", "443:443/tcp", "22:22/tcp"],
      "restart_policy": "unless-stopped",
      "title": "Gitlab CE",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/GitlabCE/etc",
          "container": "/etc/gitlab"
        },
        {
          "bind": "/portainer/Files/AppData/Config/GitlabCE/log",
          "container": "/var/log/gitlab"
        },
        {
          "bind": "/portainer/Files/AppData/Config/GitlabCE/opt",
          "container": "/var/opt/gitlab"
        }
      ]
    },
    {
      "categories": ["Tools", "Productivity", "Web", "Other"],
      "description": "Strapi CMS.",
      "env": [
        {
          "default": "1337",
          "label": "Strapi Port",
          "name": "STRAPI_PORT"
        },
        {
          "label": "Strapi JWT Secret",
          "name": "STRAPI_JWT_SECRET"
        },
        {
          "default": "27017",
          "label": "MongoDB Port",
          "name": "MONGODB_PORT"
        },
        {
          "default": "strapi",
          "label": "MongoDB Root Username",
          "name": "MONGODB_USER"
        },
        {
          "label": "MongoDB Root Password",
          "name": "MONGODB_PASS"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/strapi.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Strapi",
      "name": "strapi",
      "type": 3
    },
    {
      "categories": ["Tools", "Productivity", "Web", "Other"],
      "description": "Miniflux.",
      "env": [
        {
          "default": "8080",
          "label": "Miniflux Port",
          "name": "MINIFLUX_PORT"
        },
        {
          "default": "admin",
          "label": "Miniflux Username",
          "name": "MINIFLUX_USERNAME"
        },
        {
          "label": "Miniflux Password",
          "name": "MINIFLUX_PASSWORD"
        },
        {
          "label": "Postgres Password",
          "name": "POSTGRES_PASSWORD"
        }
      ],
      "platform": "linux",
      "repository": {
        "stackfile": "stacks/miniflux.yml",
        "url": "https://github.com/OliverCullimore/portainer-templates"
      },
      "title": "Miniflux",
      "name": "miniflux",
      "type": 3
    },
    {
      "categories": ["Web", "Tools", "Productivity", "Other"],
      "description": "MagicMirror² is an open source modular smart mirror platform. With a growing list of installable modules, the MagicMirror² allows you to convert your hallway or bathroom mirror into your personal assistant.",
      "env": [
        {
          "default": "Europe/London",
          "description": "Specify the Timezone",
          "label": "Timezone",
          "name": "TZ"
        }
      ],
      "image": "bastilimbach/docker-magicmirror:latest",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/magicmirror2.png",
      "name": "magicmirror2",
      "platform": "linux",
      "ports": ["80:8080/tcp"],
      "restart_policy": "unless-stopped",
      "title": "MagicMirror²",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/MagicMirror2/config",
          "container": "/opt/magic_mirror/config"
        },
        {
          "bind": "/portainer/Files/AppData/Config/MagicMirror2/modules",
          "container": "/opt/magic_mirror/modules"
        },
        {
          "bind": "/portainer/Files/AppData/Config/MagicMirror2/css/custom.css",
          "container": "/opt/magic_mirror/css/custom.css"
        },
        {
          "bind": "/etc/localtime",
          "container": "/etc/localtime:ro"
        }
      ]
    },
    {
      "categories": ["Tools", "Other"],
      "description": "An app that periodically gets energy data from the geotogether.com API and stores it in an InfluxDB database.",
      "env": [
        {
          "default": "10",
          "description": "Specify the fetch interval for live meter data",
          "label": "Live Meter Data Fetch Interval (seconds)",
          "name": "LIVE_DATA_FETCH_INTERVAL"
        },
        {
          "default": "300",
          "description": "Specify the fetch interval for periodic meter data",
          "label": "Periodic Meter Data Fetch Interval (seconds)",
          "name": "PERIODIC_DATA_FETCH_INTERVAL"
        },
        {
          "description": "Specify the geo Home username",
          "label": "geo User",
          "name": "GEO_USER"
        },
        {
          "description": "Specify the geo Home password",
          "label": "geo Pass",
          "name": "GEO_PASS"
        },
        {
          "description": "Specify the InfluxDB host",
          "label": "InfluxDB Host",
          "name": "INFLUXDB_HOST"
        },
        {
          "default": "8086",
          "description": "Specify the InfluxDB port",
          "label": "InfluxDB Port",
          "name": "INFLUXDB_PORT"
        },
        {
          "description": "Specify the InfluxDB organization",
          "label": "InfluxDB Organization",
          "name": "INFLUXDB_ORG"
        },
        {
          "description": "Specify the InfluxDB Bucket",
          "label": "InfluxDB Bucket",
          "name": "INFLUXDB_BUCKET"
        },
        {
          "description": "Specify the InfluxDB Token",
          "label": "InfluxDB Token",
          "name": "INFLUXDB_TOKEN"
        },
        {
          "default": "/config/config.json",
          "description": "Specify the config filepath",
          "label": "Config Filepath",
          "name": "CONFIG_FILE"
        },
        {
          "default": "1000",
          "label": "PUID",
          "name": "PUID"
        },
        {
          "default": "1000",
          "label": "PGID",
          "name": "PGID"
        }
      ],
      "image": "olivercullimore/geo-energy-data:v2.0.0",
      "logo": "https://raw.githubusercontent.com/OliverCullimore/portainer-templates/master/images/geo-energy-data.png",
      "name": "geo-energy-data",
      "platform": "linux",
      "restart_policy": "unless-stopped",
      "title": "geo Energy Data",
      "type": 1,
      "volumes": [
        {
          "bind": "/portainer/Files/AppData/Config/geoEnergyData",
          "container": "/config"
        }
      ]
    },
    {
      "type": 1,
      "name": "cardigann",
      "title": "Cardigann",
      "description": "Cardigann, a server for adding extra indexers to Sonarr, SickRage and CouchPotato via Torznab and TorrentPotato proxies. Behind the scenes Cardigann logs in and runs searches and then transforms the results into a compatible format.",
      "logo": "https://mediadepot.github.io/templates/img/cardigann.png",
      "image": "linuxserver/cardigann:latest",
      "categories": ["Downloaders:"],
      "ports": ["5060/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/cardigann"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.cardigann.loadbalancer.server.port",
          "value": "5060"
        },
        {
          "name": "traefik.http.routers.cardigann.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.cardigann.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "title": "Calibre Web",
      "name": "calibreweb",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/calibre-web/config<br>mkdir -p /volume1/docker/calibre-web/books</p>",
      "description": "[Calibre-web](https://github.com/janeczku/calibre-web) is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. It is also possible to integrate google drive and edit metadata and your calibre library through the app itself. This software is a fork of library and licensed under the GPL v3 License.",
      "categories": ["Books"],
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/calibre-web-icon.png",
      "image": "linuxserver/calibre-web:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "DOCKER_MODS",
          "label": "DOCKER_MODS",
          "default": "linuxserver/mods:universal-calibre",
          "description": "#optional & **x86-64 only** Adds the ability to perform ebook conversion"
        },
        {
          "name": "OAUTHLIB_RELAX_TOKEN_SCOPE",
          "label": "OAUTHLIB_RELAX_TOKEN_SCOPE",
          "default": "1",
          "description": "Optionally set this to allow Google OAUTH to work"
        }
      ],
      "ports": ["8083/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/calibre-web/config"
        },
        {
          "container": "/books",
          "bind": "/media/storage/ebooks"
        }
      ],
      "restart_policy": "unless-stopped",
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.calibreweb.loadbalancer.server.port",
          "value": "8083"
        },
        {
          "name": "traefik.http.routers.calibreweb.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.calibreweb.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "changedetection",
      "title": "ChangeDetection",
      "description": "changedetection.io - The best and simplest self-hosted open source website change detection monitoring and notification service. An alternative to Visualping, Watchtower",
      "logo": "https://mediadepot.github.io/templates/img/changedetection.jpg",
      "image": "ghcr.io/dgtlmoon/changedetection.io:latest",
      "categories": ["Documents:", "Network:Other", "Tools:"],
      "ports": ["5000/tcp"],
      "volumes": [
        {
          "container": "/datastore",
          "bind": "/opt/mediadepot/apps/changedetection"
        }
      ],
      "env": [],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.changedetection.loadbalancer.server.port",
          "value": "5000"
        },
        {
          "name": "traefik.http.routers.changedetection.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.changedetection.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "cloudcmd",
      "title": "Cloud Commander",
      "description": "Cloud Commander a file manager for the web with console and editor.",
      "logo": "https://mediadepot.github.io/templates/img/cloudcmd-logo.png",
      "image": "coderaiser/cloudcmd",
      "categories": ["Documents:", "Network:Other", "Tools:"],
      "ports": ["8000/tcp"],
      "volumes": [
        {
          "container": "/media/host/opt/mediadepot",
          "bind": "/opt/mediadepot/apps"
        },
        {
          "container": "/media/host/media/storage",
          "bind": "/media/storage"
        },
        {
          "container": "/media/host/media/temp",
          "bind": "/media/temp"
        }
      ],
      "env": [],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.cloudcmd.loadbalancer.server.port",
          "value": "8000"
        },
        {
          "name": "traefik.http.routers.cloudcmd.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.cloudcmd.tls.certresolver",
          "value": "mydnschallenge"
        },
        {
          "name": "traefik.http.routers.cloudcmd.middlewares",
          "value": "authme"
        },
        {
          "name": "traefik.http.middlewares.authme.forwardauth.address",
          "value": "http://authelia:9091/api/verify?rd=https://login.${DEPOT_DOMAIN_NAME}/"
        },
        {
          "name": "traefik.http.middlewares.authme.forwardauth.trustforwardheader",
          "value": "true"
        }
      ]
    },
    {
      "type": 1,
      "name": "couchpotato",
      "title": "Couchpotato",
      "description": "CouchPotato (CP) is an automatic NZB and torrent downloader. You can keep a \"movies I want\"-list and it will search for NZBs/torrents of these movies every X hours. Once a movie is found, it will send it to SABnzbd or download the torrent to a specified directory.",
      "logo": "https://mediadepot.github.io/templates/img/couchpotato-icon.png",
      "image": "linuxserver/couchpotato:latest",
      "categories": ["Downloaders:", "MediaApp:Video"],
      "ports": ["5050/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/couchpotato"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads/movies"
        },
        {
          "container": "/movies",
          "bind": "/media/storage/movies"
        },
        {
          "container": "/blackhole",
          "bind": "/media/temp/blackhole/movies"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.couchpotato.loadbalancer.server.port",
          "value": "5050"
        },
        {
          "name": "traefik.http.routers.couchpotato.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.couchpotato.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "duckdns",
      "title": "DuckDNS",
      "description": "Duckdns is a free service which will point a DNS (sub domains of duckdns.org) to an IP of your choice.",
      "logo": "https://mediadepot.github.io/templates/img/duckdns.png",
      "image": "linuxserver/duckdns:latest",
      "categories": ["Network:DNS", "Tools:"],
      "volumes": [],
      "env": [
        {
          "name": "SUBDOMAINS",
          "label": "SUBDOMAINS"
        },
        {
          "name": "TOKEN",
          "label": "TOKEN"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ]
    },
    {
      "type": 1,
      "name": "duplicati",
      "title": "Duplicati",
      "description": "Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive & S3, Google Drive, box.com, Mega, hubiC and many others.",
      "logo": "https://mediadepot.github.io/templates/img/duplicati-icon.png",
      "image": "linuxserver/duplicati:latest",
      "categories": ["Utility:Backup"],
      "ports": ["8200/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/duplicati"
        },
        {
          "container": "/source",
          "bind": "/opt/mediadepot/apps/"
        }
      ],
      "env": [
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.duplicati.loadbalancer.server.port",
          "value": "8200"
        },
        {
          "name": "traefik.http.routers.duplicati.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.duplicati.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "duplicacy",
      "title": "Duplicacy",
      "description": "Duplicacy backs up your files to many cloud storages with client-side encryption and the highest level of deduplication",
      "logo": "https://mediadepot.github.io/templates/img/duplicacy-icon.png",
      "image": "mediadepot/duplicacy:latest",
      "categories": ["Utility:Backup"],
      "ports": ["3875/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/duplicacy/config"
        },
        {
          "container": "/logs",
          "bind": "/opt/mediadepot/apps/duplicacy/logs"
        },
        {
          "container": "/cache",
          "bind": "/opt/mediadepot/apps/duplicacy/cache"
        },
        {
          "container": "/source/apps",
          "bind": "/opt/mediadepot/apps/"
        },
        {
          "container": "/source/storage",
          "bind": "/media/storage/"
        }
      ],
      "env": [
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.duplicacy.loadbalancer.server.port",
          "value": "3875"
        },
        {
          "name": "traefik.http.routers.duplicacy.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.duplicacy.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "dozzle",
      "title": "Dozzle",
      "description": " Realtime log viewer for docker containers. ",
      "logo": "https://mediadepot.github.io/templates/img/dozzle.png",
      "image": "amir20/dozzle:latest",
      "categories": ["Tools:"],
      "ports": ["8080/tcp"],
      "privileged": true,
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock",
          "readonly": true
        }
      ],
      "command": "--no-analytics",
      "env": [],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.dozzle.loadbalancer.server.port",
          "value": "8080"
        },
        {
          "name": "traefik.http.routers.dozzle.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.dozzle.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "droppy",
      "title": "Droppy",
      "description": "Droppy is a self-hosted file storage server",
      "logo": "https://mediadepot.github.io/templates/img/filebrowser-icon.png",
      "image": "silverwind/droppy:latest",
      "categories": ["Tools:", "Network:Web", "Network:Other", "Tools:"],
      "ports": ["8989/tcp"],
      "volumes": [
        {
          "container": "/files/tvshows",
          "bind": "/media/storage/tvshows"
        },
        {
          "container": "/files/movies",
          "bind": "/media/storage/movies"
        },
        {
          "container": "/files/music",
          "bind": "/media/storage/music"
        },
        {
          "container": "/files/photos",
          "bind": "/media/storage/photos"
        },
        {
          "container": "/files/ebooks",
          "bind": "/media/storage/ebooks"
        },
        {
          "container": "/files/documents",
          "bind": "/media/storage/documents"
        },
        {
          "container": "/files/software",
          "bind": "/media/storage/software"
        },
        {
          "container": "/files/downloads",
          "bind": "/media/storage/downloads"
        },
        {
          "container": "/files/blackhole",
          "bind": "/media/temp/blackhole"
        },
        {
          "container": "/files/processing",
          "bind": "/media/temp/processing"
        },
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/droppy"
        }
      ],
      "env": [
        {
          "name": "GID",
          "label": "GID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "UID",
          "label": "UID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.droppy.loadbalancer.server.port",
          "value": "8989"
        },
        {
          "name": "traefik.http.routers.droppy.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.droppy.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "filebrowser",
      "title": "Filebrowser",
      "description": "filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files.",
      "logo": "https://mediadepot.github.io/templates/img/filebrowser-icon.png",
      "image": "mediadepot/filebrowser:latest",
      "categories": ["Tools:", "Network:Web", "Network:Other", "Tools:"],
      "ports": ["8080/tcp"],
      "command": "-d /config/filebrowser.db -p 8080",
      "volumes": [
        {
          "container": "/srv/tvshows",
          "bind": "/media/storage/tvshows"
        },
        {
          "container": "/srv/movies",
          "bind": "/media/storage/movies"
        },
        {
          "container": "/srv/music",
          "bind": "/media/storage/music"
        },
        {
          "container": "/srv/photos",
          "bind": "/media/storage/photos"
        },
        {
          "container": "/srv/ebooks",
          "bind": "/media/storage/ebooks"
        },
        {
          "container": "/srv/documents",
          "bind": "/media/storage/documents"
        },
        {
          "container": "/srv/software",
          "bind": "/media/storage/software"
        },
        {
          "container": "/srv/downloads",
          "bind": "/media/storage/downloads"
        },
        {
          "container": "/srv/blackhole",
          "bind": "/media/temp/blackhole"
        },
        {
          "container": "/srv/processing",
          "bind": "/media/temp/processing"
        },
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/filebrowser"
        }
      ],
      "env": [
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.filebrowser.loadbalancer.server.port",
          "value": "8080"
        },
        {
          "name": "traefik.http.routers.filebrowser.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.filebrowser.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 3,
      "name": "filerun",
      "title": "Filerun",
      "description": "access your files anywhere through self-hosted secure cloud storage, file backup and sharing for your photos, videos, files and more.",
      "logo": "https://mediadepot.github.io/templates/img/filerun-logo.png",
      "categories": ["Documents:", "Network:Other", "Tools:"],
      "env": [],
      "repository": {
        "url": "https://github.com/mediadepot/templates",
        "stackfile": "stacks/filerun/docker-compose.yml"
      }
    },
    {
      "type": 1,
      "name": "gaps",
      "title": "Gaps",
      "description": "Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.",
      "logo": "https://mediadepot.github.io/templates/img/plex-icon.png",
      "image": "housewrecker/gaps:latest",
      "categories": ["Tools:", "Network:Web", "Network:Other", "Tools:"],
      "ports": ["8484/tcp"],
      "volumes": [],
      "env": [
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.gaps.loadbalancer.server.port",
          "value": "8484"
        },
        {
          "name": "traefik.http.routers.gaps.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.gaps.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "healthchecks",
      "title": "Healthchecks",
      "description": "Healthchecks is a watchdog for your cron jobs. It's a web server that listens for pings from your cron jobs, plus a web interface.",
      "logo": "https://mediadepot.github.io/templates/img/healthchecks-logo.png",
      "image": "linuxserver/healthchecks",
      "categories": ["Tools:", "Network:Web", "Network:Other", "Status:Stable"],
      "ports": ["8000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/healthchecks"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        },
        {
          "name": "SITE_ROOT",
          "label": "SITE_ROOT",
          "default": "healthchecks.depot.lan"
        },
        {
          "name": "SITE_NAME",
          "label": "SITE_NAME",
          "default": "healthchecks"
        },
        {
          "name": "DEFAULT_FROM_EMAIL",
          "label": "DEFAULT_FROM_EMAIL",
          "default": "healthchecks@depot.lan"
        },
        {
          "name": "EMAIL_HOST",
          "label": "EMAIL_HOST",
          "default": ""
        },
        {
          "name": "EMAIL_PORT",
          "label": "EMAIL_PORT",
          "default": ""
        },
        {
          "name": "EMAIL_HOST_USER",
          "label": "EMAIL_HOST_USER",
          "default": ""
        },
        {
          "name": "EMAIL_HOST_PASSWORD",
          "label": "EMAIL_HOST_PASSWORD",
          "default": ""
        },
        {
          "name": "EMAIL_USE_TLS",
          "label": "EMAIL_USE_TLS",
          "default": ""
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.healthchecks.loadbalancer.server.port",
          "value": "8000"
        },
        {
          "name": "traefik.http.routers.healthchecks.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.healthchecks.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "heimdall",
      "title": "Heimdall",
      "description": "Heimdall is a way to organise all those links to your most used web sites and web applications in a simple way.",
      "logo": "https://mediadepot.github.io/templates/img/heimdall-icon.png",
      "image": "linuxserver/heimdall:latest",
      "categories": ["Tools:", "Network:Web", "Network:Other", "Status:Stable"],
      "ports": ["80/tcp", "443/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/heimdall"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.heimdall.loadbalancer.server.port",
          "value": "80"
        },
        {
          "name": "traefik.http.routers.heimdall.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.heimdall.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "jackett",
      "title": "Jackett",
      "description": "Jackett works as a proxy server it translates queries from apps like Sonarr etc into tracker-site-specific http queries and parses the html response sending results back to the requesting software.",
      "logo": "https://mediadepot.github.io/templates/img/jacket-icon.png",
      "image": "linuxserver/jackett:latest",
      "categories": ["Downloaders:", "Tools:"],
      "ports": ["9117/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/jackett"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.jackett.loadbalancer.server.port",
          "value": "9117"
        },
        {
          "name": "traefik.http.routers.jackett.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.jackett.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 3,
      "name": "klaxon",
      "title": "Klaxon",
      "description": "Klaxon is a free, quick to set up and easy to use robot that checks websites regularly so you don't have to.",
      "logo": "https://mediadepot.github.io/templates/img/klaxon-logo.png",
      "categories": ["Documents:", "Network:Other", "Tools:"],
      "env": [
        {
          "name": "SMTP_PROVIDER",
          "label": "SMTP_PROVIDER",
          "default": "SENDGRID"
        },
        {
          "name": "SENDGRID_USERNAME",
          "label": "SENDGRID_USERNAME",
          "default": ""
        },
        {
          "name": "SENDGRID_PASSWORD",
          "label": "SENDGRID_PASSWORD",
          "default": ""
        },
        {
          "name": "ADMIN_EMAILS",
          "label": "ADMIN_EMAILS",
          "default": ""
        }
      ],
      "repository": {
        "url": "https://github.com/mediadepot/templates",
        "stackfile": "stacks/klaxon/docker-compose.yml"
      }
    },
    {
      "type": 1,
      "title": "Librespeed",
      "name": "librespeed",
      "note": "Portainer App Templates by <a href='https://www.technorabilia.com' target='_blank'>Technorabilia</a> based on data provided by <a href='https://www.linuxserver.io' target='_blank'>LinuxServer.io</a>.</p><p>Don't forget to create the volume directories on the host file system.</p><p>mkdir -p /volume1/docker/librespeed/config</p>",
      "description": "[Librespeed](https://github.com/librespeed/speedtest) is a very lightweight Speedtest implemented in Javascript, using XMLHttpRequest and Web Workers. No Flash, No Java, No Websocket, No Bullshit.",
      "platform": "linux",
      "logo": "https://raw.githubusercontent.com/librespeed/speedtest/master/.logo/logo3.png",
      "image": "linuxserver/librespeed:latest",
      "env": [
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "description": "for UserID"
        },
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "description": "for GroupID"
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles",
          "description": "Specify a timezone to use for example Europe/Amsterdam"
        },
        {
          "name": "PASSWORD",
          "label": "PASSWORD",
          "default": "PASSWORD",
          "description": "Set the password for the results database."
        },
        {
          "name": "CUSTOM_RESULTS",
          "label": "CUSTOM_RESULTS",
          "default": "false",
          "description": "(optional) set to `true` to enable custom results page in `/config/www/results/index.php`."
        },
        {
          "name": "DB_TYPE",
          "label": "DB_TYPE",
          "default": "sqlite",
          "description": "Defaults to `sqlite`, can also be set to `mysql` or `postgresql`."
        },
        {
          "name": "DB_NAME",
          "label": "DB_NAME",
          "default": "DB_NAME",
          "description": "Database name. Required for mysql and pgsql."
        },
        {
          "name": "DB_HOSTNAME",
          "label": "DB_HOSTNAME",
          "default": "DB_HOSTNAME",
          "description": "Database address. Required for mysql and pgsql."
        },
        {
          "name": "DB_USERNAME",
          "label": "DB_USERNAME",
          "default": "DB_USERNAME",
          "description": "Database username. Required for mysql and pgsql."
        },
        {
          "name": "DB_PASSWORD",
          "label": "DB_PASSWORD",
          "default": "DB_PASSWORD",
          "description": "Database password. Required for mysql and pgsql."
        },
        {
          "name": "DB_PORT",
          "label": "DB_PORT",
          "default": "DB_PORT",
          "description": "Database port. Required for mysql."
        }
      ],
      "ports": ["80/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/librespeed/config"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.librespeed.loadbalancer.server.port",
          "value": "80"
        },
        {
          "name": "traefik.http.routers.librespeed.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.librespeed.tls.certresolver",
          "value": "mydnschallenge"
        }
      ],
      "restart_policy": "unless-stopped"
    },
    {
      "type": 1,
      "name": "logzio-logs-collector",
      "title": "Logzio Logs Collector",
      "description": "Docker container that uses Filebeat to collect logs from other Docker containers and forward those logs to your Logz.io account.",
      "logo": "https://mediadepot.github.io/templates/img/logzio-icon.png",
      "image": "logzio/docker-collector-logs",
      "categories": ["Tools:"],
      "ports": [],
      "privileged": true,
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock",
          "readonly": true
        },
        {
          "container": "/var/lib/docker/containers",
          "bind": "/var/lib/docker/containers"
        }
      ],
      "env": [
        {
          "name": "LOGZIO_TOKEN",
          "label": "LOGZIO_TOKEN",
          "default": "REPLACE-LOGZIO-TOKEN-HERE"
        },
        {
          "name": "LOGZIO_URL",
          "label": "LOGZIO_URL",
          "default": "listener.logz.io:5015"
        }
      ],
      "labels": []
    },
    {
      "type": 1,
      "name": "logzio-metrics-collector",
      "title": "Logzio Metrics Collector",
      "description": "Docker Metrics Collector is a container that runs Metricbeat with the modules you enable at runtime.",
      "logo": "https://mediadepot.github.io/templates/img/logzio-icon.png",
      "image": "logzio/docker-collector-metrics",
      "categories": ["Tools:"],
      "ports": [],
      "privileged": true,
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock",
          "readonly": true
        },
        {
          "container": "/hostfs/sys/fs/cgroup",
          "bind": "/sys/fs/cgroup",
          "readonly": true
        },
        {
          "container": "/hostfs/proc",
          "bind": "/proc",
          "readonly": true
        },
        {
          "container": "/hostfs",
          "bind": "/",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "LOGZIO_TOKEN",
          "label": "LOGZIO_TOKEN",
          "default": "REPLACE-LOGZIO-TOKEN-HERE"
        },
        {
          "name": "LOGZIO_MODULES",
          "label": "LOGZIO_MODULES",
          "default": "system,docker"
        }
      ],
      "labels": []
    },
    {
      "type": 3,
      "name": "mayan",
      "title": "Mayan EDMS",
      "description": "Mayan EDMS is an electronic vault for your documents.",
      "logo": "https://mediadepot.github.io/templates/img/mayan-logo.png",
      "categories": ["Documents:", "Tools:"],
      "repository": {
        "url": "https://github.com/mediadepot/templates",
        "stackfile": "stacks/mayan/docker-compose.yml"
      }
    },
    {
      "type": 1,
      "name": "netbootxyz",
      "title": "Netboot.xyz",
      "description": "Netbootxyz is a way to PXE boot various operating system installers or utilities from one place within the BIOS without the need of having to go retrieve the media to run the tool",
      "logo": "https://mediadepot.github.io/templates/img/netbootxyz.jpg",
      "image": "linuxserver/netbootxyz:latest",
      "categories": ["Downloaders:", "Network:Other", "Tools:"],
      "ports": ["3000/tcp", "69/udp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/netbootxyz"
        },
        {
          "container": "/assets",
          "bind": "/media/storage/software/netbootxyz"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.netbootxyz.loadbalancer.server.port",
          "value": "3000"
        },
        {
          "name": "traefik.http.routers.netbootxyz.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.netbootxyz.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "ombi",
      "title": "Ombi",
      "description": "Ombi allows you to host your own Plex Request and user management system. If you are sharing your Plex server with other users, allow them to request new content using an easy to manage interface",
      "logo": "https://mediadepot.github.io/templates/img/ombi.png",
      "image": "linuxserver/ombi:latest",
      "categories": [
        "Downloaders:",
        "Network:Other",
        "MediaApp:Video",
        "Tools:"
      ],
      "ports": ["3579/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/ombi"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.ombi.loadbalancer.server.port",
          "value": "3579"
        },
        {
          "name": "traefik.http.routers.ombi.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.ombi.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "plex",
      "title": "Plex Media Server",
      "description": "Plex organizes your video, music, and photo collections and streams them to all of your screens.",
      "logo": "https://mediadepot.github.io/templates/img/plex-icon.png",
      "image": "linuxserver/plex:latest",
      "network": "host",
      "categories": [
        "MediaServer:Video",
        "MediaServer:Music",
        "MediaServer:Photos"
      ],
      "privileged": true,
      "ports": [],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/plex"
        },
        {
          "container": "/data/tvshows",
          "bind": "/media/storage/tvshows"
        },
        {
          "container": "/data/movies",
          "bind": "/media/storage/movies"
        },
        {
          "container": "/data/music",
          "bind": "/media/storage/music"
        },
        {
          "container": "/transcode"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        },
        {
          "name": "VERSION",
          "label": "VERSION",
          "default": "latest"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.plex.loadbalancer.server.port",
          "value": "32400"
        }
      ]
    },
    {
      "type": 1,
      "name": "plexrequests",
      "title": "Plex Requests",
      "description": "Simple automated way for users to request new content for Plex.",
      "logo": "https://mediadepot.github.io/templates/img/plex-requests-logo.jpeg",
      "image": "linuxserver/plexrequests:latest",
      "categories": [
        "Downloaders:",
        "Network:Other",
        "MediaApp:Video",
        "Tools:"
      ],
      "ports": ["3000/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/plexrequests"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.cardigann.plexrequests.server.port",
          "value": "3000"
        },
        {
          "name": "traefik.http.routers.cardigann.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.cardigann.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "prowlarr",
      "title": "Prowlarr",
      "description": "Prowlarr is a indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports both Torrent Trackers and Usenet Indexers. ",
      "logo": "https://mediadepot.github.io/templates/img/prowlarr-banner.png",
      "image": "ghcr.io/linuxserver/prowlarr:develop",
      "categories": ["Downloaders:", "Tools:"],
      "ports": ["9696/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/prowlarr"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles",
          "preset": true
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.prowlarr.loadbalancer.server.port",
          "value": "9696"
        },
        {
          "name": "traefik.http.routers.prowlarr.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.prowlarr.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "pureftp",
      "title": "Pure-FTP Server",
      "description": "Pure-FTPd is a free (BSD), secure, production-quality and standard-conformant FTP server. ",
      "logo": "https://mediadepot.github.io/templates/img/pureftpd-icon.jpg",
      "image": "stilliard/pure-ftpd:hardened",
      "network": "host",
      "categories": ["Network:Other", "Utilities:"],
      "ports": [
        "21/tcp",
        "30000/tcp",
        "30001/tcp",
        "30002/tcp",
        "30003/tcp",
        "30004/tcp",
        "30005/tcp",
        "30006/tcp",
        "30007/tcp",
        "30008/tcp",
        "30009/tcp"
      ],
      "volumes": [
        {
          "container": "/etc/pure-ftpd/passwd",
          "bind": "/opt/mediadepot/apps/pureftp"
        },
        {
          "container": "/data/tvshows",
          "bind": "/media/storage/tvshows"
        },
        {
          "container": "/data/movies",
          "bind": "/media/storage/movies"
        },
        {
          "container": "/data/music",
          "bind": "/media/storage/music"
        },
        {
          "container": "/data/ebooks",
          "bind": "/media/storage/ebooks"
        },
        {
          "container": "/data/photos",
          "bind": "/media/storage/photos"
        },
        {
          "container": "/data/documents",
          "bind": "/media/storage/documents"
        },
        {
          "container": "/data/downloads",
          "bind": "/media/storage/downloads"
        },
        {
          "container": "/data/software",
          "bind": "/media/storage/software"
        },
        {
          "container": "/data/blackhole",
          "bind": "/media/temp/blackhole"
        },
        {
          "container": "/data/processing",
          "bind": "/media/temp/processing"
        }
      ],
      "env": [
        {
          "name": "FTP_USER_NAME",
          "label": "FTP_USER_NAME",
          "default": "depot",
          "preset": true
        },
        {
          "name": "FTP_USER_PASS",
          "label": "FTP_USER_PASS",
          "default": "badpass"
        },
        {
          "name": "FTP_USER_HOME",
          "label": "FTP_USER_HOME",
          "default": "/data",
          "preset": true
        },
        {
          "name": "FTP_USER_GID",
          "label": "FTP_USER_GID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "FTP_USER_UID",
          "label": "FTP_USER_UID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        },
        {
          "name": "PUBLICHOST",
          "label": "PUBLICHOST",
          "default": "localhost"
        }
      ],
      "labels": []
    },
    {
      "type": 1,
      "name": "radarr",
      "title": "Radarr",
      "description": "Radarr - A fork of Sonarr to work with movies la Couchpotato.",
      "logo": "https://mediadepot.github.io/templates/img/radarr.png",
      "image": "linuxserver/radarr:latest",
      "categories": ["Downloaders:", "MediaApp:Video"],
      "ports": ["7878/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/radarr"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads/movies"
        },
        {
          "container": "/movies",
          "bind": "/media/storage/movies"
        },
        {
          "container": "/blackhole",
          "bind": "/media/temp/blackhole/movies"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.radarr.loadbalancer.server.port",
          "value": "7878"
        },
        {
          "name": "traefik.http.routers.radarr.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.radarr.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "readarr",
      "title": "Readarr",
      "description": "Readarr - Book Manager and Automation (Sonarr for Ebooks)",
      "logo": "https://mediadepot.github.io/templates/img/readarr-logo.png",
      "image": "ghcr.io/linuxserver/readarr:nightly",
      "categories": ["Downloaders:", "MediaApp:Books"],
      "ports": ["8787/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/readarr"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads/ebooks"
        },
        {
          "container": "/books",
          "bind": "/media/storage/ebooks"
        },
        {
          "container": "/blackhole",
          "bind": "/media/temp/blackhole/ebooks"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.readarr.loadbalancer.server.port",
          "value": "8787"
        },
        {
          "name": "traefik.http.routers.readarr.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.readarr.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "rclone",
      "title": "Rclone Config Backup",
      "description": "Rclone is a command line program to sync files and directories to and from cloud providers (Dropbox, GDrive, Box, etc)",
      "logo": "https://mediadepot.github.io/templates/img/rclone.png",
      "image": "mediadepot/rclone:latest",
      "categories": ["Backup:", "Cloud:", "Network:Other", "Tools:"],
      "ports": [],
      "volumes": [
        {
          "container": "/srv/rclone/config",
          "bind": "/opt/mediadepot/apps/rclone"
        },
        {
          "container": "/mnt/data",
          "bind": "/opt/mediadepot/apps"
        }
      ]
    },
    {
      "type": 1,
      "name": "resilio",
      "title": "Resilio Sync",
      "description": "Resilio Sync (formerly BitTorrent Sync) uses the BitTorrent protocol to sync files and folders between all of your devices. There are both free and paid versions, this container supports both.",
      "logo": "https://mediadepot.github.io/templates/img/resilio.png",
      "image": "linuxserver/resilio-sync:latest",
      "categories": ["Backup:", "Cloud:", "Network:Other", "Tools:"],
      "ports": ["8888/tcp", "55555/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/resilio"
        },
        {
          "container": "/sync",
          "bind": "/media/storage"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.resilio.loadbalancer.server.port",
          "value": "8888"
        },
        {
          "name": "traefik.http.routers.resilio.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.resilio.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "rutorrent",
      "title": "ruTorrent",
      "description": "ruTorrent is a quick and efficient BitTorrent client",
      "logo": "https://mediadepot.github.io/templates/img/rtorrent-icon.png",
      "image": "mediadepot/rutorrent",
      "categories": ["Downloaders:", "Network:Other", "Tools:"],
      "ports": ["80/tcp", "51413/tcp", "6881/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/rutorrent"
        },
        {
          "container": "/processing",
          "bind": "/media/temp/processing"
        },
        {
          "container": "/blackhole",
          "bind": "/media/temp/blackhole"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.rutorrent.loadbalancer.server.port",
          "value": "80"
        },
        {
          "name": "traefik.http.routers.rutorrent.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.rutorrent.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "scrutiny",
      "title": "Scrutiny",
      "description": "WebUI for smartd S.M.A.R.T monitoring",
      "logo": "https://mediadepot.github.io/templates/img/scrutiny.png",
      "image": "analogj/scrutiny:latest",
      "categories": ["Monitoring:"],
      "ports": ["8080/tcp"],
      "volumes": [
        {
          "container": "/scrutiny/config/",
          "bind": "/opt/mediadepot/apps/scrutiny"
        },
        {
          "container": "/run/udev",
          "bind": "/run/udev",
          "readonly": true
        }
      ],
      "env": [],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.scrutiny.loadbalancer.server.port",
          "value": "8080"
        },
        {
          "name": "traefik.http.routers.scrutiny.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.scrutiny.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "sickrage",
      "title": "SickRage",
      "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
      "logo": "https://mediadepot.github.io/templates/img/sickrage-icon.png",
      "image": "linuxserver/sickrage:latest",
      "categories": ["Downloaders:", "MediaApp:Video"],
      "ports": ["8081/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/sickrage"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads/tvshows"
        },
        {
          "container": "/tv",
          "bind": "/media/storage/tvshows"
        },
        {
          "container": "/blackhole",
          "bind": "/media/temp/blackhole/tvshows"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.sickrage.loadbalancer.server.port",
          "value": "8081"
        },
        {
          "name": "traefik.http.routers.sickrage.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.sickrage.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "sonarr",
      "title": "Sonarr",
      "description": "Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
      "logo": "https://mediadepot.github.io/templates/img/sonarr-icon.png",
      "image": "linuxserver/sonarr:latest",
      "categories": ["Downloaders:", "MediaApp:Video"],
      "ports": ["8989/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/sonarr"
        },
        {
          "container": "/downloads",
          "bind": "/media/storage/downloads/tvshows"
        },
        {
          "container": "/tv",
          "bind": "/media/storage/tvshows"
        },
        {
          "container": "/blackhole",
          "bind": "/media/temp/blackhole/tvshows"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.sonarr.loadbalancer.server.port",
          "value": "8989"
        },
        {
          "name": "traefik.http.routers.sonarr.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.sonarr.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "syncserver",
      "title": "Mozilla Syncserver",
      "description": "Run-Your-Own Firefox Sync Server",
      "logo": "https://mediadepot.github.io/templates/img/firefox-logo.png",
      "image": "mozilla/syncserver:latest",
      "categories": ["Tools:"],
      "ports": ["5000/tcp"],
      "volumes": [
        {
          "container": "/data",
          "bind": "/opt/mediadepot/apps/syncserver"
        }
      ],
      "env": [
        {
          "name": "SYNCSERVER_PUBLIC_URL",
          "label": "SYNCSERVER_PUBLIC_URL",
          "default": "https://syncserver.depot.lan"
        },
        {
          "name": "SYNCSERVER_SECRET_FILE",
          "label": "SYNCSERVER_SECRET_FILE",
          "default": "/data/secret_key"
        },
        {
          "name": "SYNCSERVER_SQLURI",
          "label": "SYNCSERVER_SQLURI",
          "default": "sqlite:////data/syncserver.db"
        },
        {
          "name": "SYNCSERVER_BATCH_UPLOAD_ENABLED",
          "label": "SYNCSERVER_BATCH_UPLOAD_ENABLED",
          "default": "true"
        },
        {
          "name": "SYNCSERVER_FORCE_WSGI_ENVIRON",
          "label": "SYNCSERVER_FORCE_WSGI_ENVIRON",
          "default": "false"
        },
        {
          "name": "PORT",
          "label": "PORT",
          "default": "5000"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.syncservere.loadbalancer.server.port",
          "value": "5000"
        },
        {
          "name": "traefik.http.routers.syncserver.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.syncserver.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "tautulli",
      "title": "Tautulli",
      "description": "A Python based monitoring and tracking tool for Plex Media Server.",
      "logo": "https://mediadepot.github.io/templates/img/tautulli-icon.png",
      "image": "linuxserver/tautulli:latest",
      "categories": ["MediaServer:Other", "Tools:"],
      "ports": ["8181/tcp"],
      "volumes": [
        {
          "container": "/config",
          "bind": "/opt/mediadepot/apps/tautulli"
        }
      ],
      "env": [
        {
          "name": "PGID",
          "label": "PGID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "PUID",
          "label": "PUID",
          "default": "15000",
          "preset": true
        },
        {
          "name": "TZ",
          "label": "TZ",
          "default": "America/Los_Angeles"
        }
      ],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.tautulli.loadbalancer.server.port",
          "value": "8181"
        },
        {
          "name": "traefik.http.routers.tautulli.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.tautulli.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "urlwatch",
      "title": "UrlWatch",
      "description": "A tool for monitoring webpages for updates",
      "logo": "https://mediadepot.github.io/templates/img/urlwatch.png",
      "image": "mediadepot/urlwatch:master",
      "categories": ["Tools:"],
      "ports": ["8081/tcp"],
      "volumes": [
        {
          "container": "/srv/urlwatch/config",
          "bind": "/opt/mediadepot/apps/urlwatch"
        },
        {
          "container": "/etc/localtime",
          "bind": "/etc/localtime",
          "readonly": true
        }
      ],
      "env": [],
      "labels": [
        {
          "name": "traefik.enable",
          "value": "true"
        },
        {
          "name": "traefik.http.services.urlwatch.loadbalancer.server.port",
          "value": "8081"
        },
        {
          "name": "traefik.http.routers.urlwatch.entrypoints",
          "value": "websecure"
        },
        {
          "name": "traefik.http.routers.urlwatch.tls.certresolver",
          "value": "mydnschallenge"
        }
      ]
    },
    {
      "type": 1,
      "name": "vsftpd",
      "title": "vsftpd FTP Server",
      "description": "Secure, fast FTP server for UNIX-like systems",
      "logo": "https://mediadepot.github.io/templates/img/pureftpd-icon.jpg",
      "image": "delfer/alpine-ftp-server",
      "network": "host",
      "categories": ["Network:Other", "Utilities:"],
      "ports": [
        "21/tcp",
        "21000/tcp",
        "21001/tcp",
        "21002/tcp",
        "21003/tcp",
        "21004/tcp",
        "21005/tcp",
        "21006/tcp",
        "21007/tcp",
        "21008/tcp",
        "21009/tcp",
        "21010/tcp"
      ],
      "volumes": [
        {
          "container": "/home/depot/tvshows",
          "bind": "/media/storage/tvshows"
        },
        {
          "container": "/home/depot/movies",
          "bind": "/media/storage/movies"
        },
        {
          "container": "/home/depot/music",
          "bind": "/media/storage/music"
        },
        {
          "container": "/home/depot/ebooks",
          "bind": "/media/storage/ebooks"
        },
        {
          "container": "/home/depot/photos",
          "bind": "/media/storage/photos"
        },
        {
          "container": "/home/depot/documents",
          "bind": "/media/storage/documents"
        },
        {
          "container": "/home/depot/downloads",
          "bind": "/media/storage/downloads"
        },
        {
          "container": "/home/depot/software",
          "bind": "/media/storage/software"
        },
        {
          "container": "/home/depot/blackhole",
          "bind": "/media/temp/blackhole"
        },
        {
          "container": "/home/depot/processing",
          "bind": "/media/temp/processing"
        }
      ],
      "env": [
        {
          "name": "ADDRESS",
          "label": "ADDRESS"
        },
        {
          "name": "USERS",
          "label": "USERS",
          "default": "depot|badpass|/home/depot|15000"
        }
      ],
      "labels": []
    },
    {
      "type": 1,
      "name": "watchtower",
      "title": "Watchtower",
      "description": "Automatically update running Docker containers",
      "logo": "https://mediadepot.github.io/templates/img/watchtower-logo.png",
      "image": "containrrr/watchtower:latest",
      "command": "--cleanup --label-enable",
      "categories": ["Tools:"],
      "volumes": [
        {
          "container": "/var/run/docker.sock",
          "bind": "/var/run/docker.sock"
        }
      ],
      "env": []
    },
    {
  "type": 3,
  "title": "AzuraCast",
  "description": "AzuraCast Web Radio Suite Docker installation.",
  "administrator_only": false,
  "image": "",
  "repository": {
    "url": "https://github.com/AzuraCast/AzuraCast",
    "stackfile": "docker-compose.sample.yml"
  },
  "logo": "https://www.azuracast.com/img/logo.png",
  "env": [
    {
      "name": "AZURACAST_HTTP_PORT",
      "label": "HTTP Port",
      "description": "The port that will receive non-secure HTTP traffic.",
      "default": "80"
    },
    {
      "name": "AZURACAST_HTTPS_PORT",
      "label": "HTTPS Port",
      "description": "The port that will receive secure HTTPS traffic.",
      "default": "443"
    },
    {
      "name": "LETSENCRYPT_HOST",
      "label": "LetsEncrypt Host",
      "description": "The optional domain name to use if wanting to auto-register with LetsEncrypt."
    },
    {
      "name": "LETSENCRYPT_EMAIL",
      "label": "LetsEncrypt E-mail Address",
      "description": "The optional e-mail address to receive updates regarding LetsEncrypt certificates."
    },
    {
      "name": "AZURACAST_VERSION",
      "label": "AzuraCast Release Channel",
      "description": "Which release channel of AzuraCast to update to.",
      "preset": true,
      "select": [
        {
          "text": "Rolling Release (Latest Updates)",
          "value": "latest",
          "default": true
        },
        {
          "text": "Stable Release",
          "value": "stable",
          "default": false
        }
      ]
    }
  ],
  "note": "AzuraCast is the free and open-source software suite that makes web radio easy. This is the standard Docker installation for AzuraCast, including all necessary components.",
  "platform": "linux",
  "categories": [
    "streaming"
  ]
}
  ]
}
