Docker.vue 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <NuxtLayout name="guides">
  3. <template #intro>
  4. <div class="max-w-xl">
  5. <h2 class="text-4xl font-extrabold text-gray-100 sm:text-5xl sm:tracking-tight lg:text-6xl">
  6. Docker
  7. </h2>
  8. <p class="mt-5 text-xl text-indigo-300">
  9. Installing Docker to a Debian/Ubuntu machine is quick and easy.
  10. </p>
  11. </div>
  12. </template>
  13. <template #links>
  14. <div class="mt-10 w-full max-w-xs lg:mt-0">
  15. <label for="currency" class="block text-2xl font-medium text-indigo-400">
  16. Recommended Links
  17. </label>
  18. <div class="flex flex-col mt-1.5 pl-3 relative text-indigo-200">
  19. <div>
  20. ↳ <a href="https://docs.docker.com/engine/install/" target="_blank" class="hover:underline">
  21. Docker Engine Installation
  22. </a>
  23. </div>
  24. <div>
  25. ↳ <NuxtLink>
  26. Nuxt Link #2
  27. </NuxtLink>
  28. </div>
  29. <div>
  30. ↳ <NuxtLink>
  31. Nuxt Link #3
  32. </NuxtLink>
  33. </div>
  34. </div>
  35. </div>
  36. </template>
  37. <!-- Page Section -->
  38. <template #main>
  39. <section class="py-10 max-w-5xl mx-auto">
  40. <div class="p-5 text-2xl font-medium bg-gray-100 border-4 border-gray-300 rounded-xl">
  41. Quick Install
  42. <small class="block text-sm">
  43. NOTE: Safe to delete the shell file after install.
  44. </small>
  45. </div>
  46. <pre class="mt-5 p-5 bg-yellow-100 border-4 border-yellow-300 rounded-xl">
  47. <code>curl -fsSL https://get.docker.com -o get-docker.sh
  48. chmod +x ./get-docker.sh
  49. ./get-docker.sh</code></pre>
  50. </section>
  51. <section class="py-10 max-w-5xl mx-auto">
  52. <div class="p-5 text-2xl font-medium bg-gray-100 border-4 border-gray-300 rounded-xl">
  53. Cleanup Docker System
  54. <small class="block text-sm">
  55. NOTE: For when the Overlay2 folder fills your entire filesystem.
  56. </small>
  57. </div>
  58. <pre class="mt-5 p-5 bg-yellow-100 border-4 border-yellow-300 rounded-xl">
  59. <code>docker system prune -a</code></pre>
  60. </section>
  61. </template>
  62. </NuxtLayout>
  63. </template>