version: "3.3"
services:
  db:
    image: postgres
    environment:
      POSTGRES_PASSWORD: cr0ch3t
      POSTGRES_DB: crochet_patterns
  server:
    build:
      context: backend
    ports:
      - "5000:5000"
    depends_on:
      - db
  app:
    build:
      context: frontend
    volumes:
      - type: "bind"
        source: ./frontend/src
        target: /app/src
        volume:
          nocopy: true
    ports:
      - "4200:4200"
    depends_on:
      - server