Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/installation/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Es gibt mehrere Möglichkeiten, diese zu erstellen:

Der evcc Docker Container benötigt zwei Volumes:

- `/etc/evcc.yaml` für die Konfigurationsdatei
- `/app/evcc.yaml` für die Konfigurationsdatei
- `/root/.evcc/` Verzeichnis für die interne SQLite Datenbank. Die Datenbank wird automatisch in diesem Verzeichnis abgelegt.

Erstelle diese Verzeichnisse auf deinem Host-System.
Expand All @@ -73,7 +73,7 @@ Hier sind die relevanten Angaben, die du eintragen musst:

| Host Pfad | Container Pfad | Beschreibung |
|------------------------|-----------------|-----------------------------------|
| `/home/user/evcc.yaml` | `/etc/evcc.yaml`| Konfigurationsdatei |
| `/home/user/evcc.yaml` | `/app/evcc.yaml`| Konfigurationsdatei |
| `/home/user/.evcc/` | `/root/.evcc` | Verzeichnis für interne Datenbank |

#### Ports {#ports}
Expand Down Expand Up @@ -114,7 +114,7 @@ Ob du `sudo` benötigst, hängt von deinem System ab.

```sh
sudo docker run -d --name evcc \
-v /home/user/evcc.yaml:/etc/evcc.yaml \
-v /home/user/evcc.yaml:/app/evcc.yaml \
-v /home/user/.evcc:/root/.evcc \
-p 7070:7070 \
-p 8887:8887 \
Expand All @@ -126,7 +126,7 @@ evcc/evcc:latest

```sh
sudo docker run -d --name evcc \
-v /home/user/evcc.yaml:/etc/evcc.yaml \
-v /home/user/evcc.yaml:/app/evcc.yaml \
-v /home/user/.evcc:/root/.evcc \
-p 7070:7070 \
-p 8887:8887 \
Expand Down Expand Up @@ -206,7 +206,7 @@ services:
- 7070:7070/tcp
- 8887:8887/tcp
volumes:
- /home/user/evcc.yaml:/etc/evcc.yaml
- /home/user/evcc.yaml:/app/evcc.yaml
- /home/user/.evcc:/root/.evcc
restart: unless-stopped
```
Expand All @@ -228,7 +228,7 @@ services:
- 9522:9522/udp
- 4712:4712/tcp
volumes:
- /home/user/evcc.yaml:/etc/evcc.yaml
- /home/user/evcc.yaml:/app/evcc.yaml
- /home/user/.evcc:/root/.evcc
- /etc/machine-id:/etc/machine-id
- /var/lib/dbus/machine-id:/var/lib/dbus/machine-id
Expand Down