Files
Website/docker-compose.yml
2025-06-01 03:49:42 +02:00

12 lines
279 B
YAML

version: '3.8'
services:
web:
image: node:18-alpine
container_name: website-dev
working_dir: /app
network_mode: host
volumes:
- /opt/docker/Website:/app
command: sh -c "npm install && npm run dev -- --host --port 8097"
restart: unless-stopped