Use this folder when you want to run MealGoGo from prebuilt Docker images on Docker Hub.
Linux/macOS:
cp .env.example .envWindows PowerShell:
Copy-Item .env.example .envdocker compose up -dThat command will start:
- MealGoGo app (
markdatcode/mealgogo:latest) - PostgreSQL
- Redis
- Playwright browser service
- MinIO + bucket bootstrap
Playwright in this setup is used for browser-based verification (for example, validating rendered pages/workflows), not for crawling food data.
- Default app URL:
http://localhost:8082 - Default PostgreSQL credentials:
mealgogo/StrongP@ssw0rd! - MinIO API:
http://localhost:9000(S3 endpoint) - MinIO Console:
http://localhost:9001 - Default MinIO credentials:
minioadmin/minioadmin - If this is for production, change
JWT_SECRETand database credentials in.envfirst. - To stop:
docker compose down
