13 lines
275 B
YAML
13 lines
275 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
image: node:18-alpine
|
|
container_name: website-dev
|
|
working_dir: /app
|
|
ports:
|
|
- "8097:5173"
|
|
volumes:
|
|
- /opt/docker/Website:/app
|
|
command: sh -c "npm install && npm run dev -- --host"
|
|
restart: unless-stopped |