gitextract_h_1olx28/ ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ └── codeql-analysis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS ├── README.md ├── angular/ │ ├── .gitignore │ ├── README.md │ ├── angular/ │ │ ├── .browserslistrc │ │ ├── .dockerignore │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── angular.json │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── environments/ │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ └── compose.yaml ├── apache-php/ │ ├── README.md │ ├── app/ │ │ ├── Dockerfile │ │ └── index.php │ └── compose.yaml ├── aspnet-mssql/ │ ├── README.md │ ├── app/ │ │ ├── aspnetapp/ │ │ │ ├── .gitignore │ │ │ ├── Controllers/ │ │ │ │ └── HomeController.cs │ │ │ ├── Dockerfile │ │ │ ├── Models/ │ │ │ │ └── ErrorViewModel.cs │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── Views/ │ │ │ │ ├── Home/ │ │ │ │ │ ├── About.cshtml │ │ │ │ │ ├── Contact.cshtml │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Privacy.cshtml │ │ │ │ ├── Shared/ │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── aspnetapp.csproj │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ └── site.css │ │ │ ├── js/ │ │ │ │ └── site.js │ │ │ └── lib/ │ │ │ ├── bootstrap/ │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE │ │ │ │ └── dist/ │ │ │ │ ├── css/ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ └── bootstrap.css │ │ │ │ └── js/ │ │ │ │ ├── bootstrap.js │ │ │ │ └── npm.js │ │ │ ├── jquery/ │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist/ │ │ │ │ └── jquery.js │ │ │ ├── jquery-validation/ │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist/ │ │ │ │ ├── additional-methods.js │ │ │ │ └── jquery.validate.js │ │ │ └── jquery-validation-unobtrusive/ │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.js │ │ └── aspnetapp.sln │ └── compose.yaml ├── django/ │ ├── README.md │ ├── app/ │ │ ├── Dockerfile │ │ ├── example/ │ │ │ ├── __init__.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── manage.py │ │ └── requirements.txt │ └── compose.yaml ├── elasticsearch-logstash-kibana/ │ ├── README.md │ ├── compose.yaml │ └── logstash/ │ ├── nginx.log │ └── pipeline/ │ └── logstash-nginx.config ├── fastapi/ │ ├── Dockerfile │ ├── README.md │ ├── app/ │ │ ├── __init__.py │ │ └── main.py │ ├── compose.yaml │ └── requirements.txt ├── flask/ │ ├── README.md │ ├── app/ │ │ ├── Dockerfile │ │ ├── app.py │ │ └── requirements.txt │ └── compose.yaml ├── flask-redis/ │ ├── Dockerfile │ ├── README.md │ ├── app.py │ ├── compose.yaml │ └── requirements.txt ├── gitea-postgres/ │ ├── README.md │ └── compose.yaml ├── minecraft/ │ ├── README.md │ └── compose.yaml ├── nextcloud-postgres/ │ ├── README.md │ └── compose.yaml ├── nextcloud-redis-mariadb/ │ ├── README.md │ └── compose.yaml ├── nginx-aspnet-mysql/ │ ├── README.md │ ├── backend/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Program.cs │ │ └── aspnetapp.csproj │ ├── compose.yaml │ ├── db/ │ │ └── password.txt │ └── proxy/ │ ├── Dockerfile │ └── conf ├── nginx-flask-mongo/ │ ├── README.md │ ├── compose.yaml │ ├── flask/ │ │ ├── Dockerfile │ │ ├── requirements.txt │ │ └── server.py │ └── nginx/ │ └── nginx.conf ├── nginx-flask-mysql/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── hello.py │ │ └── requirements.txt │ ├── compose.yaml │ ├── db/ │ │ └── password.txt │ └── proxy/ │ ├── Dockerfile │ └── conf ├── nginx-golang/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── compose.yaml │ └── proxy/ │ └── nginx.conf ├── nginx-golang-mysql/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── compose.yaml │ ├── db/ │ │ └── password.txt │ └── proxy/ │ └── nginx.conf ├── nginx-golang-postgres/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ ├── compose.yaml │ ├── db/ │ │ └── password.txt │ └── proxy/ │ └── nginx.conf ├── nginx-nodejs-redis/ │ ├── README.md │ ├── compose.yaml │ ├── nginx/ │ │ ├── Dockerfile │ │ └── nginx.conf │ └── web/ │ ├── .gitignore │ ├── Dockerfile │ ├── package.json │ └── server.js ├── nginx-wsgi-flask/ │ ├── README.md │ ├── compose.yaml │ ├── flask/ │ │ ├── Dockerfile │ │ ├── app.py │ │ ├── requirements.txt │ │ └── wsgi.py │ └── nginx/ │ ├── Dockerfile │ ├── default.conf │ ├── nginx.conf │ └── start.sh ├── official-documentation-samples/ │ ├── README.md │ ├── django/ │ │ └── README.md │ ├── rails/ │ │ └── README.md │ └── wordpress/ │ └── README.md ├── pihole-cloudflared-DoH/ │ ├── README.md │ └── compose.yaml ├── plex/ │ ├── README.md │ └── compose.yaml ├── portainer/ │ ├── README.md │ └── compose.yaml ├── postgresql-pgadmin/ │ ├── README.md │ └── compose.yaml ├── prometheus-grafana/ │ ├── README.md │ ├── compose.yaml │ ├── grafana/ │ │ └── datasource.yml │ └── prometheus/ │ └── prometheus.yml ├── react-express-mongodb/ │ ├── .gitignore │ ├── README.md │ ├── backend/ │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── config/ │ │ │ ├── config.js │ │ │ ├── config.json │ │ │ └── messages.js │ │ ├── db/ │ │ │ └── index.js │ │ ├── logs/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ └── todos/ │ │ │ └── todo.js │ │ ├── package.json │ │ ├── routes/ │ │ │ └── index.js │ │ ├── server.js │ │ └── utils/ │ │ └── helpers/ │ │ ├── logger.js │ │ └── responses.js │ ├── compose.yaml │ └── frontend/ │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.js │ ├── App.scss │ ├── App.test.js │ ├── components/ │ │ ├── AddTodo.js │ │ └── TodoList.js │ ├── custom.scss │ ├── index.css │ ├── index.js │ └── serviceWorker.js ├── react-express-mysql/ │ ├── .gitignore │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── healthcheck.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── config.js │ │ │ ├── database.js │ │ │ ├── index.js │ │ │ └── server.js │ │ └── test/ │ │ └── sample.js │ ├── compose.yaml │ ├── db/ │ │ └── password.txt │ └── frontend/ │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── serviceWorker.js │ ├── setupProxy.js │ └── setupTests.js ├── react-java-mysql/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── company/ │ │ │ └── project/ │ │ │ ├── Application.java │ │ │ ├── configuration/ │ │ │ │ └── DockerSecretsProcessor.java │ │ │ ├── controllers/ │ │ │ │ └── HomeController.java │ │ │ ├── entity/ │ │ │ │ └── Greeting.java │ │ │ └── repository/ │ │ │ └── GreetingRepository.java │ │ └── resources/ │ │ ├── META-INF/ │ │ │ └── spring.factories │ │ ├── application.properties │ │ ├── data.sql │ │ └── schema.sql │ ├── compose.yaml │ ├── db/ │ │ └── password.txt │ └── frontend/ │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── serviceWorker.ts │ │ ├── setupProxy.js │ │ └── setupTests.ts │ └── tsconfig.json ├── react-nginx/ │ ├── .dockerignore │ ├── .gitignore │ ├── .nginx/ │ │ └── nginx.conf │ ├── Dockerfile │ ├── README.md │ ├── compose.yaml │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── setupTests.js ├── react-rust-postgres/ │ ├── backend/ │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Dockerfile │ │ ├── migrations/ │ │ │ ├── .gitkeep │ │ │ ├── 0001_create-users_down.sql │ │ │ └── 0001_create-users_up.sql │ │ ├── readme.md │ │ └── src/ │ │ ├── main.rs │ │ ├── postgres.rs │ │ └── user.rs │ ├── compose.yaml │ ├── frontend/ │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.css │ │ ├── index.js │ │ ├── serviceWorker.js │ │ ├── setupProxy.js │ │ └── setupTests.js │ └── readme.md ├── sparkjava/ │ ├── README.md │ ├── compose.yaml │ └── sparkjava/ │ ├── Dockerfile │ ├── pom.xml │ └── src/ │ └── main/ │ └── java/ │ └── App.java ├── sparkjava-mysql/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ └── java/ │ │ └── App.java │ ├── compose.yaml │ └── db/ │ └── password.txt ├── spring-postgres/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ ├── pom.xml │ │ └── src/ │ │ └── main/ │ │ ├── java/ │ │ │ └── com/ │ │ │ └── company/ │ │ │ └── project/ │ │ │ ├── Application.java │ │ │ ├── controllers/ │ │ │ │ └── HomeController.java │ │ │ ├── entity/ │ │ │ │ └── Greeting.java │ │ │ └── repository/ │ │ │ └── GreetingRepository.java │ │ └── resources/ │ │ ├── application.properties │ │ ├── data.sql │ │ ├── schema.sql │ │ └── templates/ │ │ └── home.ftlh │ ├── compose.yaml │ └── db/ │ └── password.txt ├── traefik-golang/ │ ├── README.md │ ├── backend/ │ │ ├── Dockerfile │ │ └── main.go │ └── compose.yaml ├── vuejs/ │ ├── .gitignore │ ├── README.md │ ├── compose.yaml │ └── vuejs/ │ ├── Dockerfile │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── public/ │ │ └── index.html │ └── src/ │ ├── App.vue │ ├── components/ │ │ └── HelloWorld.vue │ └── main.js ├── wasmedge-kafka-mysql/ │ ├── README.md │ ├── compose.yml │ ├── db/ │ │ └── db-password.txt │ ├── etl/ │ │ ├── Cargo.toml │ │ ├── Dockerfile │ │ └── src/ │ │ └── main.rs │ └── kafka/ │ └── order.json ├── wasmedge-mysql-nginx/ │ ├── README.md │ ├── backend/ │ │ ├── Cargo.toml │ │ ├── Dockerfile │ │ └── src/ │ │ └── main.rs │ ├── compose.yml │ ├── db/ │ │ ├── orders.json │ │ └── update_order.json │ └── frontend/ │ ├── index.html │ └── js/ │ └── app.js ├── wireguard/ │ ├── README.md │ └── compose.yaml └── wordpress-mysql/ ├── README.md └── compose.yaml