diff --git a/docker-compose.yml b/docker-compose.yml index dab018760..0ea99399a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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" \ No newline at end of file diff --git a/serve b/serve index 162916d5f..67de7bfe3 100755 --- a/serve +++ b/serve @@ -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"