k0rventen / apple-health-grafana

Visualise your Apple Health export in Grafana
390 stars 28 forks source link

[Bug]: Grafana default port #31

Closed kurktchiev closed 1 week ago

kurktchiev commented 1 week ago

What happened?

I already have something running on port 3000 and since grafana is trying to bind to it, I have to change the compose to say 8181:8181 but that does not seem to be working as grafana is seemingly unware of the change :(

Environment

macos with intel CPU

Relevant log output

none, but basically the port designation in the compose is not trickling down to the grafana container config so grafana is still trying to listen to :3000

docker-compose.yml

services:
  grafana:
    image: k0rventen/apple-health-grafana-grafana:v0.5.0
    ports:
    - 8181:8181
  influx:
    image: influxdb:1.8
    environment:
      - INFLUXDB_DB=health
    volumes:
    - influx-data:/var/lib/influxdb
  ingester:
    image: k0rventen/apple-health-grafana-ingester:v0.5.0
    volumes:
    - /Users/boris/Sources/home-docker-volumes/apple-health/export.zip:/export.zip

volumes:
  influx-data: