[go: up one dir, main page]

{ 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 }">
Contact support

PostgreSQL samples

NameDescription
Go / NGINX / PostgreSQLA sample Go application with an Nginx proxy and a PostgreSQL database.
PostgreSQL / pgAdminA sample setup for postgreSQL database with pgAdmin web interface.
React / Rust / PostgreSQLA sample React application with a Rust backend and a Postgres database.
Spring / PostgreSQLA sample Java application with Spring framework and a Postgres database.
Nextcloud / PostgreSQLA sample Nextcloud setup.
example-voting-appA sample Docker Compose app.
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.
wordsmithA demo app that runs three containers, including PostgreSQL, Java, and Go.

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.