initial commit - code moved to separate repo

This commit is contained in:
Dobromir Popov
2024-02-22 04:19:38 +02:00
commit 560d503219
240 changed files with 105125 additions and 0 deletions

14
_deploy/demo.11-demo.yml Normal file
View File

@ -0,0 +1,14 @@
version: "3.1"
services:
nextjs-app:
image: node:20.11.0-alpine #sachinvashist/nextjs-docker #
ports:
- "5001:3000" # Map port 3000 from container to host
volumes:
- /mnt/apps/DEV/cart-demo:/app
environment:
- NODE_ENV=demo
- DATABASE_URL=mysql://cart:cart2023@192.168.0.10:3306/cart
command: sh -c " cd /app && npm run test; tail -f /dev/null"
tty: true
stdin_open: true