6323b4c2c9
This reverts commit 8bdfe16249
.
Going to need that to open up the network space outside of the
container. See https://github.com/moby/moby/issues/28121.
23 lines
265 B
Bash
Executable File
23 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
# Fire up Jekyll with the right configuration
|
|
run_jekyll() {
|
|
set -eu
|
|
|
|
bundle exec jekyll serve \
|
|
--port "$JEKYLL_PORT" \
|
|
--host "$JEKYLL_HOST" \
|
|
--trace
|
|
}
|
|
|
|
# Main entrypoint
|
|
main() {
|
|
set -eu
|
|
|
|
run_jekyll
|
|
}
|
|
|
|
main
|