doppelt senden unterbinden. CSV

This commit is contained in:
ChK
2026-03-17 08:15:25 +01:00
parent 427d29b43b
commit aa8d3b82fb
5 changed files with 134 additions and 2 deletions

21
docker-compose.yaml Executable file
View File

@@ -0,0 +1,21 @@
services:
appRobotHoming:
image: node:20-bullseye
container_name: appRobot_Homing
working_dir: /app
volumes:
- /home/chk/Documents/appRobotHoming:/app
environment:
- WSS_VIDEO_DRIVER=wss://localhost:8448
- WSS_URL=wss://appRobot_Driver:2095
- HTTPS_PORT=2093
ports:
- "2093:2093"
depends_on:
- appRobotDriver
command: >
/bin/bash -lc "npm ci || npm install && node server/server.js"
networks:
- default
restart: unless-stopped