Skip to content

Commit

Permalink
fix encoding issues in serve command
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean Paul Mugizi committed Oct 24, 2016
1 parent d3695f6 commit fb0904f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ app:
volumes:
- .:/app
entrypoint: ruby /app/docker_entrypoint.rb
command: ./serve --host 0.0.0.0 --incremental --trace
command: ./serve
ports:
- "4000:4000"
2 changes: 1 addition & 1 deletion serve
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ if [ -n $FAST_BUILDS ]; then
export FAST_BUILDS=true;
fi

bundle exec jekyll serve --watch --incremental --config="_config.yml,_config-fast-builds.yml,_config-dev.yml"
LC_ALL="en_US.UTF-8" bundle exec jekyll serve --watch --host 0.0.0.0 --trace --config="_config.yml,_config-fast-builds.yml,_config-dev.yml"

0 comments on commit fb0904f

Please sign in to comment.