Initial commit - modstagram-next

This commit is contained in:
root
2026-07-05 13:59:41 +03:30
commit 11e73da693
859 changed files with 117640 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: '3.8'
services:
next-app:
build: .
container_name: modstagram-next
restart: unless-stopped
ports:
- "3004:3000"
environment:
- NODE_ENV=production
- HOST=0.0.0.0
volumes:
- ./:/app
- /app/node_modules
- /app/.next