Files
rv50x-manager/docker-compose.yml
D Stephenson f8125ed123 Simplify to standalone service on shared nocodb-network, add modem_num field
Strips embedded nocodb/postgres services from compose; switches to shared
nocodb-network. Adds modem_num to NocoDB field list. Fixes session cookie
secure flag. Removes previously-tracked XML template files (covered by .gitignore).
2026-06-23 11:42:47 -05:00

41 lines
1.1 KiB
YAML

services:
rv50x-manager:
build:
context: .
dockerfile: Dockerfile
container_name: rv50x-manager
ports:
- "8002:8000"
volumes:
- ./certs:/certs:ro
- ./template_downloads:/data/template_downloads
- ./template_uploads:/data/template_uploads
- ./xml_templates:/data/xml_templates
- ./rv50x.db:/app/rv50x.db
- ./at_presets.json:/app/at_presets.json
environment:
- NOCODB_URL=http://nocodb:8080
- NOCODB_TOKEN=eWU_ilelaCtNy1JzC7vf41DokkqFOovcLHM0zVml
- NOCODB_BASE_ID=pdq96x915xt4a0m
- NOCODB_TABLE_ID=mkewnr53ahqvnt9
- NOCODB_VIEW_ID=vwl7qvxo1xclvawz
- NOCODB_VIEW_ID_ELECTRIC=
- NOCODB_VIEW_ID_GW=
- PAGE_TIMEOUT=90000
- DOWNLOAD_TIMEOUT=120000
- UPLOAD_TIMEOUT=120000
- MAX_RETRIES=3
- APP_USERNAME=admin
- APP_PASSWORD=Arrakis-10191
- SESSION_SECRET=someraandomlongstring123
- SESSION_HOURS=8
restart: unless-stopped
networks:
- nocodb-network
networks:
nocodb-network:
external: true
name: nocodb-network