├── .npmignore ├── LICENSE ├── README.md ├── assets └── docmac.png ├── bin └── docmac.sh ├── doc └── cmds.md ├── examples └── nodejs-app │ ├── Dockerfile │ ├── index.js │ └── package.json └── package.json /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | doc 3 | assets 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/README.md -------------------------------------------------------------------------------- /assets/docmac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/assets/docmac.png -------------------------------------------------------------------------------- /bin/docmac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/bin/docmac.sh -------------------------------------------------------------------------------- /doc/cmds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/doc/cmds.md -------------------------------------------------------------------------------- /examples/nodejs-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/examples/nodejs-app/Dockerfile -------------------------------------------------------------------------------- /examples/nodejs-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/examples/nodejs-app/index.js -------------------------------------------------------------------------------- /examples/nodejs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/examples/nodejs-app/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/docmac/HEAD/package.json --------------------------------------------------------------------------------