Home - ajgillis04/GillisDockerDepot GitHub Wiki

= Docker Home Wiki =

Introduction

Welcome to the GillisDockerDepot Wiki! This guide provides detailed instructions on installing Docker, configuring services, and managing containers on different platforms. Whether you're running on QNAP, Windows, or Linux, this wiki will help you set up and optimize your services.


Navigation


Docker Setup

QNAP Setup

QNAP users should begin here to install Container Station and set up their services.

Windows Setup

Guidance on installing WSL 2, configuring Docker Desktop, and handling network-mounted drives.

Linux Setup

Steps for installing Docker, verifying the setup, and configuring your services.

Back to Top


Service Configuration Guides

Below are setup guides for all supported services. Click the links to view the full installation instructions for each:

Media & Library Management

Networking & Security

Infrastructure & Automation

Back to Top


Useful Commands

Here are some essential Docker commands for managing your setup:

  • Check Docker Compose configurations:

    docker compose -p mediaserver -f docker-compose-server1.yaml config  
    
  • Restart all containers:

    docker restart $(docker ps -aq)  
    
  • Clean up unused volumes and networks:

    docker system prune -a  
    

For more troubleshooting tips, check out each service's individual setup guide.

Back to Top