I Built the PERFECT Game Server with Pterodactyl and Docker

Video Information

I’ve been on a quest trying to build the perfect game server one that lets me host games like minecraft valhem counter-strike team fortress 2 terraria and more i wanted one with a management panel that allows me to quickly spin up new game servers and tear them down one that i could use to

See logs and quickly issue commands and also one that’s user friendly secure can scale and while we’re at it throw in free and open source and make it docker to the core and that’s when i found pterodactyl pterodactyl is a free and open source game management panel that

Is built on a modern stack it’s designed with security in mind and runs all games and servers isolated in docker containers it has a user-friendly ui that lets you quickly create game servers monitor their status issue commands add users edit and modify game server files and much much more it supports games like

Minecraft russ terraria team fortress 2 counter-strike garry’s mod arc factorial grand theft auto risk of rain 2 satisfactory space engineers and many many others and with all of this functionality comes a little bit of complexity but there’s some terms we’ll have to talk about pterodactyl is made

Up of a few parts first we have a pterodactyl server which is actually a game panel this is where you configure your server and your games next we have wings wings are really the control plane for all of your nodes and nodes are just servers so each of the servers run the

Wings agent and this is how games are deployed to your server nodes i say server knows because you can actually have more than one each node that has the wings agent installed on it can have game servers deployed to it we’re going to stick with one node but it’s easy to

Expand later next going down this turn tree we have nests yes play along with this metaphor for a minute nest are really a collection of individual games for most games you will have one nest but multiple games can belong to a nest games are called eggs

Yes eggs eggs are a combination of a game in configuration and like i said you could have multiple in one nest take for instance minecraft you may have a nest called minecraft but multiple eggs like bedrock paper vanilla or other variations of the game okay here’s one

More bird metaphor and then we’re done it’s yolks seriously yolks yolks are a pre-built docker image that work with eggs these are the images that will run inside of our nodes so to recap pterodactyl is a panel that you can add one or more nodes that run the wings

Agent and works with docker to create game servers of which are part of a nest that includes one or more eggs and that egg container image is a yoke hopefully you got all that because there will be a pop quiz at the end this has traditionally been challenging however

Over the last week i’ve put all of this together using docker and would love to share it with you so today we’re going to set up pterodactyl panel using docker we’re going to get the panel up and running with a mariadb database a redis database for caching and working with

The reverse proxy so we can do all of this securely we’re then going to set up and configure docker wings agent on our nodes so we can deploy game servers to it then we’re going to set up and configure games like minecraft counter strike terraria team fortress 2 and even

Belgium which gives you a great start to the perfect gaming server so what do we need to get started we need two servers both that can run docker one for our panel and one to run all of our game servers if you’re running containers already somewhere else like fortener or

Even kubernetes that will work great for your panel so all you need is another server to run your games we’ll need to remote into our first server the one that’s going to run the panel once we’re in here we’ll want to create a folder for pterodactyl

And then once we’re in here i’m going to create a folder called panel and then in this folder we’re going to create a docker compose file and in the docker compose file goes this file right here so this is our daca compose for the panel service as you can see this stack

Does quite a bit a lot of this are the default settings and some of it is tweaking that i had to do to get this to work but i did mention that we’ll need two databases one mariadb and another redis for caching and this stack includes that so you don’t need to worry

About that but if you have those databases somewhere else you can supply credentials for them but if we look at the stack we’re just doing some configuration here we’re setting up our database passwords and credentials we’re setting up some additional environment settings here this app url here you’ll

Want to make sure it points to the app url when this is hosted so i mentioned we’re going to put this behind a reverse proxy it’s kind of important you don’t have to but i highly recommend doing it need help setting up a reverse proxy i’ve got a couple guides on them so

Check those out but this is going to be the https endpoint that this is hosted on this is only hosted internally you can see it’s gameserver.local.tektronik.us then you’ll want to make sure you set the timezone and this is the time zone of the server if you’re using utc you

Can put utc or if you’re using a time zone based on location you can set that then we’ll set an email for the app service author this isn’t too important right now but what is really important is this trusted proxy this took me a while to figure out so if you’re putting

This behind a reverse proxy you’ll want to make sure that you set your trusted proxy now this will be the ip address of your reverse proxy if you’re having troubles like i did in the beginning you can say that all proxies are trusted as

You can see i did with the star it’s a wild card but i would highly recommend replacing this star with the ip address of your reverse proxy if not you’ll have a lot of problems like i did next you can set up mail i didn’t set this up but

This is nice and handy so that if someone that’s using your panel needs to reset their password it will email them a reset link i’m the only one using this panel so i’m not going to configure it but nice to know it’s there next below you’ll see some more configuration for

Our services as i mentioned we’re going to set up mariadb we’re going to map some volumes to where that data lives we’re going to set up some username and passwords you should probably change this we’re going to use this for now but this is going to create a database with

The use of pterodactyl and it’s going to use our password from above then it’s going to set up a redis database so redis is a in-memory database key value pair it’s used for mainly for caching but a lot of other things super high performance and pterodactyl uses this next we’re going to expose

Some ports so we’re only going to expose 80 and 443. technically i think we only need to do 443 but we’re going to expose them both then we’re linking both our database and our cache setting up some volumes and then setting up some more configuration for our database and our

Environment and then setting up a network for these to communicate on so you’ll want to tweak these to your liking but i would highly recommend just copying and pasting mine from the documentation and you can find that in the description below so let’s paste this in our docker compose

And save it then let’s spin this up using docker dash compose up dash d dash dash force dash recreate and if you’re having problems with docker dash compose i think in the latest version they’ve split them out to say docker space compose but if you’re using an older

Version and upgraded i think they created an alias for you anyways let’s spin this up so it created our database our mariadb database then it created our cache or redis cache and then it created the panel so now we should be able to go

Out and see our panel and now if you go out to the pterodactyl panel we have a sign in awesome so what’s our username and password no clue because we didn’t set one so in order to set one we actually need to go back to our server

And we need to run a command it’s this docker dash compose run dash rm panel php artisan and then p user and then mac or make so this will actually exact into that pod and initiate a command so we can create a user so let’s do that first

Question isn’t it administrator yes then we’ll enter an email address then we’ll enter our username then we’ll enter a password now we should be able to log into the panel and we got signed in this is our dashboard we don’t have any servers yet so we need to create some but let’s

Check out the settings first if we go into settings we can see an overview of all of the settings you can see things like obviously settings application api if you want to use their api database location nodes which we’ll set up here in a little bit servers users

Mounts and nests so the first thing we want to do is actually set up one of our nodes or one of our servers not a game server but a node or a virtual machine or a physical machine that will end up running our game servers so let’s start

That process first first you think you go into nodes but as soon as you try to create one it says we need to create a location first so let’s create a location so a location can be a physical location a virtual location or really anything to help group your servers

Together i’m just going to call this one home once we create our location then we can create a node so to create our node the first thing we want to do is give it a name now i’m just going to give mine the same name of the node the fully

Qualified domain name which brings us back to our fully qualified domain name so here i’m going to set the same thing here and so this is where it gets a little bit complicated and where i went off in the weeds earlier this week and so we want to communicate over ssl for

Obvious reasons and if your panel’s running ssl your nodes will also need to be running ssl for the agent for that endpoint it’s a little bit tricky here but you want to choose use ssl connection obviously and then you’ll want to say you’re behind a proxy you’ll

Need to choose that this is behind a proxy otherwise when the wings agent starts up it’ll try to look for some certificates that it generated that aren’t going to be there so basically telling it it’s behind a proxy says hey we’re going to supply certificates for

You but still use ssl that’s the way i understand it so make sure you choose behind a proxy and if you’re doing this without certificates just to test it out you would set these both to use http and you’re not using a proxy anyways took a

While for me to figure that out next we’ll need to set the total memory for this node and this is how much memory the node can use i’m going to say mine can use 10 gigs and i’m going to say the memory over allocation is zero next is

How much disk space this node will use i’m setting mine to 100 gigs now that seems like a lot but some games that we’re going to install can be really big so this is really going to be up to you i would go higher and give this machine

More disk space than you ever think you’re going to use because some game servers are really big and i’m going to do the same thing the disk over allocation is zero and the daemon port this is where i got tripped up quite a bit quite a bit so traditionally you

Would set the daemon port to 8080 but i found that with this combination of using ssl saying i’m behind a proxy using my own reverse proxy i need to set the daemon port to 443 sounds kind of weird but i actually do need to do it i

Mean it makes sense if you’re saying https but i thought i could map it in my reverse proxy to 443 and then have it switch and use a port of 8080 but we actually have to use this port in the week’s agent that you’ll see here in a

Second anyways if you’re doing this behind a reverse proxy like i am i would highly recommend using 443 otherwise you’re gonna go crazy okay so now we can create this node but before we do we actually need to install the agent on that node the wings agent wings

Ah so this is going to be on our second server now and i promise it gets a lot easier after this this is the hardest part of this whole entire setup and i probably spent a good five six hours trying to figure this out so we’ll want

To remote into the server where our games will be running remember the one that’s running the wings agent and we’ll want to make a folder called pterodactyl and then we’ll cd into that directory and then we’ll make a directory called wings and then we’ll cd into that directory

And you should see we don’t have anything in here so what’s going to go in here well a docker compose file so what’s going to go in that docker compose file are wings agent so this is our wings agent and this is what we’ll be pasting into that docker compose file

This one’s a lot smaller than the other one but really what it is is an agent that exposes some ports that allows communication between the server and the node to deploy games to it and so pretty high level what we’re doing is exposing some ports setting some environment

Variables setting a username that’s the same one that should match on the server panel mapping some volumes and setting up some networks okay so let’s copy this file and let’s paste it into here let’s close out of there then let’s bring our agent up and if we check our docker logs we see

Some errors but this is kind of normal because we didn’t add a configuration file which is a good segue into creating our configuration file here in a second so let’s go back into the server now and we have this form partially filled out let’s make sure everything’s good name

Public name use ssl behind a proxy memory set disk space set and our ports are set so now let’s create a node so it doesn’t look like anything’s happening so let’s go to nodes and we can see here that our node is listed but we can see

This heart not sure why it’s a heart but this is not a good sign you should see a green heart not a red heart so it can’t connect to our node because we need to create a configuration for it so let’s drill into this node let’s go into configuration and here’s our

Configuration for this node to be able to connect to our server so we should see some hints of what we configured we can see here that our host is going to be localhost or all ips on this machine but we’re saying the port is 443 and we

See that ssl enabled is false this is what i was talking about earlier we don’t want to supply our own certificates because we’re behind a reverse proxy and then we’re seeing some additional ports so sftp so it can transfer data to the server and then allow mounts we don’t need to worry

About that and then remote so this is where our server panel is this should be pointing to your server panel and it should be https so let’s copy this configuration and it says it needs to go into etsy pterodactyl in a file called config.yaml so let’s go back to our server and do

That so let’s cd into etc paradoctyl let’s see pterodactyl do an ls we don’t see a config here so i actually need to do a sudo nano config dot yml or yaml paste the contents in here save this exit then let’s recreate this container and after it’s recreated let’s

Do a docker logs for this container and now we actually see a good sign so some good logs so let’s go back to our server panel now if we go into nodes we now have a green heart so this is a good sign if you make i shouldn’t say if

When you make it to this point this means you’re at a good point if you don’t see a green heart i wouldn’t do anything else until you make this heart green it’s kind of confusing but take it slow and make sure you have everything filled out properly and if you’re behind

A reverse proxy make sure that those dns entries are actually served out through https so this is a good sign let’s go into our node now so now it can communicate with this node again no good sign next thing we need to do is assign allocations

I had no idea what this was until i started using this but basically we need to set aside a block of ports that we can use on the server to run our game servers and we need to assign those to an ip address so what we need to do here

Is put the ip address of this node it’s actually hard to figure out what ip address you need i mean after i got it working and i explained it the way i just did it makes sense but everyone says put in the ip address of your

Server and in my head i think the panel’s the server no you put in the ip address of this node that we’re going to configure and for ports you’re going to want to use a block of ports for your servers now most game servers are going

To have one two three four five ports and then you multiply that by all of your games you can go as far and as wide as you want so i typically pick 27 000 to 27.0999 so that gives me 100 ports so i’m saying hey this server is going to

Host games on ports 27 000 to zero 27.000 nine and if you need more ports than that feel free to add more and you wanna pick ports that are in a higher ranged ones that aren’t typically used but since this node isn’t doing anything besides running our games and

Running this wing’s agent we shouldn’t have any conflicts with any ports so it’s a safe bet 27 000 to 27099 and we’ll submit this and then once we submit this we can see okay now this ip address you see right here this ip address which is this node

Has assigned a port of twenty seven thousand and it has a port of twenty seven thousand one and this becomes important here a little bit when we start our servers which is a great segue into configuring our first game server everything we did up until now was is pretty challenging everything

Else is super fun so let’s get into that let’s create our first server so we want to create a game server what game server do we want to create so if we go down here to our nest configuration you can see our nest is minecraft this is what i was talking

About earlier you have a nest and you have eggs so the nest is minecraft an umbrella of minecraft and under that are different flavors of minecraft let’s pick vanilla minecraft and say that this server is going to be minecraft so let’s scroll back up and name this i’m going to name this

Minecraft vanilla the server owner you’ll always need to assign this i forget to pick myself every time but sign the server to someone then you’re going to allocate this to a server this is why we created allocations so we have our game server node right here it’s already selected and then we have

Allocations these are the ports we’re going to assign them to and you can see i have 100 ports to choose from i’m going to choose the first one makes it a little bit easier you can assign additional allocations if for some reason this server needs additional ports but we don’t need that for

Minecraft next are database limits allocation limits backup limits i don’t have any of that set so i’m not going to touch any of that now we have some resource management for this container really i’m going to set up only a couple of things i’m going to say that this

Minecraft server can use up to a gig of ram zero swap and then i’m going to actually say it can use 2048 two gigs of disk space now like i mentioned earlier some servers are going to use a lot more disk space and some are going to use a lot

Less you can configure this now if you see that your server won’t start because it’s out of disk space just bump this up a little bit restart it and it should run fine but now that we have that going i should be able to say create server

And if we go into this tab right here this pop out we actually can see our server is starting up so this server starting up i didn’t pick the java image you should most likely pick the latest version of java for this so let’s click update docker image to the latest java it’s

Nice it prompted me should have picked it to begin with because i think it was on java 6. next it’s going to ask you for the ula for minecraft this is typically hard i think you’d have to create some text file or set some environment variables they’re asking you

Right here which is super nice say accept pulling those images down starting our minecraft server now it’s preparing our world and you can see we get some stats down here the memory usage some cpu usage that’s nice we can see over here ram disk space super nice

If you don’t see these charts down here there’s a quick fix you need to add a line to your grub entry and then update your grub i’ll have that in the documentation just in case it took me another 45 minutes to hunt down and figure out so i’ll have that in the

Documentation if you don’t see this but most likely you should all right our server is now running awesome well it was running and then it finished everything and then it now prompted the java update so it’s going to run that really quick pick the latest version of

Java if you do this and you won’t run into that but this should go fairly quick because i think everything was already cached so it did crash once and i think it’s because i didn’t give it enough ram so let’s actually kill this and do this

Really quick i can show you how that works go back to our server settings go back to our servers choose minecraft go into our build configuration let’s give it two gigs of ram let’s update that and while we’re at it let’s change our docker configuration to say it’s 17

To begin with save modifications then let’s pop back out let’s start it back up now we can see we have two gigs of ram and it started with open jdk 17 so off to a good start should have did that from the beginning okay now the server

Is running and it’s green so let’s connect to it so let’s launch the client say play now we have the client running let’s say multiplayer let’s edit the server because i already tested one and what’s our ip address it’s right up here it’s being served out through 192 168

30.33 and it’s on port 27 000. so let’s say done and let’s try to connect we look at the logs we could say hey techno tim logged in and joined so now i’m actually on this server that we’re self-hosting awesome so there’s minecraft easy enough now let’s choose a different server

Let’s disconnect we can see we’re disconnected and now let’s create a new server go into servers and let’s create a new one and let’s go down and see what else is available so it looks like we only have a few servers here but actually we have more because these are

More like engines or nests if you will but under source engine we can see that we have a lot of eggs because these are all based on the same type of server so we can spin up arc counter strike gary’s mod insurgency or team fortress 2. so let’s

What should we do team fortress 2 or or counter-strike let’s go team fortress 2 probably not a popular opinion but let’s do that so let’s say it’s tf2 server owner is going to be me and here we go again with allocations that node the only node i have and a new ip

Address 27001 so that’s enough for there memory i’m going to give this more memory i’m going to give this 4 gigs and disk space this actually needs quite a bit of disk space so i found this needs around 12 or 13 gigs of disk space i’m

Going to give it that number because i found that works that’s kind of the minimum but it needs a lot of disk space for it then we’ll see some additional settings down here the game id we don’t need to change this and the default map we can

Change this if we want so we should be able to create a server now and if we go into servers now and we can see team fortress 2 we’ll pop out to the console and we can see this is downloading and extracting so this is going to take some

Time and this is actually pretty cool because it uses steamcmd to download the game anonymously from steam pull it down extract it and start your server so while that’s going let’s start up another one so what do we do if we need to add a custom game as we saw we can

Create new servers and we can see here that we have a limited amount of games don’t get me wrong it’s a decent amount but what happens if we want to add more wow the community has built tons of nests with tons of games and it’s

Actually really cool so if we go out to this github repo parker vcp eggs will find a lot of eggs and in here we can see different eggs for games so if we go into game eggs we can see we have a lot of a lot of eggs here a lot of servers

Among us beaming factorio minecraft terraria and a ton of other ones too and there’s actually more nested within the steam folder so steam cmd folders if we go into there these are a whole bunch more of steam games that launch with steam cmd that they’ve already configured for us so

Arma seven days to die left 4 dead left 4 dead 2 quake starbound team fortress 2 classic the forest tower unite valheim and more so let’s actually pick one i’m going to pick something totally different and i’m going to pick terraria so within terraria this would be our

Nest and in here we have different eggs so we have t-mod loader t-shock and vanilla let’s grab vanilla so what we need to do here is actually just copy this json right here so if you see each server name is a json file we go into

There we have the json so let’s actually copy this json let’s create a new file i’m going to name this terraria.json and in here i’m going to paste that json and save it now that we have that saved let’s actually go back to our server and then

Back in our server instead of going into servers let’s actually go into nest so let’s create a new nest you can see the ones that we had here already so let’s create a new nest i’m going to name this terraria and save it that doesn’t give us a game

That just gives us an umbrella a nest for all of our eggs what i usually do now because i’m not sure what to do here i go back to nests again and then i say import an egg so let’s import an egg and let’s find that json file we just created and

Here’s the file we created terraria.json and then it’s going to ask us which nest we want to associate this egg with so i’m going to choose terraria here import and now we have it so now if we go into nests we see it here and we can see our nest in our egg

Here’s our egg down here so let’s create a server now for terraria so create new terraria name this vanilla server owner is me allocation again is the one server node we have on these ports then we’re gonna set the memory i’m gonna give this a gig

Of memory and disk space i’m gonna give this two gigs of disk space i don’t think it needs much now we’ll choose our new nest of terraria didn’t spell array and then choose our egg which is vanilla and now you’ll see we have some additional configuration and this comes

From that json file so i can set the version i want i’m going to set it to latest in i can name the world if i’d like how many max players the world size difficulty and a message of the day but i’m not going to set any of that let’s

Create a server now this is installing let’s check the panel we can see it’s pulling all of that down so while that’s going let’s go back and check on team fortress 2. so let’s go into servers team fortress 2 and go back to our panel and it looks

Like that’s all ready to go and you can see my public ib address but i’ll hide that here in a little bit but team fortress 2 is ready to go so let’s launch it and i just realized hopefully my music wasn’t too loud this whole time i’ve

Been recording i think i’ve been playing music in the background too so i apologize i don’t know i’ll figure it out rookie hour anyway so now let’s join this server actually let’s collapse this down a little bit let’s take it out of full screen mode let’s go into windowed run

In a window okay okay just going to make this a little bit smaller so we can see it while we play okay let’s go to find a game community servers created a server let’s connect we can already see i connected to the server here cool it also woke up

From hibernation so it must stay in a low power state it’s vax secure for any cheat so this might take a second the first time you launch it and here we go we’re connected continue choose blue sure you can engineer and here we go so i’m in my server

Pretty lonely it’s just me but you get the idea okay so let’s stop this game disconnect and leave it saw us leave and now it says it’s hibernating pretty awesome and let’s go back i think terraria should be done because that’s a pretty small game so terraria pop out to

The console we’re up and going so it’s twenty seven thousand zero zero two the server started okay so let’s go into multiplayer join vip is going to join me and here is my server found my server connected and we are connected now i can’t get this into windowed mode so

You’re gonna have to trust me that it was connected uh we are connected to the server for some reason torreira is being weird and i can’t get it into windowed mode i think it’s an older game so but you can see i’m playing on my own server right

Now and uh yeah this is pretty pretty awesome okay so we’ve connected to three different servers and things are looking really good so i mentioned valeem a pretty popular game we can spin up a valheem server pretty easy too if we go back to that repo of

Eggs and we go to steam cmd servers we can see here at the bottom that we also have valheem and we can choose either plus or vanilla so let’s choose vanilla copy this create a new file balahim json paste this json in here save this awesome i’m getting a captcha on my own

Server pretty awesome i didn’t mention capture but it does have captcha it comes with the default captcha set uh based on the server i highly advise if you’re going to make this public to change that captcha based on your own captcha for your own account and while i’m talking about it i

Might as well show you where it is if we go into settings and settings again we go into advanced here’s your secret key and here’s your captcha you just have to go out to google get a new site key and get a new secret key paste it here but

Pretty cool they have captcha no idea why i didn’t appear human well if you’ve seen some of my earlier videos i didn’t appear human either anyways so let’s go into servers no let’s go into nests create new say valheim import choose valheim into valheim create a node create a create a server

New server valheim write allocations 4096 forty eight zero valen there we go now i have it set and here we have some additional configuration again server name password app id whether it’s dedicated or not auto update beta password which branch you want on we’ll create this server because that’s all

Good for me the owner id field is not said i thought it was going to make it through this without forgetting that but there we go and let’s set that create server go to our panel or console and here it is being created as we speak

The other cool thing while we’re in here i should talk about a little bit is you also have a file manager you can go well once it’s done installing let’s go into minecraft that’s probably a better example if we go into our servers and then say minecraft and then go into a

Terminal or a console we can see we have a file manager here and we can go and modify and edit any of these files that are here like this json file doesn’t have anything here but if we had band players and we wanted to add a band player like techno tim

We could and we could end me from not ever joining or modify any of these files really is the important piece here but you can explore the file system within that container and make modifications super super duper cool so you can upload create new files or modify existing um we also have some

Additional settings here databases i don’t use this schedules i don’t use this either um users backup network startup and settings so a lot of configuration that we can apply to these servers which is really really cool and yet another reason why i wanted a system

Like this to be able to manage this so that if i ever give someone else access to the server i don’t have to tell them how to use docker commands or ssh into my servers i can give them access to this panel and they can issue commands

Right here if they wanted for minecraft who issue specific commands or any server that’s where it gets really cool so let’s check on valium it looks like it’s running so awesome it’s up and running we have some cpu usage and some memory usage so pretty awesome if we go back out and pop

Into our server itself by clicking on pterodactyl we get a dashboard of all of our servers here so pretty awesome so what do you think of pterodactyl do you think it’s overly complicated do you think it has a nice ui are you gonna use it let me know in the comments section

Below and remember if you found anything in this video helpful don’t forget to like and subscribe thanks for watching this morning i was i was kind of thinking the same thing like i want to shift some stuff around i usually do like i was talking about my

Chin bro case earlier like that was my test bed for quite a few things um and uh i i was i have this urge to kind of shift some stuff around and you mentioned ted gigg and you also meant mentioned uh bare metal june ass those are the things

That have been going through my head uh the last uh i’d say the last two weeks uh maybe maybe i will maybe i won’t we’ll see but uh

This video, titled ‘I Built the PERFECT Game Server with Pterodactyl and Docker’, was uploaded by Techno Tim on 2022-04-30 15:00:17. It has garnered 135861 views and 3944 likes. The duration of the video is 00:33:30 or 2010 seconds.

Pterodactyl is a free an open source dedicated game server. It comes with both a panel to configure and deploy your game servers as well as game server nodes to run your games. It runs games in Docker containers to keep them isolated and making them easier than ever to deploy. We’re going to also use Docker to create our Pterodactyl server and the Wings agent making this truly Docker to the core.

https://pterodactyl.io

★ Subscribe! https://l.technotim.live/subscribe ★ I’m Live on Twitch https://l.technotim.live/twitch ★ Get Help in Our Discord Community! https://l.technotim.live/discord ★ Subscribe to Techno Tim Talks! https://l.technotim.live/subscribe-ttt ★ Documentation found here https://l.technotim.live/docs __________________________________________

⚙ Gear Recommendations ⚙ ► https://l.technotim.live/gear

(Affiliate links may be included in this description. I may receive a small commission at no cost to you.) __________________________________________

♦ Patreon https://l.technotim.live/patreon ♦ GitHub https://l.technotim.live/github ♦ Twitch https://l.technotim.live/twitch ♦ Twitter https://l.technotim.live/twitter ♦ Discord https://l.technotim.live/discord ♦ Instagram https://l.technotim.live/instagram ♦ Facebook https://l.technotim.live/facebook ♦ TikTok https://l.technotim.live/tiktok __________________________________________

#Pterodactyl #HomeLab #SelfHosted

00:00 – Intro 01:06 – What is Pterodactyl 02:47 – What are we going to do? 03:42 – Setting up the Panel with Docker 07:20 – Exploring the Panel 08:52 – Create a Node 11:13 – Install the Wings Agent with Docker 15:14 – Assigning Allocations 17:12 – Create a Minecraft Server 21:40 – Creating A Team Fortress 2 or Counter Strike GO Server 23:26 – Adding A Custom Game (Terraria) 29:05 – Creating a Valheim Server 31:06 – File Manager and More 32:47 – What do you think? 32:55 – Stream Highlight – “I might go bare metal…”

“Highschool” is from Harris Heller’s album “Pixel” “Stop It, I’m Resting” is from Harris Heller’s album “Neko”

https://l.technotim.live/sb-music-license

Thank you for watching!

  • Minecraft Shenanigans: Episode 608

    Minecraft Shenanigans: Episode 608 Welcome to the World of Minecraft! Embark on a thrilling adventure in the blocky universe of Minecraft! Dive into a world where creativity knows no bounds and exploration is endless. Join the millions of players worldwide in crafting, building, and surviving in this captivating sandbox game. Exploring New Horizons With each episode, Lờ Đờ Vờ takes viewers on a journey through the vast landscapes of Minecraft. From towering mountains to lush forests, the possibilities are limitless. Discover hidden caves, mysterious dungeons, and valuable resources as you traverse the diverse biomes of this virtual realm. Building Dreams Unleash your imagination… Read More

  • Cocomelon Portal: Minecraft PE 2024

    Cocomelon Portal: Minecraft PE 2024 In the world of Minecraft, a new portal’s in sight, Cocomelon-themed, shining bright. With songs and fun, it’s a joyful sight, Bringing smiles and laughter, day and night. Crafting blocks and melodies, hand in hand, Exploring new worlds, across the land. With each step taken, a new adventure begins, In the world of Minecraft, where creativity wins. So gather your friends, and join the fun, In the Cocomelon portal, under the sun. Let your imagination soar, let your dreams take flight, In this magical world, where everything’s just right. Read More

  • Crafting a Giant Fish Portal in Minecraft

    Crafting a Giant Fish Portal in Minecraft Minecraft: Exploring the Giant Fish Portal (Zoonomaly) Embark on a thrilling adventure in Minecraft as you dive into the mysterious world of the Giant Fish Portal, also known as Zoonomaly. This unique feature in the game offers players a chance to explore new realms and encounter exciting challenges. Let’s delve into the details of this fascinating Minecraft phenomenon. Discovering the Giant Fish Portal As you navigate through the vast landscapes of Minecraft, stumbling upon the Giant Fish Portal can be a truly awe-inspiring experience. This portal, with its intricate design and mystical aura, beckons players to step into a… Read More

  • Squid Game Challenge in Minecraft & Fortnite

    Squid Game Challenge in Minecraft & Fortnite The Minecraft Phenomenon: A World of Creativity and Adventure Minecraft, a game that has captured the hearts of millions worldwide, offers players a unique blend of creativity and adventure. With over 10 million views on various platforms, it’s clear that Minecraft has become a cultural phenomenon. Red Light, Green Light Challenge One of the recent trends within the Minecraft community is the Red Light, Green Light challenge, inspired by the popular show Squid Game. Players must navigate through a maze, following the rules of the game to avoid elimination. This challenge has brought a new level of excitement to… Read More

  • Ghost Hunting Shenanigans in Minecraft

    Ghost Hunting Shenanigans in Minecraft Exploring the Thrills of Ghost Hunting in Minecraft Embark on a spine-chilling adventure in the world of Minecraft as you delve into the realm of horror gameplay. In this video featuring Minecraft Horror Game play, you’ll witness a fusion of the beloved Minecraft universe with the eerie elements of Phasmophobia. Unveiling the Gameplay Experience the thrill of ghost hunting as you navigate through the haunting landscapes of Minecraft. With Phasmophobia making its mark in this gameplay video, expect a unique blend of horror and adventure unlike anything you’ve seen before. Join the Adventure Immerse yourself in the action by… Read More

  • Trading Hall Makeover Madness

    Trading Hall Makeover Madness Exploring the World of Minecraft with Music Free Gaming Join the Fun in Tinker World SMP Music Free Gaming invites you to embark on a creative journey in the Tinker World SMP. Dive into the enchanting realm of Minecraft as you witness the art of decorating the villager trading hall unfold before your eyes. Unleash Your Creativity In this captivating stream replay, Music Free Gaming showcases their talent for transforming ordinary spaces into extraordinary showcases of design. Witness the magic as the trading hall comes to life with vibrant colors, intricate details, and a touch of whimsy. Support Music… Read More

  • Craft a Hive, Survive: Minecraft Beehive Build Guide

    Craft a Hive, Survive: Minecraft Beehive Build Guide In Minecraft, a beehive is quite a delight, Craft it with wood planks, a simple sight. Place it near flowers, bees will take flight, Collecting sweet honey, a tasty bite. To get honeycomb, use shears with care, From the hive, it’s a precious fare. Bees in the hive, a buzzing affair, Protect them well, show them you care. Moving a hive? Use a silk touch tool, Carry it gently, don’t be a fool. Harvesting honey, a sweet jewel, In Minecraft world, a golden rule. So now you know, how to make a beehive, In Minecraft world, where bees thrive…. Read More

  • Kraken Sushi: Catching & Cooking the Sea Monster

    Kraken Sushi: Catching & Cooking the Sea Monster The Epic Minecraft Adventure: Hunting the Kraken for Sushi Setting Sail for Adventure Embark on a hilarious Minecraft journey with Knarfy and his crew as they sail thousands of blocks in a pirate ship, facing off against the mighty Kraken and exploring dungeons in search of food – sushi, to be precise! Meet the Crew Joining Knarfy on this epic quest are his trusty companions: @syszee, @CringyGull, @CragDyna, and @GarrettTheCarrot. Together, they brave the treacherous seas and face formidable challenges. Mods and Tools of the Trade To enhance their gameplay experience, the crew utilizes a variety of mods, including… Read More

  • Monsters Pack Attack: Modded Minecraft Mayhem!

    Monsters Pack Attack: Modded Minecraft Mayhem! In the land of Minecraft, a pack of monsters did appear, Chasing after us, spreading nothing but fear. But fear not, for we were armed with mods, Ready to take on any odds. From The Fog, a modpack we did play, With twists and turns at every corner, come what may. The Mezzmo Guardian leading the way, Crafting stories with each passing day. Subscribe to his channel, join the fun, For Minecraft adventures, second to none. Follow him on Kick, TikTok, and more, For gaming content galore. So come along, join the ride, In the world of Minecraft, where… Read More

  • Sneaky Survival: Ep. 12 Serbian Gameplay

    Sneaky Survival: Ep. 12 Serbian Gameplay Minecraft Survival Adventure: Building Fortresses and Exploring the Unknown Building Challenge: Today’s episode: Our adventurers tackle the monumental task of constructing a massive fortress at the peak of the challenge! Through skilled building techniques and strategic planning, they strive to achieve the perfect balance between aesthetics and functionality. Forest Expedition: In search of rare resources: Deep in the forest, our team delves into efficient techniques for gathering wood and other essential materials to enhance their survival skills. Peril in the Dark Caves: Discovering dangers and rewards: Venturing into the depths of dark caves, our team is prepared to face… Read More

  • Becoming President of Paradise Island – Minecraft

    Becoming President of Paradise Island - Minecraft The Exciting World of Minecraft Adventures Embark on thrilling escapades, heart-pounding challenges, and mysterious quests in the enchanting realm of Minecraft. Join EmirhanCTN and his friends as they navigate through a world filled with excitement, suspense, and camaraderie. Unleash Your Creativity with Minecraft Explore the boundless possibilities of Minecraft as you immerse yourself in a world where your imagination knows no limits. Build awe-inspiring structures, craft intricate tools, and embark on epic adventures in a universe that is yours to shape and mold. Join the Adventure Experience the thrill of the unknown as you delve into the depths of… Read More

  • Unleashing Chaos: NOOB vs HACKER – Louie and Pip Build Challenge

    Unleashing Chaos: NOOB vs HACKER - Louie and Pip Build ChallengeVideo Information This video, titled ‘JJ & Mikey Build Challenge: NOOB vs HACKER’, was uploaded by Louie and Pip on 2024-03-26 15:00:30. It has garnered 100170 views and 1578 likes. The duration of the video is 01:05:32 or 3932 seconds. JJ & Mikey Build Challenge: NOOB vs HACKER Subscribe to become an OG FAN. Louie and Pip are playing Minecraft. Follow My Channel! – https://www.youtube.com/channel/UCDMytuc0y4TF5V3rUZVT6GA?sub_confirmation=1 We make similar content to Milo and Chip, Cash and Nico, Paper, Mazien, JJ and Mikey. Leave a like and don’t forget to subscribe! #Minecraft Read More

  • Minecraft Origins: The Complete Story

    Minecraft Origins: The Complete StoryVideo Information This video, titled ‘Minecraft Origens do começo ao fim (e pq acabou)’, was uploaded by Ablau on 2024-03-25 14:00:06. It has garnered 104 views and 13 likes. The duration of the video is 00:25:26 or 1526 seconds. [CC✔️– 🇧🇷 🇪🇸 🇬🇧 🇮🇹 🇫🇷 🇩🇪 🇯🇵] Let’s remember the entire history of the Minecraft Origins kingdom and try to find out why the series never came back. CHECK OUT AND SARAIVA LIKE! 🔗Links mentioned_______ 🐦🧶Jazzghost thread 🔗👉https://x.com/Jazzghost1/status/1296111562646786049?s=20 🎥✂️Full excerpt from Jazzghost about the disappearance of Minecraft Origins 🔗👉https://youtu.be/OgE8I-rU9-w?si=5mDpm0QR59DAtlEL&t=29 📜🐦🧶Wayback Machine da Thread pt.1/4: https://web.archive.org/web/20240321174538/https://twitter.com/Jazzghost1/status/1296111562646786049?s=20 pt.2/4: https://web.archive.org/web/20240321175320/https://twitter.com/Jazzghost1/status/1296111894328217602?s=20 pt.3/4: https://web.archive.org/web/20240321175357/https://twitter.com/Jazzghost1/status/1296112514908987392?s=20 pt.4/4:… Read More

  • INSANE ARROW DODGE CHALLENGE! Herobrine vs Zombie

    INSANE ARROW DODGE CHALLENGE! Herobrine vs ZombieVideo Information This video, titled ‘DON’T GET AN ARROW CHALLENGE! #2 Herobrine vs. Mutant Zombie – funny minecraft animation #cartoon’, was uploaded by toonz CRAFT on 2024-01-15 23:12:28. It has garnered 30643864 views and 2654050 likes. The duration of the video is 00:00:31 or 31 seconds. Herobrine vs. Mutant Zombie – Bow Challenge! #minecraft #animation #challenge #cartoon Read More

  • Diving Into Techno Gamerz Epic Minecraft World!

    Diving Into Techno Gamerz Epic Minecraft World!Video Information This video, titled ‘Exploring Techno Gamerz Epic Minecraft Universe :Full Review ! || Techno Gamerz minecraft world’, was uploaded by Souza Gamerz on 2024-04-12 21:30:03. It has garnered 2 views and 0 likes. The duration of the video is 00:02:01 or 121 seconds. Exploring Techno Gamerz Epic Minecraft Universe :Full Review ! || Techno Gamerz minecraft world #technogamerz #minecraft #gaming Instagram : souza_Gamerz8 -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ Follow Us On Instagram https://www.instagram.com/souza_gamerz8/ Shorts Channel : https://youtube.com/c/ThundromeGamerzShorts About This Channel This Channel Is Full Of Indian Gaming , commentary,gaming related tips and tricks and gaming techs etc etc etc. You Can enjoy… Read More

  • EPIC Court Drama with SideArms4Reason! Who wins?!

    EPIC Court Drama with SideArms4Reason! Who wins?!Video Information This video, titled ‘COURT EVENT DAY | Cobblemon SMP (ep6)’, was uploaded by SideArms4Reason on 2024-05-30 05:03:33. It has garnered 4301 views and 232 likes. The duration of the video is 04:31:15 or 16275 seconds. The best Minecraft Pokemon Mod is here – Cobblemon SMP I am partnered and sponsored by the Mythical Network Get cool emotes and a chat badge, become a member – https://www.youtube.com/channel/UC2LzOtzFiggxpLY80IUXhFw/join Tip here – https://twitch.streamlabs.com/sidearms4reason Download the Cobblemon modpack here & play on the public server https://www.technicpack.net/modpack/pixelmon-513-pro.1072839 I am partnered and sponsored by the Mythical Network Get FocusFuel here – https://thefocusfuel.com/side Use code… Read More

  • I BECAME CHAINSAW MAN in Minecraft?! MUST WATCH!

    I BECAME CHAINSAW MAN in Minecraft?! MUST WATCH!Video Information This video, titled ‘I Became CHAINSAW MAN In Minecraft (FULL MOVIE)’, was uploaded by KanesAce on 2024-04-11 17:25:18. It has garnered 196259 views and 3338 likes. The duration of the video is 00:40:06 or 2406 seconds. I added chainsaw man into Minecraft.. ANIMATIONS BY – @reflectedwastaken 8 BIT CHAINSAW MAN OPENING KICK BACK COVER – https://www.youtube.com/watch?v=mgmfkIAXHjg&pp=ygUVOCBCSVQgS0lDSyBCQUNLIENPVkVS KICKBACK ELEVATOR MUSIC – https://www.youtube.com/watch?v=MK7_v2wd44A&pp=ygUYS0lDSyBCQUNLIENPVkVSIE1BUklPIDY0 MAIN MAP USED – https://www.planetminecraft.com/project/sayama-city–japanese-modern-city-world-/ ZOMBIE DEVIL MAP AND ENEMIES – https://www.planetminecraft.com/project/chainsaw-craft-chainsaw-man-in-minecraft-vanilla/ (other builds were handmade so not available) MODS USED – https://www.curseforge.com/minecraft/mc-mods/chainsaw-man-csm https://www.curseforge.com/minecraft/mc-mods/craft-devils-mod #chainsawman #mod #Minecraft Read More

  • VR Gaming Magic: Eye-Testing Art at Eye Level

    VR Gaming Magic: Eye-Testing Art at Eye LevelVideo Information This video, titled ‘#eyetesting #magic #eyelevel #art #eyegame #duet #mindboggling #smallbusiness #eyesgame’, was uploaded by vr gaming 143k on 2024-04-22 01:24:04. It has garnered 301 views and 19 likes. The duration of the video is 00:00:09 or 9 seconds. #minecraft #shorts #minecraft #shorts #tages #minecrafthelp #helpshorts #emozgaming #emozgamingshorts #trendingshorts #trend #emozshorts #minecraftgamingshorts #youtubeshorts #minecraftalwayshelp #alwayshelp #helpingshorts #helpingdog #minecrafttrend #minecraftshorts #minecrafttiktok #minecrafttrendingshorts #ytshorts #minecraftsad #minecraftsadshorts #storyshorts #minecraftstory#Minecraft gaming ki link #minecraft kese khele #minecraft download #minecraft video #minecraft long video# #gaming ketigty me sascirab kese badaye #long videos viral karne ki tirk #1000 sascirabar kese pura kake #1ksascirbar kese… Read More

  • Join LIVE Server Gaming Event NOW! Play Custom Games With Viewers

    Join LIVE Server Gaming Event NOW! Play Custom Games With ViewersVideo Information This video, titled ‘HIVE LIVE WITH VIEWERS (Customs With YOU)’, was uploaded by Server Gaming on 2024-04-20 02:44:46. It has garnered 555 views and 37 likes. The duration of the video is 02:39:34 or 9574 seconds. Hive Minecraft With Viewers | Customs And Parties | Minecraft Bedrock!! 2k Texture Pack!! https://www.youtube.com/watch?v=-e8OznbGQm4&t=154s thumbnail made by @ItsBluesYT • memberships – https://www.youtube.com/@ServerGaming/join • join the discord – https://discord.gg/5kyzAMYVWB • follow my kick – https://kick.com/servergaming • follow my twitch – https://www.twitch.tv/itzserver • my second channel – @ServerExtras Music provided by http://spoti.fi/NCS The Hive Live With Viewers! I’m a hive content creator and… Read More

  • INSANE Realistic Travel in Minecraft #2!!!

    INSANE Realistic Travel in Minecraft #2!!!Video Information This video, titled ‘Realistic Travel – Minecraft #2’, was uploaded by PROT31Nn on 2024-05-14 15:14:28. It has garnered 8841 views and 421 likes. The duration of the video is 00:00:17 or 17 seconds. #minecraft #minecraftbut #minecraftchallenge #minecraftmod #survival #minecraftmods #challenge #beatingminecraft #diamonds #minecraftrealistic #minecraftsurvival #camman18 #minecraftspeedrunner #camman18shorts #minecraftbutchallenge #minecraftspeedrun #minecraftmanhunt #camman18minecraft #minecraftbuticanttouchgrass #cavesandcliffsupdate #cavesandcliffs #howtosurvive #newminecraftchannel #grian #fastestdiamonds #enderdragon #minecraftupdate #craftinginminecraft #craft #craftee #newminecraft #crafter #crafty #craftingrecipe #crafting #custom #diamond #familyfriendly #customitem #customitems #emeralds #tiktokcamman18 #camman18tiktok #camman18twitch #camman18clips #minecraftbutyoucanttouchthecolor #gaming #minecrafthitmen #custommobs #custommob #minecraftearth #minecraftbutrealistic #speedrunnervs #mods #camman18minecraftyoutube #minecraft117 #realisticminecraft #tutorial #mumbo #minecraftanimation #minecraftfacts #building #asianhalfsquat #howto #minecraftfunny… Read More

  • Mistik Iridyum

    Mistik IridyumMistik Iridyum sunucusu bir avuç arkadaş topluluğunun kendilerine basit bir aternos sunucusu açmak yerine Devasa bir OP Skyblock sunucusu açmaya çalışmaları ile çıktı. Samimi arkadaş ortamı, sürekli güncellemeler ve bol eklentiler ile bize katıl! Java: game4.falixserver.net:58222 or (ya da) iridyum.falix.gg:58222 1.8 – 1.20 Bedrock: game4.falixserver.net or (ya da) iridyum.falix.gg 58222 1.20.x iridyum.falix.gg:58222 Read More

  • Team BaerCraft’s Modded SMP Servers

    Creators & Community Creators & Community A warm, diverse, and open Discord & Minecraft community that welcomes everyone and is the home of the Minecraft modpacks BaerCraft, Trash Panda Craft, and PokeASub plus their official multiplayer servers. We host additional Minecraft servers, such as a rotational server that rotates community-voted modpacks every 3 months. In total, we usually run about 4 servers with more to come in the future. Our community also talks about a lot of other games and topics! Both developers are experienced and active in development by creating new content for players. Our staff is knowledgeable, fast,… Read More

  • TIPPER SMP

    TIPPER SMPWelcome to VIPPER SMP, a premier survival Minecraft server based in the United States! Join our vibrant community of players as you embark on epic adventures, build incredible creations, and forge lasting friendships. With our verified server status, you can trust in a secure and enjoyable gaming experience. Dive into the ultimate survival challenge and explore boundless possibilities in VIPPER SMP today Read More

  • Minecraft Memes – Technoblade’s Birthday Bonanza!

    It seems like King’s reign in the meme world will never be forgotten, with a score of 400 to prove it! Long live the King (of memes)! Read More

  • Survived 100 Days: Wasteland Convoy Minecraft Hardcore

    Survived 100 Days: Wasteland Convoy Minecraft Hardcore In a wasteland convoy, we dared to roam, Through a city of ruin, far from home. Bandits lurked, seeking to steal our loot, But we pressed on, resolute and astute. With water dried up, and no loot in sight, We journeyed west, into the fading light. Building a base, exploring the unknown, Unraveling the mystery, seeds of truth sown. Inspired by legends, we braved the test, Surviving 100 days, we gave it our best. In a hardcore world, where danger looms, We faced the challenge, defying all dooms. So join us on this epic quest, As we strive to… Read More

  • Spidey Spidey, Burning Bright!

    Spidey Spidey, Burning Bright! Why did Spider-Man start playing Minecraft? Because he heard there were some great webs to swing from! #spiderman #minecraft #webbedwonder Read More

  • Crafting a King: Act 3

    Crafting a King: Act 3 Act 3: “Birth of a King” Prepare to witness the epic tale of the birth of a king in the world of Minecraft! Join us as we delve into the exciting events and features of this thrilling adventure. The Rise of a Monarch As the story unfolds, players will witness the transformation of a humble character into a powerful ruler. The journey to kingship is fraught with challenges and triumphs, making for a captivating narrative. Embrace the Power Experience the thrill of commanding your kingdom and making crucial decisions that will shape the fate of your realm. With great… Read More

  • Uncover the Ultimate Hardcore Survival Experience on Minewind Server

    Uncover the Ultimate Hardcore Survival Experience on Minewind Server Welcome to Newsminecraft.com! Are you a fan of hardcore survival gameplay in Minecraft? Do you enjoy exploring secret bases and uncovering hidden treasures? If so, you need to join the Minewind Minecraft Server today! With a thriving community of players and a wide range of unique features, Minewind offers an exciting and challenging gaming experience like no other. Whether you’re a seasoned Minecraft veteran or just starting out, there’s something for everyone on Minewind. Join us at YT.MINEWIND.NET and embark on your own epic adventure. Build, explore, and survive in a world full of surprises and mysteries waiting to… Read More

  • 49 Min of Minecraft: Story Mode on Scratched Xbox Disk

    49 Min of Minecraft: Story Mode on Scratched Xbox Disk The Epic Journey of Minecraft: Story Mode Introduction Embark on a thrilling adventure through the world of Minecraft with “Minecraft: Story Mode.” Join Jesse and his friends as they set out on a quest to save their world from destruction. Episodes Overview Episode 1: The Order of the Stone Witness the beginning of Jesse’s journey as they team up with a group of legendary heroes known as The Order of the Stone to defeat the Wither Storm. Episode 2: Assembly Required Face new challenges as Jesse and the gang must gather resources to build a new weapon to defeat… Read More

  • Unbelievable! 13 Mind-Blowing Minecraft Mods (1.20.1)

    Unbelievable! 13 Mind-Blowing Minecraft Mods (1.20.1)Video Information This video, titled ’13 Awesome New/Updated Minecraft Mods (1.20.1)’, was uploaded by Leonxkingx on 2024-06-02 23:56:23. It has garnered 1824 views and 102 likes. The duration of the video is 00:09:28 or 568 seconds. #minecraft #mods 13 New/updated Minecraft Mods for 1.20.1, mainly for Forge. I’m trying to show the latest/updated best Minecraft Forge (sometimes the mods also have a fabric version) Mods for 1.20 of the week, if you want me to showcase a mod or maybe even your mod, let me know. Mods in this video: 0:00 Illusion Onslaught https://www.curseforge.com/minecraft/mc-mods/illusion-onslaught 1:48 Flower Pots Plus https://www.curseforge.com/minecraft/mc-mods/flower-pots-plus 2:17… Read More

  • ShrooMoo’s Wild GTNH Stargate Run Stream!

    ShrooMoo's Wild GTNH Stargate Run Stream!Video Information This video, titled ‘Vtuber Solos GTNH – The Stargate Run Stream 7 – (LV-MV) – Unedited VOD #GTNH #Vtuber #minecraft’, was uploaded by ShrooMoo on 2024-03-30 21:32:08. It has garnered 110 views and 6 likes. The duration of the video is 08:34:08 or 30848 seconds. This stream is best experienced on TWITCH: https://www.twitch.tv/shroomoooo We hit MV :3 Read More

  • Minecraft Trending Song Revealed! 🤯🎮 #viralvideo

    Minecraft Trending Song Revealed! 🤯🎮 #viralvideoVideo Information This video, titled ‘minecraft trending song is cbse upse #shortfeed #viral #minecraft #viralvideo #subscribe’, was uploaded by Cooled gaming on 2024-05-02 05:22:05. It has garnered 763 views and 24 likes. The duration of the video is 00:00:16 or 16 seconds. minecraft trending minecraft trending topics minecraft trending topics 2024 minecraft trending tags minecraft trending shorts minecraft trending content minecraft trending hashtags minecraft trending skins minecraft trending topics 2023 minecraft trending mods is minecraft trending on youtube minecraft popular adventure maps minecraft popular anarchy servers minecraft popular again minecraft armor trends popular minecraft addons popular minecraft animals popular minecraft… Read More

  • Transporting with Zypher: Minecraft Uncut & Lofi Key Sounds

    Transporting with Zypher: Minecraft Uncut & Lofi Key SoundsVideo Information This video, titled ‘Still trying to transport #39 (Uncut Minecraft with keyboard sounds and Lofi songs)’, was uploaded by zypher on 2023-12-18 19:30:06. It has garnered 16 views and 0 likes. The duration of the video is 00:17:42 or 1062 seconds. Welcome to my Channel 🌍✨, where you’ll find a unique blend of uncut Minecraft gameplay and soothing keyboard sounds. Immerse yourself in the enchanting world of Minecraft 🏰🌳 while experiencing the tranquil ambiance of keyboard taps ⌨️🎵, creating a captivating atmosphere for relaxation and gaming. In this channel, we offer an unfiltered look at our Minecraft adventures…. Read More

  • Unlimited Free Minecraft Server Hosting 2024 – Join Now!

    Unlimited Free Minecraft Server Hosting 2024 - Join Now!Video Information This video, titled ‘Free Server Hosting for Minecraft High specifications 2024 [24/7 online]’, was uploaded by Crafting Fever on 2024-01-04 12:39:53. It has garnered 1447 views and 20 likes. The duration of the video is 00:08:49 or 529 seconds. Free hosting provided by Equaticnodes: https://discord.gg/jRm68BVdDp Join in to create a server for free Better than all current hosts and have cheap plans Great community support If Equaticnodes is down try these alternatives: Artixcloud: https://discord.gg/artixcloud slicehosting: https://discord.gg/slicehosting stozu.net: https://discord.gg/stozu-net-free-paid-24-7-hosting-1030919416680038460 Join our server to play with us: My discord server: https://discord.com/invite/HyyxaDEQeb server address: in1.dribble.fun server port: 8002 Server will be… Read More

  • “1M Subs! Playing Minecraft with Only 1/2 Heart!” #clickbait

    "1M Subs! Playing Minecraft with Only 1/2 Heart!" #clickbaitVideo Information This video, titled ‘Minecraft But I Have Only Half Heart #shorts #minecraft’, was uploaded by DARK DEVIL YT 1M on 2024-04-04 12:41:07. It has garnered 506 views and likes. The duration of the video is 00:00:35 or 35 seconds. #minecraft #minecrafthousetutorial #minecraftbuilds minecraft,minecraft mods,best minecraft mods,minecraft mod,top 10 minecraft mods,minecraft challenge,minecraft but,2024 minecraft mods,minecraft shorts,minecraft update,mods,minecraft manhunt,best minecraft mods for survival,minecraft facts,camman18 minecraft,minecraft speedrun,minecraft 1.19,minecraft funny,minecraft speedrunner,minecraft but challenge,minecraft mods 1.20.1,1.20.4 minecraft mods,1.20.1 minecraft mods,best new minecraft modsminecraft house,minecraft house tutorial,how to build a house in minecraft,minecraft,how to build,how to build a suburban house tutorial,how to build a… Read More

  • Gaming madness in Wintergea – EPIC Minecraft adventure!

    Gaming madness in Wintergea - EPIC Minecraft adventure!Video Information This video, titled ‘#minecraft’, was uploaded by Wintergea Ch. ゲア 【Yorukaze】 on 2024-05-10 02:12:26. It has garnered 272 views and 22 likes. The duration of the video is 01:31:27 or 5487 seconds. #Wintergea #GaBuT #GeaButuhTemen #GoodGEAming #VtuberIndonesia #vtuber #GEArlfriend ❄️️❄️️❄️️❄️️❄️️❄️️❄️ Yorukaze Production Affiliated Vtuber Gen 1 : Yorukusa https://yorukaze.xyz/ Discord Community ❄️️ Gea’s Garden in the Sky https://discord.gg/rhWnSn46kq ❄️️Yorukaze Production https://discord.gg/GhmGhXwg6j What is STUPID COUNTER? Sometimes I mute myself by accident and forget to unmute. So please tell me if I did stupid things like that cuz I sometimes just never realize it ;;w;;) ❄️️❄️️❄️️ RULES ❄️️❄️️❄️️ 1…. Read More

  • Unbelievable Minecraft Challenge: Welcome to Kodex

    Unbelievable Minecraft Challenge: Welcome to KodexVideo Information This video, titled ‘A Brand New Dimension of the IMPOSSIBLE Challenge (Minecraft Custom Hardcore Modpack)’, was uploaded by Kodex on 2024-04-03 05:43:12. It has garnered 86 views and 3 likes. The duration of the video is 02:55:48 or 10548 seconds. Welcome to the Kodex! In this stream, we try to beat Minecraft with an IMPOSSIBLE custom modpack. This should be an interesting challenge, so make sure to stick around so you don’t miss a moment of the action! HEY YOU! YES YOU! If you are reading this description then and enjoyed the stream/VOD, why not consider subscribing? It’s… Read More

  • Bullying Kids in Minecraft!? Benki Argyros Exposed

    Bullying Kids in Minecraft!? Benki Argyros ExposedVideo Information This video, titled ‘cyberbullying kids (in minecraft)【Hive/Zeqa】’, was uploaded by Benki Argyros on 2024-05-11 21:20:09. It has garnered 37 views and 3 likes. The duration of the video is 02:57:52 or 10672 seconds. Welcome to a degens channel huohuo model : https://bailyovo.booth.pm/items/5288339 sound effects : https://blerp.com/x/benki-argyros come bully me : https://discord.gg/PvTXXjD2HQ music : https://www.youtube.com/channel/UCT1ZkP03V18LmOj8zbyP-Dw ———— Friends youtube.com/@Jolluino youtube.com/@NightFolds youtube.com/@RiminYT ———— : Tags : #vtuber #stream #streamer #vtuberen #vtuberstream #variaty #benki This stream is created with #PRISMLiveStudio Read More

  • Anarchy MC Project

    Anarchy MC ProjectHello. We recommend that you try this project. It is, in fact, considered new. The server was created on August 12, 2022. We have a very exciting game: an unusual world and game mechanics, complete destruction and anarchy! Come in and scare everyone! I hope you like us. The server supports entry through Minecraft Bedrock Edition. You can safely log in from your phone or tablet and play with us! The server also supports pirated clients, you can play with us without a license. And yes, I almost forgot, most Russian people play here! As of June 24, 2023, the… Read More

I Built the PERFECT Game Server with Pterodactyl and Docker