services: client-web: restart: unless-stopped build: context: ./clients/web/ dockerfile: Dockerfile target: dev ports: - "3000:3000" volumes: - ./clients/web:/app - /app/node_modules server: restart: unless-stopped build: context: ./server/ dockerfile: Dockerfile target: dev ports: - "3001:3001" volumes: - ./server:/app - .git:/app/.git