node.js dashboard works

This commit is contained in:
2025-11-30 22:17:14 -08:00
parent c6d51f2a49
commit ebbc5ac5cf
22 changed files with 829 additions and 196 deletions

View File

@ -0,0 +1,28 @@
services:
web_dash:
container_name: web_dash
image: php:8.0-apache
ports:
- 80:80
volumes:
- ./html:/var/www/html/
network_mode: bridge
restart: always
ws_node:
container_name: ws_node
image: ws_node
ports:
- 3000:3000
network_mode: bridge
restart: always
depends_on:
- redis
redis:
image: redis:7-alpine
network_mode: bridge
restart: always
ports:
- 172.17.0.1:6379:6379