- Added inline-flex to Schedule Consultation button
- Simplified button container markup
16 lines
270 B
YAML
16 lines
270 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|
|
- /app/.next
|
|
environment:
|
|
- NODE_ENV=development
|
|
command: pnpm dev
|