Weather Station / ECOWITT / DNT
0

Configure Feed

Select the types of activity you want to include in your feed.

at stats2.0 431 B View raw
1services: 2 app: 3 image: ecowitt 4 build: 5 context: . 6 dockerfile: Dockerfile 7 container_name: ecowitt 8 restart: always 9 ports: 10 - "3010:3010" 11 environment: 12 - NODE_ENV=production 13 - PORT=3010 14 - NEXT_PUBLIC_RT_REFRESH_MS=300000 15 env_file: 16 - .env 17 volumes: 18 - ./DNT:/app/DNT 19 - ./data:/app/data 20 - ./src/config:/app/src/config 21 - ./eco.ts:/app/eco.ts 22