Docker Setup
September 12, 2025 ยท View on GitHub
Docker setup guide for the project.
Install Docker
Visit the official Docker website for installation instructions:
๐ Docker Installation Guide
Choose your operating system and follow the installation steps.
Start Project Containers
Once Docker is installed, start the required containers:
docker compose up -d postgres adminer maildev
This command starts:
- PostgreSQL database server
- Adminer database management tool
- Maildev email testing tool
Verify Containers
Check if containers are running:
docker compose ps
All services should show "Up" status.
Previous: Installing and Running
Next: Project Rename