├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Dockerfile.alpine ├── LICENSE ├── Makefile ├── Makefile.containers ├── README.md ├── conf.d └── stub_status.conf └── entrypoint.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.idea 2 | *.iml 3 | .project 4 | *~ 5 | .DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/Dockerfile.alpine -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.containers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/Makefile.containers -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/README.md -------------------------------------------------------------------------------- /conf.d/stub_status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/conf.d/stub_status.conf -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginxinc/docker-nginx-amplify/HEAD/entrypoint.sh --------------------------------------------------------------------------------