sno-blog/docker-compose.yml
2026-02-02 23:08:27 +03:00

16 lines
261 B
YAML

services:
web:
build:
context: .
dockerfile: Dockerfile
target: dev
ports:
- "3092:3000"
# env_file:
# - .env.local
volumes:
- .:/app
- /app/node_modules
- /app/.next
restart: unless-stopped