Skip to content

Commit

Permalink
Fixing a few things in the docs.. (#611)
Browse files Browse the repository at this point in the history
* adding swedish translation

* adding comments from endlish errors.po

* adding new translations for swedish

* fix #524 of adriankumpf/teslamate

* adding translation for geo-fence in swedish

* fixing translation of charge limit in swedish

* fixiing translation of mileage in swedish

* Fix typos

* adding swedish translations

* adjustment of swedish translation suggested by Thomas Hennig

* MQTT_HOST default should be 127.0.0.1 for screen, as in systemd

* adding drop_cap to traefik example, which all other guides have

* removing quotation marks around ports for portainer

* adjusting volumes for portainer to match other guides

Co-authored-by: Adrian Kumpf <[email protected]>
  • Loading branch information
tobiasehlert and adriankumpf authored Apr 20, 2020
1 parent b761b4f commit e1609d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions website/docs/guides/portainer.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ services:
image: portainer/portainer
restart: always
ports:
- "9000:9000"
- 9000:9000
command: -H unix:///var/run/docker.sock
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
- portainer-data:/data

volumes:
portainer_data:
portainer-data:
```
Then you can access the docker management console on http://yourhost:9000.
Expand Down
3 changes: 2 additions & 1 deletion website/docs/guides/traefik.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ services:
- "traefik.http.routers.teslamate.middlewares=auth"
- "traefik.http.routers.teslamate.entrypoints=websecure"
- "traefik.http.routers.teslamate.tls.certresolver=tmhttpchallenge"
cap_drop:
- all

database:
image: postgres:12
Expand Down Expand Up @@ -181,4 +183,3 @@ docker-compose exec grafana grafana-cli admin reset-admin-password
```

:::

2 changes: 1 addition & 1 deletion website/docs/installation/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export DATABASE_USER="teslamate"
export DATABASE_PASS="secret"
export DATABASE_HOST="127.0.0.1"
export DATABASE_NAME="teslamate"
export MQTT_HOST="192.168.1.1"
export MQTT_HOST="127.0.0.1"
export MQTT_USERNAME="teslamate"
export MQTT_PASSWORD="teslamate"
export MQTT_TLS="false"
Expand Down

0 comments on commit e1609d5

Please sign in to comment.