first commit

This commit is contained in:
romiz5269
2025-11-18 18:45:28 +03:30
commit acfea140a3
152 changed files with 15818 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.9'
services:
nextjs:
build: .
ports:
- "3000:3000"
depends_on:
- jsonserver
environment:
NEXT_PUBLIC_API_URL: "http://jsonserver:4000"
jsonserver:
image: clue/json-server
ports:
- "4000:4000"
volumes:
- ./db.json:/data/db.json
command: json-server --watch /db.json --port 4000