mirror of
https://git.coop/cotech/website.git
synced 2024-11-05 07:58:43 +00:00
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
|
#!/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
|
||
|
'
|