{ switch(e.key) { case 'k': if (e.metaKey || e.ctrlKey) { e.preventDefault() open = !open; if (open) { document.body.classList.add('overflow-hidden'); } else { document.body.classList.remove('overflow-hidden'); } } } }">
`; resultsHTML += results .map((item) => { return `
${item.meta.title}

…${item.excerpt}…

`; }) .join(""); modalSearchResults.innerHTML = resultsHTML; } } modalSearchInput.addEventListener("input", modalSearch); if (window.heap !== undefined) { modalSearchResults.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); } }); } });

JavaScript samples

NameDescription
NGINX / Node.js / RedisA sample Node.js application with Nginx proxy and a Redis database.
React / Spring / MySQLA sample React application with a Spring backend and a MySQL database.
React / Express / MySQLA sample React application with a Node.js backend and a MySQL database.
React / Express / MongoDBA sample React application with a Node.js backend and a Mongo database.
React / Rust / PostgreSQLA sample React application with a Rust backend and a Postgres database.
React / NGINXA sample React application with Nginx.
VueJSA sample Vue.jus application.
docker-swarm-visualizerA visualizer for Docker Swarm Mode using the Docker Remote API, Node.JS, and D3.
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.
dotnet-album-viewerWest Wind Album Viewer ASP.NET Core and Angular sample.
aspnet-monitoringMonitoring ASP.NET Fx applications in Windows Docker containers, using Prometheus.
slack-clone-dockerA sample Slack Clone app built with the MERN stack.

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.

-