├── .dockerignore ├── Dockerfile ├── README.md ├── conf └── nginx │ └── nginx-site.conf └── scripts └── 00-laravel-deploy.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingnninja/laravel-render-template/HEAD/.dockerignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingnninja/laravel-render-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingnninja/laravel-render-template/HEAD/README.md -------------------------------------------------------------------------------- /conf/nginx/nginx-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingnninja/laravel-render-template/HEAD/conf/nginx/nginx-site.conf -------------------------------------------------------------------------------- /scripts/00-laravel-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingnninja/laravel-render-template/HEAD/scripts/00-laravel-deploy.sh --------------------------------------------------------------------------------