From 8132344c2a75601f011ddd7d574e9111405bac04 Mon Sep 17 00:00:00 2001 From: Pieter Hollander Date: Sat, 17 Feb 2024 16:53:35 +0100 Subject: [PATCH] Remove grafana from compose.yml --- compose.timescaledb.grafana.yml | 44 --------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 compose.timescaledb.grafana.yml diff --git a/compose.timescaledb.grafana.yml b/compose.timescaledb.grafana.yml deleted file mode 100644 index f5d6994..0000000 --- a/compose.timescaledb.grafana.yml +++ /dev/null @@ -1,44 +0,0 @@ -version: '3.8' -services: - timescaledb: - image: timescale/timescaledb:latest-pg15 - environment: - POSTGRES_USER: ${PG_USER} - POSTGRES_PASSWORD: ${PG_PASSWORD} - POSTGRES_DB: ${PG_DB} - ports: - - "5433:5432" - networks: - - internal - volumes: - - /etc/timezone:/etc/timezone:ro - - /etc/localtime:/etc/localtime:ro - - /opt/p1-logger/database:/var/lib/postgresql/data - healthcheck: - test: ["CMD-SHELL", "pg_isready -U ${PG_USER}"] - interval: 5s - timeout: 5s - retries: 20 - - p1-logger: - image: git.hollander.online/energy/p1-logger:main - environment: - MQTT_BROKER: ${MQTT_BROKER} - MQTT_TOPIC: ${MQTT_TOPIC} - MQTT_USERNAME: ${MQTT_USERNAME} - MQTT_PASSWORD: ${MQTT_PASSWORD} - PG_DB: ${PG_DB} - depends_on: - timescaledb: - condition: service_healthy - networks: - - internal - volumes: - - /etc/timezone:/etc/timezone:ro - - /etc/localtime:/etc/localtime:ro - -networks: - internal: - attachable: true - proxy: - external: {}