[go: up one dir, main page]

Share feedback
Answers are generated based on the documentation.
{ const container = $el; // The div with overflow const item = document.getElementById('sidebar-current-page') if (item) { const containerTop = container.scrollTop; const containerBottom = containerTop + container.clientHeight; const itemTop = item.offsetTop - container.offsetTop; const itemBottom = itemTop + item.offsetHeight; // Scroll only if the item is out of view if (itemBottom > containerBottom - 200) { container.scrollTop = itemTop - (container.clientHeight / 2 - item.offsetHeight / 2); } } })" class="bg-background-toc dark:bg-background-toc fixed top-0 z-40 hidden h-screen w-full flex-none overflow-x-hidden overflow-y-auto md:sticky md:top-16 md:z-auto md:block md:h-[calc(100vh-64px)] md:w-[320px]" :class="{ 'hidden': ! $store.showSidebar }">

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.js 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.