Skip to content

Latest commit

 

History

History
88 lines (59 loc) · 1.98 KB

File metadata and controls

88 lines (59 loc) · 1.98 KB

🐳 Logs-Docker Setup Guide

Welcome to Logs-Docker — a lightweight environment to get your logging stack up and running quickly with Docker.


✅ Quick Start Checklist

🔧 Step 1 — Install Prerequisites

  • Install Docker
  • Install Docker Compose
    👉 Official guide: Get Docker

📦 Step 2 — Get the docker-compose.yaml

Choose one of the options below to download the configuration file:

🔽 Using curl
curl -L -o docker-compose.yaml https://raw.githubusercontent.com/rafinhacuri/logs-docker/main/docker-compose.yaml
🔽 Using wget
wget -O docker-compose.yaml https://raw.githubusercontent.com/rafinhacuri/logs-docker/main/docker-compose.yaml

Alternatively, copy it directly from the example file.


📝 Step 3 — Configure Environment

Download and prepare your .env file:

🔽 Using curl
curl -L -o .env https://raw.githubusercontent.com/rafinhacuri/logs-docker/main/.env.example
🔽 Using wget
wget -O .env https://raw.githubusercontent.com/rafinhacuri/logs-docker/main/.env.example

Then edit the .env with your database, ports, and other settings.


🚀 Step 4 — Launch Services

Run the following commands:

docker compose pull
docker compose up -d --force-recreate

🔍 Step 5 — Verify Installation

Check running containers:

docker compose ps

If all services show as Up, you’re ready! 🎉


📜 License

Licensed under the MIT License
© 2025 Rafael Curi Leonardo

License: MIT