Session 2026-05-06: QuantumLeap+CrateDB, Telegraf debug, MapStore GeoServer fix

This commit is contained in:
Eric FELIXINE
2026-05-06 13:23:58 -04:00
parent b73b02f39d
commit 0ba25ef1a8
25 changed files with 688227 additions and 62 deletions

View File

@@ -0,0 +1,46 @@
version: '3.8'
networks:
traefik-public:
external: true
smartcity-shared:
external: true
services:
cratedb:
container_name: smart-city-cratedb
image: crate:5.5
restart: unless-stopped
environment:
- CRATE_HEAP_SIZE=1g
volumes:
- cratedb-data:/data
networks:
- smartcity-shared
ports:
- "4200:4200"
- "5432:5432"
quantumleap:
container_name: smart-city-quantumleap
image: fiware/quantum-leap:latest
restart: unless-stopped
environment:
- QL_CRATEDB_HOST=smart-city-cratedb
- QL_CRATEDB_PORT=5432
- QL_CRATEDB_DB_NAME=quantumleap
- QL_LOG_LEVEL=INFO
depends_on:
- cratedb
networks:
- smartcity-shared
- traefik-public
labels:
- "traefik.enable=true"
- "traefik.http.routers.quantumleap.rule=Host(`quantum-leap.digitribe.fr`)"
- "traefik.http.routers.quantumleap.entrypoints=websecure"
- "traefik.http.routers.quantumleap.tls=true"
- "traefik.http.services.quantumleap.loadbalancer.server.port=5000"
volumes:
cratedb-data: