- Multi-stage Dockerfile (node:20-alpine, pnpm, standalone) - docker-compose.yml (SQLite volume dahil) - .dockerignore - Gitea CI: lint + build + Docker imaj push - next.config.ts: output standalone eklendi
17 lines
279 B
YAML
17 lines
279 B
YAML
services:
|
|
app:
|
|
build: .
|
|
container_name: kolaytercih
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- app-data:/app/data
|
|
env_file:
|
|
- .env.production
|
|
environment:
|
|
- APP_DB_URL=file:/app/data/app.db
|
|
|
|
volumes:
|
|
app-data:
|