├── .gitignore ├── Dockerfile ├── README.md ├── app.sh └── example ├── Makefile ├── gitlab ├── build │ └── gitlab_8.16.6_x86_64.qpkg ├── icons │ └── .gitkeep ├── package_routines ├── qpkg.cfg └── shared │ ├── docker-compose.yml │ ├── gitlab.apache.conf.tpl │ ├── gitlab.sh │ └── wizard │ ├── description │ ├── chs.md │ ├── cht.md │ ├── cze.md │ ├── dan.md │ ├── dut.md │ ├── eng.md │ ├── fin.md │ ├── fre.md │ ├── ger.md │ ├── grk.md │ ├── hun.md │ ├── ita.md │ ├── jpn.md │ ├── kor.md │ ├── nor.md │ ├── pol.md │ ├── por.md │ ├── rom.md │ ├── rus.md │ ├── spa.md │ ├── swe.md │ ├── tha.md │ └── tur.md │ ├── i18n │ ├── cht.json │ └── eng.json │ └── install.json ├── joomla ├── icons │ └── .gitkeep ├── package_routines ├── qpkg.cfg └── shared │ ├── docker-compose.yml │ ├── joomla.apache.conf │ └── joomla.sh ├── nginx ├── build │ └── nginx_1.11_x86_64.qpkg ├── icons │ └── .gitkeep ├── package_routines ├── qpkg.cfg └── shared │ ├── docker-compose.yml │ ├── nginx.apache.conf.tpl │ ├── nginx.sh │ └── wizard │ ├── description │ ├── cht.md │ └── eng.md │ ├── i18n │ ├── cht.json │ └── eng.json │ └── install.json └── redmine ├── icons └── .gitkeep ├── package_routines ├── qpkg.cfg └── shared ├── docker-compose.yml ├── redmine.apache.conf └── redmine.sh /.gitignore: -------------------------------------------------------------------------------- 1 | **/build/ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/README.md -------------------------------------------------------------------------------- /app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/app.sh -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/gitlab/build/gitlab_8.16.6_x86_64.qpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/build/gitlab_8.16.6_x86_64.qpkg -------------------------------------------------------------------------------- /example/gitlab/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/gitlab/package_routines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/package_routines -------------------------------------------------------------------------------- /example/gitlab/qpkg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/qpkg.cfg -------------------------------------------------------------------------------- /example/gitlab/shared/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/docker-compose.yml -------------------------------------------------------------------------------- /example/gitlab/shared/gitlab.apache.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/gitlab.apache.conf.tpl -------------------------------------------------------------------------------- /example/gitlab/shared/gitlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/gitlab.sh -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/chs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/chs.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/cht.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/cht.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/cze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/cze.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/dan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/dan.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/dut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/dut.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/eng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/eng.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/fin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/fin.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/fre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/fre.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/ger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/ger.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/grk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/grk.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/hun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/hun.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/ita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/ita.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/jpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/jpn.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/kor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/kor.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/nor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/nor.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/pol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/pol.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/por.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/por.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/rom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/rom.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/rus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/rus.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/spa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/spa.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/swe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/swe.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/tha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/tha.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/description/tur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/description/tur.md -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/i18n/cht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/i18n/cht.json -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/i18n/eng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/i18n/eng.json -------------------------------------------------------------------------------- /example/gitlab/shared/wizard/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/gitlab/shared/wizard/install.json -------------------------------------------------------------------------------- /example/joomla/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/joomla/package_routines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/joomla/package_routines -------------------------------------------------------------------------------- /example/joomla/qpkg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/joomla/qpkg.cfg -------------------------------------------------------------------------------- /example/joomla/shared/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/joomla/shared/docker-compose.yml -------------------------------------------------------------------------------- /example/joomla/shared/joomla.apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/joomla/shared/joomla.apache.conf -------------------------------------------------------------------------------- /example/joomla/shared/joomla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/joomla/shared/joomla.sh -------------------------------------------------------------------------------- /example/nginx/build/nginx_1.11_x86_64.qpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/build/nginx_1.11_x86_64.qpkg -------------------------------------------------------------------------------- /example/nginx/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/nginx/package_routines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/package_routines -------------------------------------------------------------------------------- /example/nginx/qpkg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/qpkg.cfg -------------------------------------------------------------------------------- /example/nginx/shared/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/docker-compose.yml -------------------------------------------------------------------------------- /example/nginx/shared/nginx.apache.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/nginx.apache.conf.tpl -------------------------------------------------------------------------------- /example/nginx/shared/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/nginx.sh -------------------------------------------------------------------------------- /example/nginx/shared/wizard/description/cht.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/wizard/description/cht.md -------------------------------------------------------------------------------- /example/nginx/shared/wizard/description/eng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/wizard/description/eng.md -------------------------------------------------------------------------------- /example/nginx/shared/wizard/i18n/cht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/wizard/i18n/cht.json -------------------------------------------------------------------------------- /example/nginx/shared/wizard/i18n/eng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/wizard/i18n/eng.json -------------------------------------------------------------------------------- /example/nginx/shared/wizard/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/nginx/shared/wizard/install.json -------------------------------------------------------------------------------- /example/redmine/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/redmine/package_routines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/redmine/package_routines -------------------------------------------------------------------------------- /example/redmine/qpkg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/redmine/qpkg.cfg -------------------------------------------------------------------------------- /example/redmine/shared/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/redmine/shared/docker-compose.yml -------------------------------------------------------------------------------- /example/redmine/shared/redmine.apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/redmine/shared/redmine.apache.conf -------------------------------------------------------------------------------- /example/redmine/shared/redmine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/docker-qdk2/HEAD/example/redmine/shared/redmine.sh --------------------------------------------------------------------------------