Add docker-compose.yml for single-command deployment

Runs the portfolio with: docker compose up --build

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Baccar
2026-05-25 10:12:53 +04:00
parent 801e78eb4e
commit 8128359661

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
portfolio:
build:
context: .
dockerfile: Dockerfile
image: portfolio:latest
container_name: portfolio
ports:
- "3000:3000"
restart: unless-stopped
environment:
- NODE_ENV=production