21 lines
340 B
YAML
21 lines
340 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
node-red:
|
|
container_name: node-red
|
|
image: nodered/node-red:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
ports:
|
|
- "1880:1880"
|
|
volumes:
|
|
- ./data:/data
|
|
networks:
|
|
nginx:
|
|
aliases:
|
|
- node-red
|
|
|
|
networks:
|
|
nginx:
|
|
external: true |