# docker-compose-setup > Setup docker-compose for Todo app services. Use for local dev environment. - Author: Jawad-Chaudhary - Repository: Jawad-Chaudhary/Hackathone-2-TODO-Spec-Driven-Development - Version: 20260120184933 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/Jawad-Chaudhary/Hackathone-2-TODO-Spec-Driven-Development - Web: https://mule.run/skillshub/@@Jawad-Chaudhary/Hackathone-2-TODO-Spec-Driven-Development~docker-compose-setup:20260120184933 --- --- name: docker-compose-setup description: Setup docker-compose for Todo app services. Use for local dev environment. --- # DockerComposeSetup Instructions Input: Services (frontend, backend, db). Output: YAML config. Steps: 1. Define services with builds and ports. Example YAML: version: '3' services: frontend: build: ./frontend ports: ["3000:3000"] backend: build: ./backend ports: ["8000:8000"] environment: - DATABASE_URL=postgresql://user:pass@neon-host/db