`; resultsHTML += results .map((item) => { return `
${item.meta.title}

…${item.excerpt}…

`; }) .join(""); if (resultsLength > 5) { resultsHTML += ``; } searchBarResults.innerHTML = resultsHTML; } } searchBarInput.addEventListener("input", search); if (window.heap !== undefined) { searchBarResults.addEventListener('click', function (event) { if (event.target.tagName === 'A' && event.target.closest('.link')) { const searchQuery = event.target.getAttribute('data-query'); const resultIndex = event.target.getAttribute('data-index'); const url = new URL(event.target.href); const properties = { docs_search_target_path: url.pathname, docs_search_target_title: event.target.textContent, docs_search_query_text: searchQuery, docs_search_target_index: resultIndex, docs_search_source_path: window.location.pathname, docs_search_source_title: document.title, }; heap.track("Docs - Search - Click - Result Link", properties); } }); } });

NGINX samples

NameDescription
Go / NGINX / MySQLA sample Go application with an Nginx proxy and a MySQL database.
Go / NGINX / PostgreSQLA sample Go application with an Nginx proxy and a PostgreSQL database.
NGINX / ASP.NET / MySQLA sample Nginx reverse proxy with a C# backend using ASP.NET.
NGINX / Flask / MongoDBA sample Python/Flask application with Nginx proxy and a Mongo database.
NGINX / Flask / MySQLA sample Python/Flask application with an Nginx proxy and a MySQL database.
NGINX / Node.js / RedisA sample Node.js application with Nginx proxy and a Redis database.
NGINX / GoA sample Nginx proxy with a Go backend.
NGINX / WSGI / FlaskA sample Nginx reverse proxy with a Flask backend using WSGI.
React / NGINXA sample React application with Nginx.
atsea-sample-shop-appA sample app that uses a Java Spring Boot backend connected to a database to display a fictitious art shop with a React front-end.
linux_tweet_appA very simple webapp based on NGINX.

Looking for more samples?

Visit the following GitHub repositories for more Docker samples.

  • Awesome Compose: A curated repository containing over 30 Docker Compose samples. These samples offer a starting point for how to integrate different services using a Compose file.

  • Docker Samples: A collection of over 30 repositories that offer sample containerized demo applications, tutorials, and labs.