init with docker

This commit is contained in:
Jason Jordan
2025-06-25 16:45:58 -04:00
commit f971a75ad5
19 changed files with 6538 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
version: '3.8'
services:
web:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "3001:3001"
volumes:
- .:/usr/src/app # Mount the current directory into the container for live reloading
- /app/node_modules # Isolate node_modules to prevent host-container conflicts