├── .env ├── .gitignore ├── Readme.md ├── docker-compose.yml ├── fix-lava-iris.txt ├── nginx ├── Dockerfile ├── entrypoint.sh └── nginx.conf └── storage-temp └── Dockerfile /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/Readme.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fix-lava-iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/fix-lava-iris.txt -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/nginx/entrypoint.sh -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /storage-temp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikosch86/stf-poc/HEAD/storage-temp/Dockerfile --------------------------------------------------------------------------------