<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/atom.xsl" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:fh="http://purl.org/syndication/history/1.0">
  <title>Posts tagged: minecraft Archive</title>
  <id>https://go.waylonwalker.com/tags/minecraft/archive/atom.xml</id>
  <updated>2025-12-10T08:46:36Z</updated>
  <subtitle>All posts with the tag &#34;minecraft&#34;</subtitle>
  <link href="https://go.waylonwalker.com/tags/minecraft/" rel="alternate" type="text/html"></link>
  <link href="https://go.waylonwalker.com/tags/minecraft/archive/atom.xml" rel="self" type="application/atom+xml"></link>
  <link href="https://go.waylonwalker.com/tags/minecraft/atom.xml" rel="current" type="application/atom+xml"></link>
  <author>
    <name>Waylon Walker</name>
  </author>
  <generator uri="https://github.com/WaylonWalker/markata-go">markata-go</generator>
  <fh:complete></fh:complete>
  <entry>
    <title>minecraft server memory</title>
    <id>https://go.waylonwalker.com/minecraft-server-memory/</id>
    <updated>2025-12-10T08:46:36Z</updated>
    <published>2025-12-10T08:46:36Z</published>
    <link href="https://go.waylonwalker.com/minecraft-server-memory/" rel="alternate" type="text/html"></link>
    <summary type="text">I learned to today that setting on your minecraft server causes the JVM to egregiously allocate all of that memory. Not setting it causes slow downs and...</summary>
    <content type="html">&lt;p&gt;I learned to today that setting &lt;code&gt;MEMORY&lt;/code&gt; on your minecraft server causes the&#xA;JVM to egregiously allocate all of that memory.  Not setting it causes slow&#xA;downs and potential crashes, but setting &lt;code&gt;INIT_MEMORY&lt;/code&gt; and &lt;code&gt;MAX_MEMORY&lt;/code&gt; gives&#xA;us the best of both worlds.  It is allowed to use more, but does not gobble it&#xA;all up on startup.&lt;/p&gt;&#xA;&lt;p&gt;In this economy we need to save all the memory we can!&lt;/p&gt;&#xA;&lt;p&gt;Here is a non-working snippet for a minecraft server deployment in kubernetes.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;containers&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;dungeon&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;image&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;itzg/minecraft-server&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;env&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;EULA&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;              &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;value&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;true&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;INIT_MEMORY&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;              &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;value&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;512M&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;MAX_MEMORY&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;              &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;value&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;3G&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;and in docker compose&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;dungeon&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;image&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;itzg/minecraft-server&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;environment&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;EULA&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;true&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;INIT_MEMORY&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;512M&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;MAX_MEMORY&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;3G&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 I refuse to change the way I play… 😂🔥 #comedy #videogames #min...</title>
    <id>https://go.waylonwalker.com/thought-865/</id>
    <updated>2025-11-02T16:12:02Z</updated>
    <published>2025-11-02T16:12:02Z</published>
    <link href="https://go.waylonwalker.com/thought-865/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://www.youtube.com/watch?v=2TUER4JftGA</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external embed-card-provider-youtube&#34;&gt;&#xA;  &lt;div class=&#34;embed-card-rich&#34;&gt;&#xA;&lt;lite-youtube videoid=&#34;2TUER4JftGA&#34; title=&#34;I refuse to change the way I play… 😂🔥 #comedy #videogames &amp;lt;a href=&#34; tags=&#34;&#34; minecraft=&#34;&#34; &#34;=&#34;&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;minecraft&#34; data-count=&#34;28&#34; data-reading-time=&#34;32&#34; data-reading-time-text=&#34;32 minutes&#34;&gt;#minecraft&amp;#34; playlabel=&amp;#34;Play: I refuse to change the way I play… 😂🔥 #comedy #videogames &lt;a href=&#34;/tags/minecraft/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;minecraft&#34; data-count=&#34;28&#34; data-reading-time=&#34;32&#34; data-reading-time-text=&#34;32 minutes&#34;&gt;#minecraft&lt;/a&gt;&amp;#34;&amp;gt;&lt;/lite-youtube&gt;&#xA;  &lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Microsoft has been addding features to Minecraft for over 10 years now.  Idk if there was momentum from the mojang theme, but we’ve barely paid attention to any updates in the last five years.  The ocean update was huge, caves and cliffs were huge then it trailed off to we play each release on release day, use commands to try out new features, then never touch them again either to play minecraft as we always have or to play a modded pack with crazy new features that really make an impact on gameplay.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Funk Track 1</title>
    <id>https://go.waylonwalker.com/shots/funk-track-1/</id>
    <updated>2025-09-21T15:52:07Z</updated>
    <published>2025-09-21T15:52:07Z</published>
    <link href="https://go.waylonwalker.com/shots/funk-track-1/" rel="alternate" type="text/html"></link>
    <summary type="text">Progress so far on the Funk server elytra track. It goes through two sea lanturn lit caves so far.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/ab41d5f8-92a5-4fde-966b-f791ff84f776.mp4&#34; class=&#34;glightbox-link&#34;&gt;&lt;video autoplay loop muted playsinline controls preload=&#34;metadata&#34; class=&#34;md-video&#34; poster=&#34;https://dropper.waylonwalker.com/api/file/ab41d5f8-92a5-4fde-966b-f791ff84f776.webp?h=675&amp;w=1200&#34;&gt;&lt;source src=&#34;https://dropper.waylonwalker.com/api/file/ab41d5f8-92a5-4fde-966b-f791ff84f776.mp4&#34; type=&#34;video/mp4&#34;&gt;funk-track-1-1080p.mp4&lt;/video&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Progress so far on the Funk server elytra track.  It goes through two sea lanturn lit caves so far.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 FROGS ep1 The home - YouTube</title>
    <id>https://go.waylonwalker.com/thought-702/</id>
    <updated>2025-06-17T13:08:54Z</updated>
    <published>2025-06-17T13:08:54Z</published>
    <link href="https://go.waylonwalker.com/thought-702/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://www.youtube.com/watch?v=bPlPkDEcZBA&amp;list=TLPQMTcwNjIwMjVHHHsm3llljQ&amp;index=3</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external embed-card-provider-youtube&#34;&gt;&#xA;  &lt;div class=&#34;embed-card-rich&#34;&gt;&#xA;&lt;lite-youtube videoid=&#34;bPlPkDEcZBA&#34; title=&#34;FROGS ep1 The home&#34; playlabel=&#34;Play: FROGS ep1 The home&#34;&gt;&lt;/lite-youtube&gt;&#xA;  &lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Wyatt built out this full world to start making a film series about FROGS.  The entire set it built on a flat world, but yet feels so immersive.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>wondercraft session one</title>
    <id>https://go.waylonwalker.com/wondercraft-session-one/</id>
    <updated>2025-01-13T15:06:46Z</updated>
    <published>2025-01-13T15:06:46Z</published>
    <link href="https://go.waylonwalker.com/wondercraft-session-one/" rel="alternate" type="text/html"></link>
    <summary type="text">My son and I are starting a new Minecraft server today called wondercraft.</summary>
    <content type="html">&lt;p&gt;My son and I are starting a new Minecraft server today called wondercraft.&lt;/p&gt;&#xA;&lt;h2 id=&#34;setup&#34;&gt;setup &lt;a href=&#34;#setup&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;We are running a few mods on this server notably FTB Ultimine for less grindy&#xA;resource gathering, Sodium for shaders, and Universal Shops.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/730b4480-6356-4ad6-aecc-4b4661603ee6.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/730b4480-6356-4ad6-aecc-4b4661603ee6.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;We are runninng on Minecraft 1.20.1, I &lt;em&gt;think&lt;/em&gt; this is because it was the&#xA;latest supported by Universal Shops, its at least one major release old at this&#xA;point.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/66550abc-060c-47b2-830f-be7355ad7120.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/66550abc-060c-47b2-830f-be7355ad7120.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I grabbed a few shaders, the ones that you see in this post are rethinking&#xA;voxels.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3d6ab456-64dd-4760-a27e-02c2326ea36b.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3d6ab456-64dd-4760-a27e-02c2326ea36b.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;spawn&#34;&gt;spawn &lt;a href=&#34;#spawn&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;We initially spawned in a plains biome near an acacia and forest biome.  We&#xA;ended up going straight for the forest, only coming back for some sheep and&#xA;wheat seeds.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2cb49488-0e5f-44f4-b89e-dc5eaa8bf077.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2cb49488-0e5f-44f4-b89e-dc5eaa8bf077.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;night-one-zombie-fight&#34;&gt;Night one Zombie fight &lt;a href=&#34;#night-one-zombie-fight&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On the first night we had the obligitory zombie fight before getting beds and bases set.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/28b09b9c-6dd9-4437-9330-bf0e52401b6d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/28b09b9c-6dd9-4437-9330-bf0e52401b6d.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;salmon-wrangler&#34;&gt;Salmon Wrangler &lt;a href=&#34;#salmon-wrangler&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;I was the designated food provider.  I setup a small wheat farm with about 64&#xA;seeds, then went out to hunt down some salmon for the immediate food need.  I&#xA;ended up with about a stack of salmon at the end of the session.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34; alt=&#34;387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34;/ data-glightbox=&#34;description: 387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;setting-up-shop&#34;&gt;Setting up Shop &lt;a href=&#34;#setting-up-shop&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;So as mentioned above we are running a mod for shops called universal shops.&#xA;This mod is new to me and my son wanted to run it inspired by watching&#xA;hermitcraft.  We both decided that diamonds were the goal currency, but we&#xA;wanted to set up some shops early so we settled on Oak logs as the currency.&#xA;My job was to setup food based shops while he set up ore based shops.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/7e585608-db41-436f-8daa-77399cb78e20.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/7e585608-db41-436f-8daa-77399cb78e20.webp&#34; alt=&#34;7e585608-db41-436f-8daa-77399cb78e20.webp&#34;/ data-glightbox=&#34;description: 7e585608-db41-436f-8daa-77399cb78e20.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;My earnings after the first day.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34; alt=&#34;3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34;/ data-glightbox=&#34;description: 3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;first-death&#34;&gt;First Death &lt;a href=&#34;#first-death&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;I forgot that I turned my sound off for a call, got lost on the chase of the&#xA;salmon and did not leave myself enough time to get to the top.&lt;/p&gt;&#xA;&lt;video autoplay=&#34;&#34; controls=&#34;&#34; loop=&#34;true&#34; muted=&#34;&#34; playsinline=&#34;&#34; width=&#34;100%&#34; class=&#34;rounded-xl border-pink-900 border-2&#34;&gt;&#xA;     &lt;source src=&#34;https://dropper.waylonwalker.com/api/file/f112d27a-3a77-4e8f-8bf7-8ff981b6355b.mp4&#34; type=&#34;video/mp4&#34;/&gt;&#xA;     Sorry, your browser doesn&amp;#39;t support embedded videos.&#xA;&lt;/video&gt;&#xA;&lt;h2 id=&#34;second-death&#34;&gt;Second Death &lt;a href=&#34;#second-death&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Playing sloppy again I was walking around at night with only three hearts left.&#xA;My son wanted me to check out his shop that he just built out and I got hit by&#xA;a skelly on the way up, after the first hit I was sitting at 1 heart with no&#xA;where to go.&lt;/p&gt;&#xA;&lt;video autoplay=&#34;&#34; controls=&#34;&#34; loop=&#34;true&#34; muted=&#34;&#34; playsinline=&#34;&#34; width=&#34;100%&#34; class=&#34;rounded-xl border-pink-900 border-2&#34;&gt;&#xA;     &lt;source src=&#34;https://dropper.waylonwalker.com/api/file/ab088aa3-2661-4551-9040-1fad928ec450.mp4&#34; type=&#34;video/mp4&#34;/&gt;&#xA;     Sorry, your browser doesn&amp;#39;t support embedded videos.&#xA;&lt;/video&gt;&#xA;&lt;h2 id=&#34;third-death&#34;&gt;Third Death &lt;a href=&#34;#third-death&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;This one is just plain embarrasing, I was lost in the flow of hunting salmon&#xA;again, not paying any attention.  I came up for air, but didn’t even gie time&#xA;for more than a couple bubbles to come back before diving back in and died&#xA;almost instantly.&lt;/p&gt;&#xA;&lt;video autoplay=&#34;&#34; controls=&#34;&#34; loop=&#34;true&#34; muted=&#34;&#34; playsinline=&#34;&#34; width=&#34;100%&#34; class=&#34;rounded-xl border-pink-900 border-2&#34;&gt;&#xA;     &lt;source src=&#34;https://dropper.waylonwalker.com/api/file/f36b068d-0094-4d24-8b19-314ee23d71b1.mp4&#34; type=&#34;video/mp4&#34;/&gt;&#xA;     Sorry, your browser doesn&amp;#39;t support embedded videos.&#xA;&lt;/video&gt;&#xA;&lt;h2 id=&#34;note-to-self&#34;&gt;Note to self &lt;a href=&#34;#note-to-self&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Next time run Minecraft in full screen so you don’t dox your start menu.&lt;/p&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Teleport to coop partner | Hypixel Forums</title>
    <id>https://go.waylonwalker.com/thought-485/</id>
    <updated>2024-12-30T17:19:10Z</updated>
    <published>2024-12-30T17:19:10Z</published>
    <link href="https://go.waylonwalker.com/thought-485/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://hypixel.net/threads/teleport-to-coop-partner.2250505/</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://hypixel.net/threads/teleport-to-coop-partner.2250505/&#34; class=&#34;embed-card-link&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-image&#34;&gt;&#xA;      &lt;img class=&#34;glightbox&#34; src=&#34;https://hypixel.net/styles/hypixel-v2/images/hypixel-512px.png&#34; alt=&#34;Teleport to coop partner — Hello,&#xA;Is there a command where you can teleport to your coop partner? Or is it just this Follow button in chat?  :)&#34; loading=&#34;lazy&#34;/ data-glightbox=&#34;description: Teleport to coop partner — Hello,&#xA;Is there a command where you can teleport to your coop partner? Or is it just this Follow button in chat?  :)&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Teleport to coop partner&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Hello,&#xA;Is there a command where you can teleport to your coop partner? Or is it just this Follow button in chat?  :)&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;Hypixel Forums · hypixel.net&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;/p warp will warp your party to your current server in hypixel skyblock&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.wayl.one/api/file/a4f5be07-5f79-450c-a40d-1f48ac086e05.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.wayl.one/api/file/a4f5be07-5f79-450c-a40d-1f48ac086e05.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 lonecraft</title>
    <id>https://go.waylonwalker.com/thought-210/</id>
    <updated>2024-03-07T14:20:48Z</updated>
    <published>2024-03-07T14:20:48Z</published>
    <link href="https://go.waylonwalker.com/thought-210/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://screenshots.waylonwalker.com/lonecraft.png</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;/static/https://screenshots.waylonwalker.com/lonecraft.png&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;/static/https://screenshots.waylonwalker.com/lonecraft.png&#34; alt=&#34;https://screenshots.waylonwalker.com/lonecraft.png&#34;/ data-glightbox=&#34;description: https://screenshots.waylonwalker.com/lonecraft.png&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;This is the best tree I have ever built in minecraft.  It took at least 4 stacks of logs and leaves despite what it looks like.&lt;/p&gt;&#xA;&lt;p&gt;It is placed where Welscraft’s island in the hermitcraft season 10 seed, but on our own server we call lonecraft.&lt;/p&gt;&#xA;&lt;p&gt;We started this server a few weeks after hermitcraft season 10 started, and play on it a few times per week.  It has a pretty successful day one iron farm that took us way more than one day to complete, and the farm behind this is our first ever villager driven farm.  Somehow potatoes got cross contaminated and now its pumping out potatoes and some bread, but no carrots or beat roots.&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;World Seed: 5103687417315433447&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Formatting codes – Minecraft Wiki</title>
    <id>https://go.waylonwalker.com/thought-209/</id>
    <updated>2024-03-07T14:16:23Z</updated>
    <published>2024-03-07T14:16:23Z</published>
    <link href="https://go.waylonwalker.com/thought-209/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://minecraft.wiki/w/Formatting_codes</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://minecraft.wiki/w/Formatting_codes&#34; class=&#34;embed-card-link&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-image&#34;&gt;&#xA;      &lt;img class=&#34;glightbox&#34; src=&#34;https://minecraft.wiki/images/Minecraft_Formatting.gif?117f6&#34; alt=&#34;Formatting codes – Minecraft Wiki — Formatting codes (also known as color codes) add color and modifications to text in-game.&#34; loading=&#34;lazy&#34;/ data-glightbox=&#34;description: Formatting codes – Minecraft Wiki — Formatting codes (also known as color codes) add color and modifications to text in-game.&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Formatting codes – Minecraft Wiki&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Formatting codes (also known as color codes) add color and modifications to text in-game.&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;Minecraft Wiki · minecraft.wiki&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Minecraft MOTD and server names have formatting codes so that you can get colors, bold, underlined, italics, in your message of the day or server name.  See the article for all the cods.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Minecraft Server on Docker (Java Edition)</title>
    <id>https://go.waylonwalker.com/thought-193/</id>
    <updated>2023-12-25T16:45:59Z</updated>
    <published>2023-12-25T16:45:59Z</published>
    <link href="https://go.waylonwalker.com/thought-193/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://docker-minecraft-server.readthedocs.io/en/latest/</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://docker-minecraft-server.readthedocs.io/en/latest/&#34; class=&#34;embed-card-link  has-avatar has-avatar-before&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34; style=&#34;--favicon-url: url(&amp;#39;/assets/markata/link-avatars/docker-minecraft-server.readthedocs.io.png&amp;#39;);&#34; data-favicon=&#34;/assets/markata/link-avatars/docker-minecraft-server.readthedocs.io.png&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Intro - Minecraft Server on Docker (Java Edition)&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Documentation for Minecraft Server on Docker&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;docker-minecraft-server.readthedocs.io&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;I just learned that if you can exec into the container running minecraft with the itzg/minecraft container you can run &lt;code&gt;rcon-cli&lt;/code&gt; to get command access to the server.  You need to set the &lt;code&gt;RCON_PASSWORD&lt;/code&gt; if you want to access rcon remotely, but if you have not already done this and have access to the server you can just run &lt;code&gt;rcon-cli&lt;/code&gt; when you are in.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Underground Bases with Wyatt</title>
    <id>https://go.waylonwalker.com/underground-bases-with-wyatt/</id>
    <updated>2023-07-09T10:41:29Z</updated>
    <published>2023-07-09T10:41:29Z</published>
    <link href="https://go.waylonwalker.com/underground-bases-with-wyatt/" rel="alternate" type="text/html"></link>
    <summary type="text">Playing minecraft with Wyatt today he started a server all on his own and had me join. All vanilla, only one rule, underground bases.</summary>
    <content type="html">&lt;p&gt;Playing minecraft with Wyatt today he started a server all on his own and had&#xA;me join. All vanilla, only one rule, underground bases.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/eb43e707-ae55-48f8-9916-86321b3b8754.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/eb43e707-ae55-48f8-9916-86321b3b8754.webp&#34; alt=&#34;underground-bases-1.webp&#34;/ data-glightbox=&#34;description: underground-bases-1.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I spawned into the server and it was already night time. I gathered up some&#xA;wood on my way down a tree, and was attacked by zombies before I could get any&#xA;tools, so I ran up another tree and crafted a crafting table.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/25a3493a-f08b-4ea8-8535-b03cc7bcbf00.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/25a3493a-f08b-4ea8-8535-b03cc7bcbf00.webp&#34; alt=&#34;underground-bases-2.webp&#34;/ data-glightbox=&#34;description: underground-bases-2.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Now to follow the rules, it’s time to head underground to build my base.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/74fc59aa-f0da-4643-a67a-36dc65480760.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/74fc59aa-f0da-4643-a67a-36dc65480760.webp&#34; alt=&#34;underground-bases-3.webp&#34;/ data-glightbox=&#34;description: underground-bases-3.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I made a mistake and died, but look at this view from my respawn point.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/7e852358-a680-460b-88c0-ed31b2a18501.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/7e852358-a680-460b-88c0-ed31b2a18501.webp&#34; alt=&#34;underground-bases-4.webp&#34;/ data-glightbox=&#34;description: underground-bases-4.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 18</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-18/</id>
    <updated>2022-12-22T13:38:54Z</updated>
    <published>2022-12-22T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-18/" rel="alternate" type="text/html"></link>
    <summary type="text">A crows nest added atop the storage silo offers a high lookout.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2435ba65-066b-468e-aaed-05a1bc3fbaf8.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2435ba65-066b-468e-aaed-05a1bc3fbaf8.webp&#34; alt=&#34;Minecraft Doc Day 18&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 18&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;A crows nest added atop the storage silo offers a high lookout.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 17</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-17/</id>
    <updated>2022-12-21T13:38:54Z</updated>
    <published>2022-12-21T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-17/" rel="alternate" type="text/html"></link>
    <summary type="text">Construction of a floating base begins on Day 16.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/bb760cbf-dac4-43bd-a76a-e8043ee9808d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/bb760cbf-dac4-43bd-a76a-e8043ee9808d.webp&#34; alt=&#34;Minecraft Doc Day 17&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 17&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Construction of a floating base begins on Day 16.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 12</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-12b/</id>
    <updated>2022-12-20T13:38:54Z</updated>
    <published>2022-12-20T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-12b/" rel="alternate" type="text/html"></link>
    <summary type="text">Farm animals gathered and penned on Day 12.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/418b606d-0062-469f-9382-ef301c3f3c38.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/418b606d-0062-469f-9382-ef301c3f3c38.webp&#34; alt=&#34;Minecraft Doc Day 12&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 12&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Farm animals gathered and penned on Day 12.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 12</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-12/</id>
    <updated>2022-12-19T13:38:54Z</updated>
    <published>2022-12-19T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-12/" rel="alternate" type="text/html"></link>
    <summary type="text">Beet and pumpkin farm plots prepared near the main base.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/e3bb0427-4665-4888-88d0-34e7953ec5c1.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/e3bb0427-4665-4888-88d0-34e7953ec5c1.webp&#34; alt=&#34;Minecraft Doc Day 12&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 12&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Beet and pumpkin farm plots prepared near the main base.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 11</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-11b/</id>
    <updated>2022-12-18T13:38:54Z</updated>
    <published>2022-12-18T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-11b/" rel="alternate" type="text/html"></link>
    <summary type="text">Standing on Wyatt’s freshly built dock overlooking the water.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2f420e32-8951-4d52-a758-f7a7ed1d0d07.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2f420e32-8951-4d52-a758-f7a7ed1d0d07.webp&#34; alt=&#34;Minecraft Doc Day 11&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 11&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Standing on Wyatt’s freshly built dock overlooking the water.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 11</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-11/</id>
    <updated>2022-12-17T13:38:54Z</updated>
    <published>2022-12-17T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-11/" rel="alternate" type="text/html"></link>
    <summary type="text">Wyatt joins to conquer a zombie spawner and build a dock together.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/f78cf44b-3446-40b0-9f4c-01cae8d6fb2d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/f78cf44b-3446-40b0-9f4c-01cae8d6fb2d.webp&#34; alt=&#34;Minecraft Doc Day 11&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 11&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Wyatt joins to conquer a zombie spawner and build a dock together.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 10</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-10/</id>
    <updated>2022-12-16T13:38:54Z</updated>
    <published>2022-12-16T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-10/" rel="alternate" type="text/html"></link>
    <summary type="text">Secret storage area built as part of a tiny base challenge on Day 9.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/5fe458fa-1f6c-4445-95a0-a61e2302e2b8.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/5fe458fa-1f6c-4445-95a0-a61e2302e2b8.webp&#34; alt=&#34;Minecraft Doc Day 10&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 10&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Secret storage area built as part of a tiny base challenge on Day 9.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 9</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-9/</id>
    <updated>2022-12-15T13:38:54Z</updated>
    <published>2022-12-15T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-9/" rel="alternate" type="text/html"></link>
    <summary type="text">Early storage silo construction begins with terraforming and chest placement.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/869dfbcf-85e6-4e17-aa2c-f031af6cac55.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/869dfbcf-85e6-4e17-aa2c-f031af6cac55.webp&#34; alt=&#34;Minecraft Doc Day 9&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 9&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Early storage silo construction begins with terraforming and chest placement.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 8</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-8/</id>
    <updated>2022-12-14T13:38:54Z</updated>
    <published>2022-12-14T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-8/" rel="alternate" type="text/html"></link>
    <summary type="text">After leaving the world paused, a surprise death screen leads to a survival reset.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/51b9ef6c-f921-4b5d-984d-92f4ab7982d2.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/51b9ef6c-f921-4b5d-984d-92f4ab7982d2.webp&#34; alt=&#34;Minecraft Doc Day 8&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 8&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;After leaving the world paused, a surprise death screen leads to a survival reset.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 7</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-7/</id>
    <updated>2022-12-13T13:38:54Z</updated>
    <published>2022-12-13T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-7/" rel="alternate" type="text/html"></link>
    <summary type="text">A newly constructed animal pen expands the farm.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/0ca36932-2233-423c-8081-7abfa369f0ff.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/0ca36932-2233-423c-8081-7abfa369f0ff.webp&#34; alt=&#34;Minecraft Doc Day 7&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 7&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;A newly constructed animal pen expands the farm.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 6</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-6/</id>
    <updated>2022-12-12T13:38:54Z</updated>
    <published>2022-12-12T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-6/" rel="alternate" type="text/html"></link>
    <summary type="text">End of Day 5 shows the finished perimeter fence and first animal pen.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/64607f0d-d323-419f-99cd-e16d03e7faf5.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/64607f0d-d323-419f-99cd-e16d03e7faf5.webp&#34; alt=&#34;Minecraft Doc Day 6&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 6&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;End of Day 5 shows the finished perimeter fence and first animal pen.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 5</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-5/</id>
    <updated>2022-12-11T13:38:54Z</updated>
    <published>2022-12-11T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-5/" rel="alternate" type="text/html"></link>
    <summary type="text">Start of Day 5 with work on the perimeter fence and gathering resources.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/a74de8ef-8194-4a85-ac99-82c05d8274f0.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/a74de8ef-8194-4a85-ac99-82c05d8274f0.webp&#34; alt=&#34;Minecraft Doc Day 5&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 5&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Start of Day 5 with work on the perimeter fence and gathering resources.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 4</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-4/</id>
    <updated>2022-12-10T13:38:54Z</updated>
    <published>2022-12-10T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-4/" rel="alternate" type="text/html"></link>
    <summary type="text">Outer perimeter fence under construction around the base during Day 4.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3db77e67-5ff9-4718-a6fa-524e1902173a.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3db77e67-5ff9-4718-a6fa-524e1902173a.webp&#34; alt=&#34;Minecraft Doc Day 4&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 4&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Outer perimeter fence under construction around the base during Day 4.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 3</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-3/</id>
    <updated>2022-12-09T13:38:54Z</updated>
    <published>2022-12-09T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-3/" rel="alternate" type="text/html"></link>
    <summary type="text">The roofline of the base is complete and the tree farm is cleared for fresh oak and acacia saplings.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/4e330854-f14e-437e-9ab6-cd24871083a7.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/4e330854-f14e-437e-9ab6-cd24871083a7.webp&#34; alt=&#34;Minecraft Doc Day 3&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 3&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;The roofline of the base is complete and the tree farm is cleared for fresh oak and acacia saplings.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 2</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-2/</id>
    <updated>2022-12-08T13:38:54Z</updated>
    <published>2022-12-08T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-2/" rel="alternate" type="text/html"></link>
    <summary type="text">Sun setting over the fresh house frame as Day 2 brings sand collection for windows.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2f362381-04df-4f74-a7f7-aa18707fc2be.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2f362381-04df-4f74-a7f7-aa18707fc2be.webp&#34; alt=&#34;Minecraft Doc Day 2&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 2&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Sun setting over the fresh house frame as Day 2 brings sand collection for windows.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 1</title>
    <id>https://go.waylonwalker.com/shots/mcdoc-day-1/</id>
    <updated>2022-12-07T13:38:54Z</updated>
    <published>2022-12-07T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/mcdoc-day-1/" rel="alternate" type="text/html"></link>
    <summary type="text">The wooden frame of the new house begins to take shape on Day 1.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2e442dcd-43ea-41e2-849a-82d55a5fb1a7.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2e442dcd-43ea-41e2-849a-82d55a5fb1a7.webp&#34; alt=&#34;Minecraft Doc Day 1&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 1&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;The wooden frame of the new house begins to take shape on Day 1.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 0</title>
    <id>https://go.waylonwalker.com/shots/minecraft-doc-day-0/</id>
    <updated>2022-12-06T13:38:54Z</updated>
    <published>2022-12-06T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/shots/minecraft-doc-day-0/" rel="alternate" type="text/html"></link>
    <summary type="text">Acacia biome spawn with trees and resources in a new hardcore world.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3753e4ed-378b-46d6-9784-7c89da81ce1a.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3753e4ed-378b-46d6-9784-7c89da81ce1a.webp&#34; alt=&#34;Minecraft Doc Day 0&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 0&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Acacia biome spawn with trees and resources in a new hardcore world.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>minecraft documentary</title>
    <id>https://go.waylonwalker.com/minecraft-documentary/</id>
    <updated>2022-12-06T13:38:54Z</updated>
    <published>2022-12-06T13:38:54Z</published>
    <link href="https://go.waylonwalker.com/minecraft-documentary/" rel="alternate" type="text/html"></link>
    <summary type="text">This is my first time journaling a Minecraft hardcore world, my son Wyatt is also documenting his journey in a survival world on wyattbubbylee.com.</summary>
    <content type="html">&lt;p&gt;This is my first time journaling a Minecraft hardcore world, my son Wyatt is&#xA;also documenting his journey in a survival world on&#xA;&lt;a href=&#34;https://www.wyattbubbylee.com/&#34;&gt;wyattbubbylee.com&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;h2 id=&#34;day-0&#34;&gt;Day 0 &lt;a href=&#34;#day-0&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;&lt;em&gt;init&lt;/em&gt;&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3753e4ed-378b-46d6-9784-7c89da81ce1a.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3753e4ed-378b-46d6-9784-7c89da81ce1a.webp&#34; alt=&#34;minecraft-doc-day-0.webp&#34;/ data-glightbox=&#34;description: minecraft-doc-day-0.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I logged into a brand new hardcore world. I was welcomed by a great Acacia&#xA;biome spawn full of resources. I quickly cut my first tree, crafted an axe and&#xA;set out to find my first sheep. I was able to find enough sheep for a bed,&#xA;several cows and pigs.&lt;/p&gt;&#xA;&lt;p&gt;I crafted a set of wooden tools, and farmed out a wheat farm till my wooden&#xA;hoed died at the shore of a nearby stream. I found a small stone outcropping&#xA;in the side of a hill and harvested nearly a full stack of cobblestone from my&#xA;first wooden pick.&lt;/p&gt;&#xA;&lt;p&gt;I ended the first day by sleeping in my bed safe from mobs.&lt;/p&gt;&#xA;&lt;h3 id=&#34;achievements&#34;&gt;Achievements &lt;a href=&#34;#achievements&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h3&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;bed&lt;/li&gt;&#xA;&lt;li&gt;furnace&lt;/li&gt;&#xA;&lt;li&gt;stone&lt;/li&gt;&#xA;&lt;li&gt;wheat farm&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;day-1&#34;&gt;Day 1 &lt;a href=&#34;#day-1&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2e442dcd-43ea-41e2-849a-82d55a5fb1a7.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2e442dcd-43ea-41e2-849a-82d55a5fb1a7.webp&#34; alt=&#34;mcdoc-day-1.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-1.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Thoughout the course of day one I collected wood and started the framework for&#xA;my new house.&lt;/p&gt;&#xA;&lt;h2 id=&#34;day-2&#34;&gt;Day 2 &lt;a href=&#34;#day-2&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2f362381-04df-4f74-a7f7-aa18707fc2be.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2f362381-04df-4f74-a7f7-aa18707fc2be.webp&#34; alt=&#34;mcdoc-day-2.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-2.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;The sun sets over the new frame of my house on Day 1&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Day two continued the framework of the house, and a bit of sand collection for&#xA;windows. I was a bit late to bed and saw four mobs spawn on the journeymap&#xA;before I made it in.&lt;/p&gt;&#xA;&lt;h2 id=&#34;day-3&#34;&gt;Day 3 &lt;a href=&#34;#day-3&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/4e330854-f14e-437e-9ab6-cd24871083a7.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/4e330854-f14e-437e-9ab6-cd24871083a7.webp&#34; alt=&#34;mcdoc-day-3.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-3.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;end of day 2&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;On day three I completed the roofline of the base, gathered some wood, and&#xA;cleared out all the grass in the tree farm. The tree farm has a fresh planting&#xA;of oak and acacia trees in it.&lt;/p&gt;&#xA;&lt;h2 id=&#34;day-4&#34;&gt;Day 4 &lt;a href=&#34;#day-4&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Thoughout day 4 I kept farming trees and creating my first outter perimeter&#xA;fence made of oak.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3db77e67-5ff9-4718-a6fa-524e1902173a.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3db77e67-5ff9-4718-a6fa-524e1902173a.webp&#34; alt=&#34;mcdoc-day-4.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-4.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;end of day 3&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h2 id=&#34;day-5&#34;&gt;Day 5 &lt;a href=&#34;#day-5&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/a74de8ef-8194-4a85-ac99-82c05d8274f0.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/a74de8ef-8194-4a85-ac99-82c05d8274f0.webp&#34; alt=&#34;mcdoc-day-5.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-5.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;start of of day 5&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;On day 5 I completed the perimeter fence and worked on my first animal pen.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/64607f0d-d323-419f-99cd-e16d03e7faf5.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/64607f0d-d323-419f-99cd-e16d03e7faf5.webp&#34; alt=&#34;mcdoc-day-6.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-6.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;End of Day 5&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h2 id=&#34;day-6&#34;&gt;Day 6 &lt;a href=&#34;#day-6&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;I completed another animal pen.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/0ca36932-2233-423c-8081-7abfa369f0ff.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/0ca36932-2233-423c-8081-7abfa369f0ff.webp&#34; alt=&#34;mcdoc-day-7.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-7.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;a new animal pen from day 6&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h2 id=&#34;day-7&#34;&gt;Day 7 &lt;a href=&#34;#day-7&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On day 7 I left the game paused and went to some meetings, I came back to a&#xA;death screen 😥. I am not going out this way, I opened to lan with cheats and&#xA;reset my gamemode to survival.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/51b9ef6c-f921-4b5d-984d-92f4ab7982d2.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/51b9ef6c-f921-4b5d-984d-92f4ab7982d2.webp&#34; alt=&#34;mcdoc-day-8.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-8.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;day-8&#34;&gt;Day 8 &lt;a href=&#34;#day-8&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;I started a storage silo by doing some terraforming and placing down the first&#xA;chests.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/869dfbcf-85e6-4e17-aa2c-f031af6cac55.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/869dfbcf-85e6-4e17-aa2c-f031af6cac55.webp&#34; alt=&#34;mcdoc-day-9.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-9.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;day-9&#34;&gt;Day 9 &lt;a href=&#34;#day-9&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On Day 9 I started a challenge from Wyatt to create a tiny base. I chose to&#xA;make a secret storage area in the storage silo.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/5fe458fa-1f6c-4445-95a0-a61e2302e2b8.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/5fe458fa-1f6c-4445-95a0-a61e2302e2b8.webp&#34; alt=&#34;mcdoc-day-10.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-10.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;day-10&#34;&gt;Day 10 &lt;a href=&#34;#day-10&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On day 10 Wyatt joined me, he built a dock and I found a zombie spawner.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/f78cf44b-3446-40b0-9f4c-01cae8d6fb2d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/f78cf44b-3446-40b0-9f4c-01cae8d6fb2d.webp&#34; alt=&#34;mcdoc-day-11.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-11.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;We conquered the Zombie Spawner&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2f420e32-8951-4d52-a758-f7a7ed1d0d07.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2f420e32-8951-4d52-a758-f7a7ed1d0d07.webp&#34; alt=&#34;mcdoc-day-11b.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-11b.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Standing on Wyatt’s new dock&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h2 id=&#34;day-11&#34;&gt;Day 11 &lt;a href=&#34;#day-11&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Wyatt planted some beets, and made space for pumpkins.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/e3bb0427-4665-4888-88d0-34e7953ec5c1.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/e3bb0427-4665-4888-88d0-34e7953ec5c1.webp&#34; alt=&#34;mcdoc-day-12.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-12.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;day-12&#34;&gt;Day 12 &lt;a href=&#34;#day-12&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On day 12 we gathered up some farm animals.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/418b606d-0062-469f-9382-ef301c3f3c38.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/418b606d-0062-469f-9382-ef301c3f3c38.webp&#34; alt=&#34;mcdoc-day-12b.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-12b.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;day-13-15&#34;&gt;Day 13-15 &lt;a href=&#34;#day-13-15&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Wyatt and I went spelunking in the caves for iron.&lt;/p&gt;&#xA;&lt;h2 id=&#34;day-16&#34;&gt;Day 16 &lt;a href=&#34;#day-16&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Wyatt started his floating base&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/bb760cbf-dac4-43bd-a76a-e8043ee9808d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/bb760cbf-dac4-43bd-a76a-e8043ee9808d.webp&#34; alt=&#34;mcdoc-day-17.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-17.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;day-17&#34;&gt;Day 17 &lt;a href=&#34;#day-17&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On Day 18 I created the crows nest on top of the storage silo.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2435ba65-066b-468e-aaed-05a1bc3fbaf8.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2435ba65-066b-468e-aaed-05a1bc3fbaf8.webp&#34; alt=&#34;mcdoc-day-18.webp&#34;/ data-glightbox=&#34;description: mcdoc-day-18.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Modded Minecraft in Docker</title>
    <id>https://go.waylonwalker.com/modded-minecraft-in-docker/</id>
    <updated>2022-02-16T14:44:38Z</updated>
    <published>2022-02-16T14:44:38Z</published>
    <link href="https://go.waylonwalker.com/modded-minecraft-in-docker/" rel="alternate" type="text/html"></link>
    <summary type="text">In my adventure to put more homelab in docker, I moved our modded minecraft setup to docker.</summary>
    <content type="html">&lt;p&gt;In my adventure to put more &lt;a href=&#34;/homelab/&#34; class=&#34;glossary-term&#34; title=&#34;A place to self host applications. For me this is primarily self built web applications, and applications for sharing files with my family. Techno Tim has a...&#34;&gt;homelab&lt;/a&gt; in docker, I moved our modded&#xA;minecraft setup to docker.&lt;/p&gt;&#xA;&lt;h2 id=&#34;getting-mods&#34;&gt;Getting Mods &lt;a href=&#34;#getting-mods&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;So far I have found all of our mods from &lt;a href=&#34;https://www.curseforge.com/minecraft/mc-mods&#34; style=&#34;--favicon-url: url(&amp;#39;/assets/markata/link-avatars/www.curseforge.com.ico&amp;#39;);&#34; data-favicon=&#34;/assets/markata/link-avatars/www.curseforge.com.ico&#34; class=&#34;has-avatar  has-avatar-before&#34;&gt;curse&#xA;forge&lt;/a&gt;.  modpacks make&#xA;getting multiple mods working together much easier, someone else has&#xA;already vetted a pack of often times 100+ mods that all play well&#xA;together.  I have yet to get these working in docker, I will, but for&#xA;not I just have individual mods.&lt;/p&gt;&#xA;&lt;h2 id=&#34;download-file&#34;&gt;download file &lt;a href=&#34;#download-file&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;under the hood docker is using wget to get the mod. The link you click&#xA;on from curseforge will block wget.  What I do is pop open the devtools&#xA;(f12 in chrome), click on the network tab, click the download link on&#xA;the web page, and watch the real link show up.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://images.waylonwalker.com/minecraft-mod-wget-file.png&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://images.waylonwalker.com/minecraft-mod-wget-file.png&#34; alt=&#34;minecraft mod in netwrok tab&#34;/ data-glightbox=&#34;description: minecraft mod in netwrok tab&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;docker-compose&#34;&gt;Docker-compose &lt;a href=&#34;#docker-compose&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;I am using docker compose, it makes the command much easier to start,&#xA;and all the things needed stored in a file.  I am not using compose to&#xA;run multiple things, just for the simple start command.&lt;/p&gt;&#xA;&lt;p&gt;Create a directory for your server and add the following to a&#xA;&lt;code&gt;docker-compose.yml&lt;/code&gt; file.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nt&#34;&gt;version&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;3.8&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;services&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;mc&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;container_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;walkercraft&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;image&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;itzg/minecraft-server&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;ports&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;- &lt;span class=&#34;m&#34;&gt;25565&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;m&#34;&gt;25565&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;environment&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;EULA&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;TRUE&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;TYPE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;FORGE&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;VERSION&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;m&#34;&gt;1.16.5&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;MODS_FILE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;/extras/mods.txt&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;REMOVE_OLD_MODS&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;true&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;tty&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;true&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;stdin_open&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;true&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;restart&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;unless-stopped&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;ports&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;- &lt;span class=&#34;m&#34;&gt;25565&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;m&#34;&gt;25565&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;volumes&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;- &lt;span class=&#34;l&#34;&gt;./minecraft-data:/data&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;- &lt;span class=&#34;l&#34;&gt;./mods.txt:/extras/mods.txt:ro&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;volumes&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;data&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;modstxt&#34;&gt;mods.txt &lt;a href=&#34;#modstxt&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Once you have your mod file link from the network tab add them to a&#xA;mods.txt file next to your docker-compose file.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;https://media.forgecdn.net/files/3620/189/engineersdecor-1.16.5-1.1.16.jar&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;start-your-server&#34;&gt;start your server &lt;a href=&#34;#start-your-server&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Once you have made it this far starting the server is pretty simple.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker compose up -d&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;kill-your-server&#34;&gt;kill your server &lt;a href=&#34;#kill-your-server&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;If your still in the same directory, taking down the server should be&#xA;pretty easy as well.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker compose down&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# if that does not work you can kill it&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker ps&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# copy the id of your container&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker &lt;span class=&#34;nb&#34;&gt;kill&lt;/span&gt; &amp;lt;id&amp;gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Running a Minecraft Server in Docker</title>
    <id>https://go.waylonwalker.com/docker-minecraft-server/</id>
    <updated>2022-02-07T02:35:21Z</updated>
    <published>2022-02-07T02:35:21Z</published>
    <link href="https://go.waylonwalker.com/docker-minecraft-server/" rel="alternate" type="text/html"></link>
    <summary type="text">I&#39;ve ran a Minecraft server at home since December 2017 for me and my son to play on. We start a brand new one somewhere between every day and every week....</summary>
    <content type="html">&lt;p&gt;I’ve ran a Minecraft server at home since December 2017 for me and my&#xA;son to play on.  We start a brand new one somewhere between every day&#xA;and every week.  The older he gets the longer the server lasts.&lt;/p&gt;&#xA;&lt;p&gt;In all these years, I’ve been popping open the command line and running&#xA;the server manually, and even inside of Digital Ocean occasionally to&#xA;play a more public server with a friend.&lt;/p&gt;&#xA;&lt;p&gt;My buddy Nic has been sharing me some of his &lt;a href=&#34;/homelab/&#34; class=&#34;glossary-term&#34; title=&#34;A place to self host applications. For me this is primarily self built web applications, and applications for sharing files with my family. Techno Tim has a...&#34;&gt;homelab&lt;/a&gt; setup, and it’s&#xA;really got me to thinking about what I can run at home, and Dockerizing&#xA;all the things.  Today I found a really sweet github repo that had a&#xA;minecraft server running in docker with a pretty incredible setup.&lt;/p&gt;&#xA;&lt;p&gt;I ended up running the first thing in the Readme that included a volume&#xA;mount.  If you are going to run this container, I HIGHLY reccomend that&#xA;you make sure that you have your world volume mounted, otherwise it will&#xA;die with your docker container.&lt;/p&gt;&#xA;&lt;h2 id=&#34;docker-compose&#34;&gt;Docker Compose &lt;a href=&#34;#docker-compose&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;With the following stored as my &lt;code&gt;docker-compose.yml&lt;/code&gt; in a brand new and&#xA;otherwise empty directory I was ready to start the server for the night.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nt&#34;&gt;version&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;3&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;services&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;mc&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;container_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;walkercraft&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;image&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;itzg/minecraft-server&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;ports&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;- &lt;span class=&#34;m&#34;&gt;25565&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;m&#34;&gt;25565&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;environment&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;EULA&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;TRUE&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;tty&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;true&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;stdin_open&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;true&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;restart&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;unless-stopped&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;volumes&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;c&#34;&gt;# attach a directory relative to the directory containing this compose file&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;- &lt;span class=&#34;l&#34;&gt;./minecraft-data:/data&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To start the server we open up the terminal in this directory and run&#xA;the follwing command.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker compose up -d&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Once its up and running we can run commands on the server simply by&#xA;attaching to it.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker attach walkercraft&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;a-few-common-commands-we-run-in-the-server&#34;&gt;A few common commands we run in the server &lt;a href=&#34;#a-few-common-commands-we-run-in-the-server&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;We play very casually most of the time so we will set keepInventory to&#xA;true so that we do not loose our inventory when we die.  Sometimes we&#xA;also op ourselve so that we can toggle gamemode into creative.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# set the game to keep your inventory when you die.&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;/gamrule keepInventory &lt;span class=&#34;nb&#34;&gt;true&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# give everyone operater priveledges to they can run commands&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;/op @a&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# give playername op&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;/op playername&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
</feed>