5
0
mirror of https://git.coop/cotech/website.git synced 2024-07-30 23:32:24 +00:00
cotech-website/dev
2018-11-30 11:56:42 +00:00

13 lines
204 B
Bash
Executable File

#!/bin/bash
set -eu
docker run --rm -it \
-v $(pwd):/src \
-p 4000:4000 \
ruby:2.5.3 sh -c '
cd /src &&
bundle --path vendor &&
bundle exec jekyll serve --host 0.0.0.0 --port 4000
'