├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .yo-rc.json ├── LICENSE ├── README.md ├── __tests__ └── app.js ├── generators └── app │ ├── index.js │ └── templates │ ├── LICENSE │ ├── README.md │ ├── check_process │ ├── conf │ ├── app │ │ └── .gitkeep │ └── nginx.conf │ ├── manifest.json │ └── scripts │ ├── _common.sh │ ├── _dockertest.sh │ ├── backup │ ├── docker │ ├── _specificvariablesapp.sh │ ├── docker-compose.yml │ ├── load.sh │ ├── rm.sh │ ├── run.sh │ └── save.sh │ ├── install │ ├── remove │ ├── restore │ └── upgrade └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | **/templates 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | cache 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/__tests__/app.js -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/README.md -------------------------------------------------------------------------------- /generators/app/templates/check_process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/check_process -------------------------------------------------------------------------------- /generators/app/templates/conf/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/conf/nginx.conf -------------------------------------------------------------------------------- /generators/app/templates/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/manifest.json -------------------------------------------------------------------------------- /generators/app/templates/scripts/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/_common.sh -------------------------------------------------------------------------------- /generators/app/templates/scripts/_dockertest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/_dockertest.sh -------------------------------------------------------------------------------- /generators/app/templates/scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/backup -------------------------------------------------------------------------------- /generators/app/templates/scripts/docker/_specificvariablesapp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #example : 4 | # 5 | #. _common.sh 6 | # 7 | -------------------------------------------------------------------------------- /generators/app/templates/scripts/docker/docker-compose.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/scripts/docker/load.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | -------------------------------------------------------------------------------- /generators/app/templates/scripts/docker/rm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # example : 4 | # 5 | #docker rm -f $app 1>&2 6 | #echo $? 7 | -------------------------------------------------------------------------------- /generators/app/templates/scripts/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/docker/run.sh -------------------------------------------------------------------------------- /generators/app/templates/scripts/docker/save.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | -------------------------------------------------------------------------------- /generators/app/templates/scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/install -------------------------------------------------------------------------------- /generators/app/templates/scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/remove -------------------------------------------------------------------------------- /generators/app/templates/scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/restore -------------------------------------------------------------------------------- /generators/app/templates/scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/generators/app/templates/scripts/upgrade -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymhce/generator-dockerapp-yunohost/HEAD/package.json --------------------------------------------------------------------------------