Skip to content

Commit

Permalink
make config file read only again
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderankin committed Jun 12, 2024
1 parent 043300f commit eb1dab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mqtt/testcontainers/mqtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def start(self, configfile: Optional[str] = None) -> Self:
if configfile is None:
# default config file
configfile = Path(__file__).parent / MosquittoContainer.CONFIG_FILE
self.with_volume_mapping(configfile, "/mosquitto/config/mosquitto.conf", "rw")
self.with_volume_mapping(configfile, "/mosquitto/config/mosquitto.conf")
# if self.password:
# # TODO: add authentication
# pass
Expand Down

0 comments on commit eb1dab8

Please sign in to comment.