14 lines
234 B
YAML
14 lines
234 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
target: dev
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
NEXT_PUBLIC_SITE_URL: http://localhost:3000
|
|
volumes:
|
|
- .:/app
|
|
- /app/node_modules
|
|
- /app/.next
|