Skip to content

Latest commit

 

History

History
executable file
·
143 lines (132 loc) · 3.77 KB

index.md

File metadata and controls

executable file
·
143 lines (132 loc) · 3.77 KB
layout project
project
netshare

Mount NFS v3/4, AWS EFS or CIFS inside your docker containers. This is a docker plugin which enables these volume types to be directly mounted within a container.

Docker Tools

Supports all major Docker tools including Engine/Daemon, Compose and Docker Swarm.

Databases

Perfect companion to mount persistent volumes for RDBMS and NoSQL based databases.

Simple

Easy to install and configure! Supports clusters such as Mesos/Marathon and Docker Swarm.

Ready to learn more?

Get Started

<script type='text/javascript'> // Format tabs $(function(){ var $container = $('#sync-tabs'); updateTabs($container); $(window).resize(function(){ updateTabs($container); }) function updateTabs($tabsContainer){ var $containerWidth = $tabsContainer.width(); var tabWidths = []; var $tabs = $tabsContainer.find('li'); $tabs.each(function(index, tab){ tabWidths.push($(tab).width()); }); var formattedTabs = []; var maxWidth = $containerWidth; var maxWidthSet = false; var rowWidth = 0; for(var i = tabWidths.length - 1; i >= 0; i--){ var tabWidth = tabWidths[i]; if(rowWidth + tabWidth > maxWidth){ if(!maxWidthSet){ maxWidth = rowWidth; maxWidthSet = true; } rowWidth = tabWidth; formattedTabs.unshift($('
')); }else{ rowWidth += tabWidth; } formattedTabs.unshift($tabs.get(i)); } var $tempContainer = $('
'); formattedTabs.forEach(function(tab, index){ $tempContainer.append(tab); }); $tabsContainer.html($tempContainer.html()); } }); </script>