version: "3.9" services: app: image: dev-toys-web-dev:1.0.0 build: context: docker working_dir: /app volumes: - .:/app:cached - next:/app/.next - node_modules:/app/node_modules - yarn-cache:/usr/local/share/.cache/yarn/v6 command: sh -c "yarn && yarn dev" ports: - ${APP_PORT:-3000}:3000 volumes: next: node_modules: yarn-cache: