├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── Dockerfile ├── LICENSE ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── hellokoding │ │ └── springboot │ │ ├── IndexController.java │ │ └── WebApplication.java │ └── resources │ ├── application.properties │ ├── static │ ├── css │ │ └── main.css │ └── js │ │ └── main.js │ └── templates │ └── index.ftl ├── docker-compose.yaml └── nginx └── conf.d └── app.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | target 3 | *.iml 4 | out 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM maven:3.5-jdk-8 2 | -------------------------------------------------------------------------------- /app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/app/LICENSE -------------------------------------------------------------------------------- /app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/app/pom.xml -------------------------------------------------------------------------------- /app/src/main/java/com/hellokoding/springboot/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/app/src/main/java/com/hellokoding/springboot/IndexController.java -------------------------------------------------------------------------------- /app/src/main/java/com/hellokoding/springboot/WebApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/app/src/main/java/com/hellokoding/springboot/WebApplication.java -------------------------------------------------------------------------------- /app/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/app/src/main/resources/application.properties -------------------------------------------------------------------------------- /app/src/main/resources/static/css/main.css: -------------------------------------------------------------------------------- 1 | .hello-title{ 2 | color: darkgreen; 3 | } -------------------------------------------------------------------------------- /app/src/main/resources/static/js/main.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | console.log("Hello World!"); 3 | })(); -------------------------------------------------------------------------------- /app/src/main/resources/templates/index.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/app/src/main/resources/templates/index.ftl -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /nginx/conf.d/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokoding/dockercompose-springboot-mongodb-nginx/HEAD/nginx/conf.d/app.conf --------------------------------------------------------------------------------