01a) Creating a network for Pterodactyl

Making everything slightly easier

So to ease up the installation process, and make Cosmos act nicely with our Pterodactyl panel, database, cache, and wings. We'll create a network for all Pterodactyl parts to connect to. This should make the installation a bit easier.

Creating a Docker network

  1. Create a bridge network in Docker by running this command. This will create a bridge network named cosmos-pt-all .

docker network create cosmos-pt-all
  1. You can see if the network has been created with:

docker network -ls
  1. The cosmos-pt-all network should show up on the list.

  2. From a console point of view, it should simply look like this:

  1. Done! Let's continue.

Last updated