Skip to content

Commit

Permalink
Fixed typo in readme and removed readonly flag in docker-compose. (#12)
Browse files Browse the repository at this point in the history
* Fixed Typo in readme

* Remove readonly flag on config folder
  • Loading branch information
seesharper authored Mar 2, 2023
1 parent 821a578 commit bba0606
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ mosquitto_pub -h localhost -t sensor/temperature -m 23

The config file is in the file [mosquito.conf](./config/mosquitto.conf)

By default we activated the log and data persistance (logs are in the `log` folder, and data are stored in a docker voume).
By default we activated the log and data persistance (logs are in the `log` folder, and data are stored in a docker volume).

## Authentication

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
mosquitto:
image: eclipse-mosquitto:2
volumes:
- ./config/:/mosquitto/config/:ro
- ./config/:/mosquitto/config/
- ./log/:/mosquitto/log/
- data:/mosquitto/data/
ports:
Expand Down

0 comments on commit bba0606

Please sign in to comment.