finlion-website/docker-compose.dev.yml
TheMaddax 7a90aa3492 - Removed "View Services" link and its container
- Added inline-flex to Schedule Consultation button
    - Simplified button container markup
2024-11-29 11:02:24 -06:00

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