Create a Docker Network
This outlines a basic command to create a new network inside of docker. Official Documentation Reference
*** Change the ip address and network name to your desired configuration
non swarm configuration
docker network create -d bridge --attachable --subnet=172.16.0.0/16 --gateway=172.16.0.1 --ip-range=172.16.8.0/21 mynetworkname
swarm configuration
docker network create -d overlay --attachable --subnet=172.16.0.0/16 --gateway=172.16.0.1 --ip-range=172.16.8.0/21 mynetworkname
Basic Docker Install
This is an outline of the basic steps that need to be taken to install docker on ubuntu. Reference: install Docker Engine on Ubuntu
1- make sure you dont have junk already installed.
sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc podman-docker containerd runc | cut -f1)
2- configure the repository, keys, and update the system repos.
# Add Docker's official GPG key:
sudo apt update
sudo apt install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
sudo tee /etc/apt/sources.list.d/docker.sources <<EOF
Types: deb
URIs: https://download.docker.com/linux/ubuntu
Suites: $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}")
Components: stable
Architectures: $(dpkg --print-architecture)
Signed-By: /etc/apt/keyrings/docker.asc
EOF
sudo apt update
3- Install Docker and its main components
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
4- Add your user to the Docker Group.
sudo usermod -aG docker $USER