services: api: env_file: - .env.dev build: context: ./api dockerfile: Dockerfile target: backend-dev ports: - 8080:8080 volumes: - ./api:/app frontend: env_file: - .env.dev build: context: ./frontend dockerfile: Dockerfile target: frontend-dev ports: - 5173:5173 volumes: - ./frontend:/app