├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── commands ├── docker-args ├── docker-args-deploy ├── docker-args-run ├── lib ├── helpers ├── procfile-to-supervisord └── start ├── plugin.toml ├── post-release └── post-release-buildpack /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Procfile 3 | SCALE 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/README.md -------------------------------------------------------------------------------- /commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/commands -------------------------------------------------------------------------------- /docker-args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/docker-args -------------------------------------------------------------------------------- /docker-args-deploy: -------------------------------------------------------------------------------- 1 | docker-args -------------------------------------------------------------------------------- /docker-args-run: -------------------------------------------------------------------------------- 1 | docker-args -------------------------------------------------------------------------------- /lib/helpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/lib/helpers -------------------------------------------------------------------------------- /lib/procfile-to-supervisord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/lib/procfile-to-supervisord -------------------------------------------------------------------------------- /lib/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/lib/start -------------------------------------------------------------------------------- /plugin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/plugin.toml -------------------------------------------------------------------------------- /post-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sehrope/dokku-logging-supervisord/HEAD/post-release -------------------------------------------------------------------------------- /post-release-buildpack: -------------------------------------------------------------------------------- 1 | post-release --------------------------------------------------------------------------------