COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20210728053603/https://github.com/github/pages-gem/blob/master/Makefile
Permalink
Cannot retrieve contributors at this time
DOCKER =docker
TAG =gh-pages
# Build the docker image
image :
${DOCKER} build -t ${TAG} .
image_alpine :
${DOCKER} build -t ${TAG} . -f Dockerfile.alpine
# Produce a bash shell
shell :
${DOCKER} run --rm -it \
-p 4000:4000 \
-u ` id -u` :` id -g` \
-v ${PWD} :/src/gh/pages-gem \
${TAG} \
/bin/bash
# Spawn a server. Specify the path to the SITE directory by
# exposing it using `export SITE="../path-to-jekyll-site"` prior to calling or
# by prepending it to the make rule e.g.: `SITE=../path-to-site make server`
server :
test -d " ${SITE} " || \
(echo -E " specify SITE e.g.: SITE=/path/to/site make server" ; exit 1) && \
${DOCKER} run --rm -it \
-p 4000:4000 \
-u ` id -u` :` id -g` \
-v ${PWD} :/src/gh/pages-gem \
-v ` realpath ${SITE} ` :/src/site \
-w /src/site \
${TAG}
.PHONY :
image image_alpine server shell
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.