Skip to content

Commit

Permalink
Fix typo. Fix README for docker volume creation when entrypoint must …
Browse files Browse the repository at this point in the history
…be overridden
  • Loading branch information
firecat53 committed Feb 21, 2019
1 parent ccef254 commit d6098d0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions samba/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ be formatted like::

Then run

./initialze.sh
./initialize.sh

I strongly recommend deleting users.txt from the current directory after it gets
copied into the data-only volume as it contains passwords in plain text!
Expand All @@ -44,7 +44,7 @@ Systemd service file is available if desired. Otherwise::
To add new users or update the smb.conf, edit or recreate those files in the
working directory, then run::

./initialze.sh
./initialize.sh

Note that this completely replaces existing users/smb.conf. If you just want to
add a user without re-creating users.txt or smb.conf, use docker exec to enter
Expand Down
2 changes: 1 addition & 1 deletion stringer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ database instead of the default postgres database.
Create a data-only volume for saving the stringer sqlite database:

docker create -v /data --name stringer_data myscratch true
docker run --rm --volumes-from stringer_data --user root stringer chown -R stringer:stringer /data
docker run --rm --volumes-from stringer_data --user root --entrypoint= stringer chown -R stringer:stringer /data

## Run

Expand Down
2 changes: 1 addition & 1 deletion syncthing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ gid of the user who will be running Syncthing.
Create config volume and set permissions::

docker create -v /config --name syncthing_config myscratch true
docker run --rm --volumes-from syncthing_config --user root syncthing chown -R syncthing:users /config
docker run --rm --volumes-from syncthing_config --user root --entrypoint= syncthing chown -R syncthing:users /config

## Run

Expand Down

0 comments on commit d6098d0

Please sign in to comment.