├── .dockerignore ├── .gitignore ├── ARCHIVE ├── rolling-update-demo │ ├── README.md │ ├── configs │ │ └── traefik.toml │ ├── runctop.sh │ ├── rundown.sh │ ├── runup-restore.sh │ ├── runup-update.sh │ ├── runup.sh │ ├── toolportainer.yml │ ├── toolproxy.yml │ ├── toolweb-update.yml │ ├── toolweb.yml │ └── www │ │ ├── home │ │ └── srv │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── main.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ ├── skel.min.js │ │ │ │ └── util.js │ │ │ └── sass │ │ │ │ ├── base │ │ │ │ ├── _page.scss │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ ├── _banner.scss │ │ │ │ ├── _box.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _gallery.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _items.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _spotlight.scss │ │ │ │ ├── _table.scss │ │ │ │ └── _wrapper.scss │ │ │ │ ├── layout │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _skel.scss │ │ │ │ └── _vars.scss │ │ │ │ └── main.scss │ │ │ ├── images │ │ │ └── banner-home.jpg │ │ │ └── index.html │ │ ├── who1 │ │ └── srv │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── main.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ ├── skel.min.js │ │ │ │ └── util.js │ │ │ └── sass │ │ │ │ ├── base │ │ │ │ ├── _page.scss │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ ├── _banner.scss │ │ │ │ ├── _box.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _gallery.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _items.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _spotlight.scss │ │ │ │ ├── _table.scss │ │ │ │ └── _wrapper.scss │ │ │ │ ├── layout │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _skel.scss │ │ │ │ └── _vars.scss │ │ │ │ └── main.scss │ │ │ ├── images │ │ │ └── banner-who1.jpg │ │ │ └── index.html │ │ └── who3 │ │ └── srv │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── assets │ │ ├── css │ │ │ ├── font-awesome.min.css │ │ │ └── main.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── js │ │ │ ├── demo.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.scrollex.min.js │ │ │ ├── jquery.scrolly.min.js │ │ │ ├── main.js │ │ │ ├── skel.min.js │ │ │ └── util.js │ │ └── sass │ │ │ ├── base │ │ │ ├── _page.scss │ │ │ └── _typography.scss │ │ │ ├── components │ │ │ ├── _banner.scss │ │ │ ├── _box.scss │ │ │ ├── _button.scss │ │ │ ├── _form.scss │ │ │ ├── _gallery.scss │ │ │ ├── _icon.scss │ │ │ ├── _image.scss │ │ │ ├── _index.scss │ │ │ ├── _items.scss │ │ │ ├── _list.scss │ │ │ ├── _section.scss │ │ │ ├── _spotlight.scss │ │ │ ├── _table.scss │ │ │ └── _wrapper.scss │ │ │ ├── layout │ │ │ └── _wrapper.scss │ │ │ ├── libs │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ ├── _skel.scss │ │ │ └── _vars.scss │ │ │ └── main.scss │ │ ├── images │ │ └── banner-who3.jpg │ │ └── index.html ├── traefik-basic │ ├── README.md │ ├── caddy1.yml │ ├── nginx1.yml │ ├── traefik.yml │ ├── who1.yml │ └── who2.yml ├── traefik-consul │ ├── Dockerfile │ ├── README.md │ ├── devcommands.sh │ ├── docker-compose.yml │ ├── rundown.sh │ ├── runup.sh │ ├── traefik.toml │ └── www │ │ ├── home │ │ └── srv │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── main.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ ├── skel.min.js │ │ │ │ └── util.js │ │ │ └── sass │ │ │ │ ├── base │ │ │ │ ├── _page.scss │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ ├── _banner.scss │ │ │ │ ├── _box.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _gallery.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _items.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _spotlight.scss │ │ │ │ ├── _table.scss │ │ │ │ └── _wrapper.scss │ │ │ │ ├── layout │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _skel.scss │ │ │ │ └── _vars.scss │ │ │ │ └── main.scss │ │ │ ├── images │ │ │ └── banner.jpg │ │ │ └── index.html │ │ └── who1 │ │ └── html │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── assets │ │ ├── css │ │ │ ├── font-awesome.min.css │ │ │ └── main.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── js │ │ │ ├── demo.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.scrollex.min.js │ │ │ ├── jquery.scrolly.min.js │ │ │ ├── main.js │ │ │ ├── skel.min.js │ │ │ └── util.js │ │ └── sass │ │ │ ├── base │ │ │ ├── _page.scss │ │ │ └── _typography.scss │ │ │ ├── components │ │ │ ├── _banner.scss │ │ │ ├── _box.scss │ │ │ ├── _button.scss │ │ │ ├── _form.scss │ │ │ ├── _gallery.scss │ │ │ ├── _icon.scss │ │ │ ├── _image.scss │ │ │ ├── _index.scss │ │ │ ├── _items.scss │ │ │ ├── _list.scss │ │ │ ├── _section.scss │ │ │ ├── _spotlight.scss │ │ │ ├── _table.scss │ │ │ └── _wrapper.scss │ │ │ ├── layout │ │ │ └── _wrapper.scss │ │ │ ├── libs │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ ├── _skel.scss │ │ │ └── _vars.scss │ │ │ └── main.scss │ │ ├── images │ │ └── banner.jpg │ │ └── index.html ├── traefik-haproxy │ ├── README.md │ ├── _run │ ├── _stop │ ├── option2.md │ ├── single_commands.md │ ├── traefik.yml │ └── webapps.yml ├── traefik-manager-noacme │ ├── README.md │ ├── runctop │ ├── rundown │ ├── runup │ ├── toolportainer.yml │ ├── toolproxy.yml │ ├── toolproxy_alone.yml │ ├── toolproxy_withsocat.yml │ ├── toolweb.yml │ ├── www │ │ ├── home │ │ │ └── srv │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ └── main.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── js │ │ │ │ │ ├── demo.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── skel.min.js │ │ │ │ │ └── util.js │ │ │ │ └── sass │ │ │ │ │ ├── base │ │ │ │ │ ├── _page.scss │ │ │ │ │ └── _typography.scss │ │ │ │ │ ├── components │ │ │ │ │ ├── _banner.scss │ │ │ │ │ ├── _box.scss │ │ │ │ │ ├── _button.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ ├── _gallery.scss │ │ │ │ │ ├── _icon.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _index.scss │ │ │ │ │ ├── _items.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _section.scss │ │ │ │ │ ├── _spotlight.scss │ │ │ │ │ ├── _table.scss │ │ │ │ │ └── _wrapper.scss │ │ │ │ │ ├── layout │ │ │ │ │ └── _wrapper.scss │ │ │ │ │ ├── libs │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _skel.scss │ │ │ │ │ └── _vars.scss │ │ │ │ │ └── main.scss │ │ │ │ ├── images │ │ │ │ └── banner.jpg │ │ │ │ └── index.html │ │ └── who1 │ │ │ └── html │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── main.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ ├── skel.min.js │ │ │ │ └── util.js │ │ │ └── sass │ │ │ │ ├── base │ │ │ │ ├── _page.scss │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ ├── _banner.scss │ │ │ │ ├── _box.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _gallery.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _items.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _spotlight.scss │ │ │ │ ├── _table.scss │ │ │ │ └── _wrapper.scss │ │ │ │ ├── layout │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _skel.scss │ │ │ │ └── _vars.scss │ │ │ │ └── main.scss │ │ │ ├── images │ │ │ └── banner.jpg │ │ │ └── index.html │ └── z-archives │ │ ├── devcommands.sh │ │ ├── toolproxy-ori.yml │ │ ├── toolwordpress.yml │ │ ├── traefik-example.toml │ │ └── traefik.toml ├── traefik-manager │ ├── CHANGELOG.md │ ├── README.md │ ├── _down │ ├── _restart │ ├── _up │ ├── toolproxy.yml │ ├── toolweb.yml │ └── traefik-config │ │ ├── .htpasswd │ │ ├── NOTES.md │ │ ├── acme-placeholder.json │ │ ├── demoselfsign.crt │ │ ├── demoselfsign.key │ │ ├── traefik-prod.toml │ │ └── traefik.toml ├── traefik_stack1 │ ├── README.md │ ├── configs │ │ └── traefik.toml │ ├── runctop.sh │ ├── rundown.sh │ ├── runup.sh │ ├── to-try.yml │ ├── toolportainer.yml │ ├── toolproxy.yml │ ├── toolweb.yml │ ├── www │ │ ├── home │ │ │ └── srv │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ └── main.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── js │ │ │ │ │ ├── demo.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── skel.min.js │ │ │ │ │ └── util.js │ │ │ │ └── sass │ │ │ │ │ ├── base │ │ │ │ │ ├── _page.scss │ │ │ │ │ └── _typography.scss │ │ │ │ │ ├── components │ │ │ │ │ ├── _banner.scss │ │ │ │ │ ├── _box.scss │ │ │ │ │ ├── _button.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ ├── _gallery.scss │ │ │ │ │ ├── _icon.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _index.scss │ │ │ │ │ ├── _items.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _section.scss │ │ │ │ │ ├── _spotlight.scss │ │ │ │ │ ├── _table.scss │ │ │ │ │ └── _wrapper.scss │ │ │ │ │ ├── layout │ │ │ │ │ └── _wrapper.scss │ │ │ │ │ ├── libs │ │ │ │ │ ├── _functions.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _skel.scss │ │ │ │ │ └── _vars.scss │ │ │ │ │ └── main.scss │ │ │ │ ├── images │ │ │ │ └── banner.jpg │ │ │ │ └── index.html │ │ └── who1 │ │ │ └── html │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome.min.css │ │ │ │ └── main.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── js │ │ │ │ ├── demo.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ ├── skel.min.js │ │ │ │ └── util.js │ │ │ └── sass │ │ │ │ ├── base │ │ │ │ ├── _page.scss │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ ├── _banner.scss │ │ │ │ ├── _box.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _gallery.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _items.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _spotlight.scss │ │ │ │ ├── _table.scss │ │ │ │ └── _wrapper.scss │ │ │ │ ├── layout │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _skel.scss │ │ │ │ └── _vars.scss │ │ │ │ └── main.scss │ │ │ ├── images │ │ │ └── banner.jpg │ │ │ └── index.html │ └── z-archives │ │ └── devcommands.sh ├── traefik_stack2 │ ├── LICENSE │ ├── README.md │ ├── docker-compose.traefik.yml │ ├── docker-compose.webapps.yml │ ├── nginx-redirect.conf │ ├── runctop.sh │ ├── rundown.sh │ ├── runup.sh │ ├── setup-cert.sh │ ├── setup-network.sh │ ├── start-traefik.sh │ ├── start-webapps.sh │ ├── tls │ │ └── placeholder.md │ └── traefik.toml ├── traefik_stack3 │ ├── README.md │ ├── alb.go │ ├── books │ │ ├── Dockerfile │ │ └── app.go │ ├── config.toml │ ├── docker-compose.yml │ ├── movies │ │ ├── Dockerfile │ │ └── app.go │ ├── outputs.tf │ ├── resources.tf │ ├── runup.sh │ ├── security_groups.tf │ ├── setup.sh │ ├── start-traefik.sh │ ├── variables.tf │ └── variables.tfvars └── traefik_stack4 │ ├── README.md │ ├── docker-compose.yml │ └── runup.sh ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── dockerfiles ├── proxysocket │ ├── Dockerfile │ ├── LICENSE.txt │ ├── README.md │ ├── build.sh │ ├── haproxy.cfg │ └── hooks │ │ └── build └── socat │ ├── Dockerfile │ ├── README.md │ └── run.sh ├── env-template ├── runversion.sh ├── to_test └── stack-swarmpit.yml ├── traefik_stack5 ├── README.md ├── config_and_vars.sh ├── configs │ ├── acme.json │ └── traefik.toml ├── runctop.sh ├── rundown.sh ├── runup.sh ├── shellcheck.sh ├── stack-portainer.yml ├── stack-proxy.yml └── stack-webapp.yml ├── traefik_stack6 ├── README.md ├── stack-proxy-dns-challenge.yml ├── stack-proxy.yml ├── stack-webapp.yml └── www │ ├── brotbackencadabra │ ├── index.html │ └── nginx-container │ ├── devcerisesite │ ├── index.html │ └── nginx-container │ ├── devkiwiclub │ ├── index.html │ └── nginx-container │ ├── firepresslink │ ├── index.html │ └── nginx-container │ ├── pnddesignca │ ├── index.html │ └── nginx-container │ ├── stgfirexyz │ ├── index.html │ └── nginx-container │ ├── who1firepresslink │ ├── index.html │ └── nginx-container │ ├── who2firepresslink │ ├── caddy-container │ └── index.html │ └── who3firepresslink │ └── whoami-container └── traefik_stack7 ├── README-tmp.md ├── README.md ├── runup.sh ├── shellcheck.sh ├── stk_portainer.yml ├── stk_socat.yml ├── stk_traefik.yml ├── stk_web.yml ├── webapps ├── blue │ ├── assets │ │ ├── icons.svg │ │ ├── images │ │ │ └── bg.jpg │ │ ├── main.css │ │ ├── main.js │ │ └── noscript.css │ └── index.html ├── green │ ├── assets │ │ ├── icons.svg │ │ ├── images │ │ │ └── bg.jpg │ │ ├── main.css │ │ ├── main.js │ │ └── noscript.css │ └── index.html └── home │ ├── assets │ ├── icons.svg │ ├── images │ │ └── bg.jpg │ ├── main.css │ ├── main.js │ └── noscript.css │ └── index.html └── wip.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .cache 2 | coverage 3 | dist 4 | node_modules 5 | npm-debug 6 | .git 7 | 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/.gitignore -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/README.md -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/configs/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/configs/traefik.toml -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/runctop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/runctop.sh -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/rundown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/rundown.sh -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/runup-restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/runup-restore.sh -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/runup-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/runup-update.sh -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/runup.sh -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/toolportainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/toolportainer.yml -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/toolproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/toolproxy.yml -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/toolweb-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/toolweb-update.yml -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/toolweb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/toolweb.yml -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/README.txt -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/images/banner-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/images/banner-home.jpg -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/home/srv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/home/srv/index.html -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/README.txt -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/images/banner-who1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/images/banner-who1.jpg -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who1/srv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who1/srv/index.html -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/README.txt -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/images/banner-who3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/images/banner-who3.jpg -------------------------------------------------------------------------------- /ARCHIVE/rolling-update-demo/www/who3/srv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/rolling-update-demo/www/who3/srv/index.html -------------------------------------------------------------------------------- /ARCHIVE/traefik-basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-basic/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-basic/caddy1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-basic/caddy1.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-basic/nginx1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-basic/nginx1.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-basic/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-basic/traefik.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-basic/who1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-basic/who1.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-basic/who2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-basic/who2.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/Dockerfile -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/devcommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/devcommands.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/docker-compose.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/rundown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/rundown.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/runup.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/traefik.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/README.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/images/banner.jpg -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/home/srv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/home/srv/index.html -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/README.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/images/banner.jpg -------------------------------------------------------------------------------- /ARCHIVE/traefik-consul/www/who1/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-consul/www/who1/html/index.html -------------------------------------------------------------------------------- /ARCHIVE/traefik-haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-haproxy/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-haproxy/_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-haproxy/_run -------------------------------------------------------------------------------- /ARCHIVE/traefik-haproxy/_stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-haproxy/_stop -------------------------------------------------------------------------------- /ARCHIVE/traefik-haproxy/option2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-haproxy/option2.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-haproxy/single_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-haproxy/single_commands.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-haproxy/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-haproxy/traefik.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-haproxy/webapps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-haproxy/webapps.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/runctop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/runctop -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/rundown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/rundown -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/runup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/runup -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/toolportainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/toolportainer.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/toolproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/toolproxy.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/toolproxy_alone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/toolproxy_alone.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/toolproxy_withsocat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/toolproxy_withsocat.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/toolweb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/toolweb.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/README.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/images/banner.jpg -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/home/srv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/home/srv/index.html -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/README.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/images/banner.jpg -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/www/who1/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/www/who1/html/index.html -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/z-archives/devcommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/z-archives/devcommands.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/z-archives/toolproxy-ori.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/z-archives/toolproxy-ori.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/z-archives/toolwordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/z-archives/toolwordpress.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/z-archives/traefik-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/z-archives/traefik-example.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager-noacme/z-archives/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager-noacme/z-archives/traefik.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/CHANGELOG.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/_down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/_down -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/_restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/_restart -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/_up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/_up -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/toolproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/toolproxy.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/toolweb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/toolweb.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/traefik-config/.htpasswd: -------------------------------------------------------------------------------- 1 | dummy1:$apr1$KwGgqG16$NPaFNNgqFjz3r4qIytzte/ 2 | -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/traefik-config/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/traefik-config/NOTES.md -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/traefik-config/acme-placeholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/traefik-config/acme-placeholder.json -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/traefik-config/demoselfsign.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/traefik-config/demoselfsign.crt -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/traefik-config/demoselfsign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/traefik-config/demoselfsign.key -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/traefik-config/traefik-prod.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/traefik-config/traefik-prod.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik-manager/traefik-config/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik-manager/traefik-config/traefik.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/configs/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/configs/traefik.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/runctop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/runctop.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/rundown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/rundown.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/runup.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/to-try.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/to-try.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/toolportainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/toolportainer.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/toolproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/toolproxy.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/toolweb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/toolweb.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/README.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/images/banner.jpg -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/home/srv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/home/srv/index.html -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/LICENSE.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/README.txt -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/css/main.css -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/js/demo.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/js/jquery.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/js/main.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/js/skel.min.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/js/util.js -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_banner.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_gallery.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_index.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_items.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_spotlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_spotlight.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/assets/sass/main.scss -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/images/banner.jpg -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/www/who1/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/www/who1/html/index.html -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack1/z-archives/devcommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack1/z-archives/devcommands.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/LICENSE -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/docker-compose.traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/docker-compose.traefik.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/docker-compose.webapps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/docker-compose.webapps.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/nginx-redirect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/nginx-redirect.conf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/runctop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/runctop.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/rundown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/rundown.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/runup.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/setup-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/setup-cert.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/setup-network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/setup-network.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/start-traefik.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/start-traefik.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/start-webapps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/start-webapps.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/tls/placeholder.md: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack2/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack2/traefik.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/alb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/alb.go -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/books/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/books/Dockerfile -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/books/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/books/app.go -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/config.toml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/docker-compose.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/movies/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/movies/Dockerfile -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/movies/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/movies/app.go -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/outputs.tf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/resources.tf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/runup.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/security_groups.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/security_groups.tf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/setup.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/start-traefik.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/start-traefik.sh -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/variables.tf -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack3/variables.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack3/variables.tfvars -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack4/README.md -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack4/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack4/docker-compose.yml -------------------------------------------------------------------------------- /ARCHIVE/traefik_stack4/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/ARCHIVE/traefik_stack4/runup.sh -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/README.md -------------------------------------------------------------------------------- /dockerfiles/proxysocket/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/proxysocket/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/proxysocket/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/proxysocket/LICENSE.txt -------------------------------------------------------------------------------- /dockerfiles/proxysocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/proxysocket/README.md -------------------------------------------------------------------------------- /dockerfiles/proxysocket/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/proxysocket/build.sh -------------------------------------------------------------------------------- /dockerfiles/proxysocket/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/proxysocket/haproxy.cfg -------------------------------------------------------------------------------- /dockerfiles/proxysocket/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/proxysocket/hooks/build -------------------------------------------------------------------------------- /dockerfiles/socat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/socat/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/socat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/socat/README.md -------------------------------------------------------------------------------- /dockerfiles/socat/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/dockerfiles/socat/run.sh -------------------------------------------------------------------------------- /env-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/env-template -------------------------------------------------------------------------------- /runversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/runversion.sh -------------------------------------------------------------------------------- /to_test/stack-swarmpit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/to_test/stack-swarmpit.yml -------------------------------------------------------------------------------- /traefik_stack5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/README.md -------------------------------------------------------------------------------- /traefik_stack5/config_and_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/config_and_vars.sh -------------------------------------------------------------------------------- /traefik_stack5/configs/acme.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traefik_stack5/configs/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/configs/traefik.toml -------------------------------------------------------------------------------- /traefik_stack5/runctop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/runctop.sh -------------------------------------------------------------------------------- /traefik_stack5/rundown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/rundown.sh -------------------------------------------------------------------------------- /traefik_stack5/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/runup.sh -------------------------------------------------------------------------------- /traefik_stack5/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/shellcheck.sh -------------------------------------------------------------------------------- /traefik_stack5/stack-portainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/stack-portainer.yml -------------------------------------------------------------------------------- /traefik_stack5/stack-proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/stack-proxy.yml -------------------------------------------------------------------------------- /traefik_stack5/stack-webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack5/stack-webapp.yml -------------------------------------------------------------------------------- /traefik_stack6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/README.md -------------------------------------------------------------------------------- /traefik_stack6/stack-proxy-dns-challenge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/stack-proxy-dns-challenge.yml -------------------------------------------------------------------------------- /traefik_stack6/stack-proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/stack-proxy.yml -------------------------------------------------------------------------------- /traefik_stack6/stack-webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/stack-webapp.yml -------------------------------------------------------------------------------- /traefik_stack6/www/brotbackencadabra/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/brotbackencadabra/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/brotbackencadabra/nginx-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/devcerisesite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/devcerisesite/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/devcerisesite/nginx-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/devkiwiclub/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/devkiwiclub/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/devkiwiclub/nginx-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/firepresslink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/firepresslink/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/firepresslink/nginx-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/pnddesignca/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/pnddesignca/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/pnddesignca/nginx-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/stgfirexyz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/stgfirexyz/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/stgfirexyz/nginx-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/who1firepresslink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/who1firepresslink/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/who1firepresslink/nginx-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/who2firepresslink/caddy-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack6/www/who2firepresslink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack6/www/who2firepresslink/index.html -------------------------------------------------------------------------------- /traefik_stack6/www/who3firepresslink/whoami-container: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /traefik_stack7/README-tmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/README-tmp.md -------------------------------------------------------------------------------- /traefik_stack7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/README.md -------------------------------------------------------------------------------- /traefik_stack7/runup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/runup.sh -------------------------------------------------------------------------------- /traefik_stack7/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/shellcheck.sh -------------------------------------------------------------------------------- /traefik_stack7/stk_portainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/stk_portainer.yml -------------------------------------------------------------------------------- /traefik_stack7/stk_socat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/stk_socat.yml -------------------------------------------------------------------------------- /traefik_stack7/stk_traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/stk_traefik.yml -------------------------------------------------------------------------------- /traefik_stack7/stk_web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/stk_web.yml -------------------------------------------------------------------------------- /traefik_stack7/webapps/blue/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/blue/assets/icons.svg -------------------------------------------------------------------------------- /traefik_stack7/webapps/blue/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/blue/assets/images/bg.jpg -------------------------------------------------------------------------------- /traefik_stack7/webapps/blue/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/blue/assets/main.css -------------------------------------------------------------------------------- /traefik_stack7/webapps/blue/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/blue/assets/main.js -------------------------------------------------------------------------------- /traefik_stack7/webapps/blue/assets/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/blue/assets/noscript.css -------------------------------------------------------------------------------- /traefik_stack7/webapps/blue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/blue/index.html -------------------------------------------------------------------------------- /traefik_stack7/webapps/green/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/green/assets/icons.svg -------------------------------------------------------------------------------- /traefik_stack7/webapps/green/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/green/assets/images/bg.jpg -------------------------------------------------------------------------------- /traefik_stack7/webapps/green/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/green/assets/main.css -------------------------------------------------------------------------------- /traefik_stack7/webapps/green/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/green/assets/main.js -------------------------------------------------------------------------------- /traefik_stack7/webapps/green/assets/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/green/assets/noscript.css -------------------------------------------------------------------------------- /traefik_stack7/webapps/green/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/green/index.html -------------------------------------------------------------------------------- /traefik_stack7/webapps/home/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/home/assets/icons.svg -------------------------------------------------------------------------------- /traefik_stack7/webapps/home/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/home/assets/images/bg.jpg -------------------------------------------------------------------------------- /traefik_stack7/webapps/home/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/home/assets/main.css -------------------------------------------------------------------------------- /traefik_stack7/webapps/home/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/home/assets/main.js -------------------------------------------------------------------------------- /traefik_stack7/webapps/home/assets/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/home/assets/noscript.css -------------------------------------------------------------------------------- /traefik_stack7/webapps/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/webapps/home/index.html -------------------------------------------------------------------------------- /traefik_stack7/wip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pascalandy/docker-stack-this/HEAD/traefik_stack7/wip.sh --------------------------------------------------------------------------------