├── .dockerignore ├── .editorconfig ├── Dockerfile ├── LICENSE.md ├── README.md ├── app.json ├── default.conf.template ├── heroku.yml ├── nginx.conf └── static-html └── index.html /.dockerignore: -------------------------------------------------------------------------------- 1 | .editorconfig 2 | .git 3 | *.md 4 | *.yml 5 | app.json 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/app.json -------------------------------------------------------------------------------- /default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/default.conf.template -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/heroku.yml -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/nginx.conf -------------------------------------------------------------------------------- /static-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjoonas/heroku-docker-nginx-example/HEAD/static-html/index.html --------------------------------------------------------------------------------