We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running the provided docker run command in ZSH in order to deploy a Jekyll server I got an unwanted behavior:
docker run
$ docker run --rm \ --volume="$PWD:/srv/jekyll" \ --publish [::1]:4000:4000 \ jekyll/jekyll \ jekyll serve zsh: no matches found: [::1]:4000:4000
Please update the README with the following command (basically encloses the --publish option value in double quotes):
--publish
$ docker run --rm \ --volume="$PWD:/srv/jekyll" \ --publish "[::1]:4000:4000" \ jekyll/jekyll \ jekyll serve
I checked also in Bash and it doesn't break anything.
Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running the provided
docker run
command in ZSH in order to deploy a Jekyll server I got an unwanted behavior:$ docker run --rm \ --volume="$PWD:/srv/jekyll" \ --publish [::1]:4000:4000 \ jekyll/jekyll \ jekyll serve zsh: no matches found: [::1]:4000:4000
Please update the README with the following command (basically encloses the
--publish
option value in double quotes):I checked also in Bash and it doesn't break anything.
Thank you.
The text was updated successfully, but these errors were encountered: