mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2025-01-09 20:49:31 -05:00
11 lines
220 B
Bash
11 lines
220 B
Bash
#!/bin/bash
|
|
|
|
docker run \
|
|
--name=site \
|
|
--network=site \
|
|
--restart=always \
|
|
--volume="$PWD:/srv/jekyll:Z" \
|
|
--volume="$PWD/vendor/bundle:/usr/local/bundle:Z" \
|
|
--detach \
|
|
-it jekyll/jekyll \
|
|
jekyll serve |