Skip to content
New issue

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

Jekyll Server docker run command unwanted behavior in ZSH #324

Open
fam4r opened this issue Oct 18, 2021 · 0 comments
Open

Jekyll Server docker run command unwanted behavior in ZSH #324

fam4r opened this issue Oct 18, 2021 · 0 comments

Comments

@fam4r
Copy link

fam4r commented Oct 18, 2021

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):

$ 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant