Callibration
This commit is contained in:
@@ -1,23 +1,20 @@
|
||||
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
|
||||
- WEBCAM_URL=http://appRobotWebcam:8444
|
||||
- BODYTRACKER_URL=http://appRobotBodyTracker:8446
|
||||
ports:
|
||||
- "2093:2093"
|
||||
depends_on:
|
||||
- appRobotDriver
|
||||
command: >
|
||||
/bin/bash -lc "npm ci || npm install && node server/server.js"
|
||||
networks:
|
||||
- default
|
||||
restart: unless-stopped
|
||||
|
||||
services:
|
||||
appRobotHoming:
|
||||
image: node:20-bullseye
|
||||
container_name: appRobot_Homing
|
||||
working_dir: /app
|
||||
volumes:
|
||||
- /home/chk/Documents/appRobotHoming:/app
|
||||
environment:
|
||||
- HTTPS_PORT=2093
|
||||
# host.docker.internal zeigt auf den Docker-Host → erreicht andere Stacks per Port
|
||||
- WEBCAM_URL=http://host.docker.internal:8444
|
||||
- BODYTRACKER_URL=http://host.docker.internal:8446
|
||||
extra_hosts:
|
||||
# Macht host.docker.internal auf Linux verfügbar (Standard auf macOS/Windows)
|
||||
- "host.docker.internal:host-gateway"
|
||||
ports:
|
||||
- "2093:2093"
|
||||
command: >
|
||||
/bin/bash -lc "npm ci || npm install && node server/server.js"
|
||||
restart: unless-stopped
|
||||
|
||||
Reference in New Issue
Block a user