Files
kolaytercih/docker-compose.yml
Muhammed Emin Akalan 2ce0d417dc
Some checks failed
Test / test (push) Successful in 2s
CI / lint-and-build (push) Failing after 1m16s
CI / docker (push) Has been skipped
Docker & Gitea CI ekle
- 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
2026-07-24 04:08:22 +03:00

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: