Replies: 5 comments 17 replies
-
That would indicate that you are missing config files in your /users/marcbaier/powerwall-dashboard folder. Can you check that directory for us? ls /users/marcbaier/powerwall-dashboard/ |
Beta Was this translation helpful? Give feedback.
-
Hi Jason Here we go: Cat version: 2.7.1 Changes not staged for commit: Untracked files: no changes added to commit (use "git add" and/or "git commit -a") Docker version: Docker version 20.10.22, build 3a2c30b Docker Compose version v2.15.1 cat powerwall.yml: version: "3.5"
services:
influxdb:
image: influxdb:1.8
container_name: influxdb
hostname: influxdb
restart: always
volumes:
- type: bind
source: ./influxdb.conf
target: /etc/influxdb/influxdb.conf
read_only: true
- type: bind
source: ./influxdb
target: /var/lib/influxdb
ports:
- target: 8086
published: 8086
mode: host
pypowerwall:
image: jasonacox/pypowerwall:latest
container_name: pypowerwall
hostname: pypowerwall
restart: always
user: "1000:1000"
ports:
- target: 8675
published: 8675
mode: host
env_file:
- pypowerwall.env
telegraf:
image: telegraf:latest
container_name: telegraf
hostname: telegraf
restart: always
user: "1000:1000"
command: [
"telegraf",
"--config",
"/etc/telegraf/telegraf.conf",
"--config-directory",
"/etc/telegraf/telegraf.d"
]
volumes:
- type: bind
source: ./telegraf.conf
target: /etc/telegraf/telegraf.conf
read_only: true
- type: bind
source: ./telegraf.local
target: /etc/telegraf/telegraf.d/local.conf
read_only: true
depends_on:
- influxdb
- pypowerwall
grafana:
image: grafana/grafana:9.1.2-ubuntu
container_name: grafana
hostname: grafana
restart: always
user: "${GRAFANAUSER}"
volumes:
- type: bind
source: ./grafana
target: /var/lib/grafana
ports:
- target: 9000
published: 9000
mode: host
env_file:
- grafana.env
depends_on:
- influxdb
weather411:
image: jasonacox/weather411:latest
container_name: weather411
hostname: weather411
restart: always
user: "1000:1000"
volumes:
- type: bind
source: ./weather
target: /var/lib/weather
read_only: true
ports:
- target: 8676
published: 8676
mode: host
environment:
- WEATHERCONF=/var/lib/weather/weather411.conf
depends_on:
- influxdb
|
Beta Was this translation helpful? Give feedback.
-
Ah.. this may be it. Try to run If that works, try: docker compose -f powerwall.yml up -d |
Beta Was this translation helpful? Give feedback.
-
Ok I now got the /.setup.sh working:
|
Beta Was this translation helpful? Give feedback.
-
the command: docker compose -f powerwall.yml up -d - fixed it for me. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi - i followed the installation instructions and while going through the setup process, I am getting the following error message:
Running Docker Compose...
[+] Running 0/0
⠋ Container influxdb Creating 0.0s
Error response from daemon: invalid mount config for type "bind": bind source path does not exist: /users/marcbaier/powerwall-dashboard/influxdb.conf
What could the issue be ?
Beta Was this translation helpful? Give feedback.
All reactions