add docker

This commit is contained in:
AmirHossein Mahmoodi
2025-05-05 14:34:39 +03:30
parent a9dabf944b
commit 4b6b87f8e9
2 changed files with 46 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
version: '3.8'
services:
nextjs:
build:
context: .
dockerfile: Dockerfile
container_name: nextjs-app
ports:
- "3000:3000"
env_file:
- .env.local
restart: unless-stopped