version: '3.9'

services:
  lib:
    container_name: zipify_wswg_lib
    stop_grace_period: 1s
    tty: true
    build: .
    command: npm run build:watch
    volumes:
      - .:/myapp
      - ./node_modules:/myapp/node_modules:cached

  example:
    container_name: zipify_wswg_example
    stop_grace_period: 1s
    tty: true
    build: .
    command: npm run example:serve
    volumes:
      - .:/myapp
      - ./node_modules:/myapp/node_modules:cached
    ports:
      - 4200:4200
    depends_on:
      - lib
