4pfsec Homelab
  • 4pfsec Home Lab by Nee
  • Operating System
    • Ubuntu 20.04.3 LTS (with gnome)
  • Networking
    • pfSense
    • Nginx Proxy Manager
    • Cloudflare
  • System Services / Software
    • Docker & Docker-Compose
    • CIFS / SMB Shares
  • Self-Hosted Services
    • Homer
    • Navidrome
    • Jellyfin
    • Deluge
    • File Browser
    • Pasty
    • NextCloud
  • Security
    • Nord
Powered by GitBook
On this page
  • Docker
  • Install
  • Creating a Docker Network
  • Verify
  1. System Services / Software

Docker & Docker-Compose

Docker

Install

Prerequisites

apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common

Configure Docker apt repo

echo 'deb https://download.docker.com/linux/debian stretch stable' > /etc/apt/sources.list

Install

apt-get update
apt-get install docker.io docker-compose

Creating a Docker Network

Creating a network allows us to throw all our containers into one network. Else, each container will have its own network.

docker network create --driver bridge containerz

Verify

docker --version
PreviousCloudflareNextCIFS / SMB Shares

Last updated 2 years ago