mirror of
https://git.coop/cotech/website.git
synced 2024-11-04 23:48:43 +00:00
13 lines
204 B
Bash
Executable File
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
|
|
'
|