đź“‹
ADS-B Reception, Decoding & Sharing with Docker
  • ADS-B Reception, Decoding & Sharing with Docker
  • Intro
    • Overview
    • How to Get Help
    • What is Docker?
    • Why Docker?
    • Equipment Needed
    • Information Needed
  • Setting Up The Host System
    • Preparing Your System
    • Install Docker
  • Setting Up RTL-SDRs
    • Blacklist Kernel Modules
    • Re-Serialise SDRs
  • Foundations
    • Prepare the Application Environment
    • Deploy "ultrafeeder"
    • Deploy "dump978" (USA Only)
    • Container Monitoring and Management
  • Feeder Containers
    • Feeding Plane.watch
    • Feeding FlightAware (piaware)
    • Feeding FlightRadar24
    • Feeding Airnav Radar
    • Feeding PlaneFinder
    • Feeding ADSBHub
    • Feeding OpenSky Network
    • Feeding RadarVirtuel
  • Useful Extras
    • Storing Data and Metrics in a Time Series Database
    • Graphing Data and Metrics with Influx and Grafana
    • Graphing Data and Metrics with Prometheus and Grafana
    • Auto-Restart Unhealthy Containers
    • Auto-Upgrade Containers
    • Managing a remote station using ZeroTier
Powered by GitBook
On this page
  • What is Docker?
  • What is Docker Compose?

Was this helpful?

Edit on GitHub
  1. Intro

What is Docker?

PreviousHow to Get HelpNextWhy Docker?

Last updated 2 years ago

Was this helpful?

What is Docker?

is a popular containerization platform used to package and deploy software applications. It allows developers to create self-contained, portable environments that can be easily shared and run on any machine, regardless of its underlying operating system or infrastructure. Docker uses a layered file system and minimal resource overhead, making it fast and efficient for creating, deploying and managing applications. For more details about Docker, please check out their .

What is Docker Compose?

is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your application’s services. Then, with a single command, you create, start, stop, update, etc all the services defined for your application.

Docker
documentation
Docker Compose