sno-blog/docker-compose.yml
2026-02-02 22:57:40 +03:00

16 lines
257 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