This commit is contained in:
2025-06-01 03:50:57 +02:00
parent 9ae92c9bb6
commit b79ee78a9e

View File

@@ -1,5 +1,3 @@
version: '3.8'
services:
web:
image: node:18-alpine
@@ -8,5 +6,5 @@ services:
network_mode: host
volumes:
- /opt/docker/Website:/app
command: sh -c "npm install && npm run dev -- --host --port 8097"
command: sh -c "npm cache clean --force && rm -rf node_modules package-lock.json && npm install && npm run dev -- --host --port 8097"
restart: unless-stopped