Update README with Docker deployment instructions and bump version to 0.0.1-beta in package.json
This commit is contained in:
17
docker-compose-dev.yml
Normal file
17
docker-compose-dev.yml
Normal 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
|
||||
Reference in New Issue
Block a user