Update README with Docker deployment instructions and bump version to 0.0.1-beta in package.json

This commit is contained in:
MunchDev-oss
2026-01-04 16:41:39 -05:00
parent 9b6424dfa1
commit 4239125455
7 changed files with 240 additions and 1 deletions

17
docker-compose-dev.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
ossm-configurator-dev:
image: node:20-alpine
container_name: ossm-configurator-dev
working_dir: /app
volumes:
- ./website:/app
- /app/node_modules
ports:
- "5173:5173"
command: sh -c "npm install && npm run dev -- --host"
environment:
- NODE_ENV=development
stdin_open: true
tty: true