This commit is contained in:
imtodor 2018-10-15 17:48:37 +03:00
Родитель 8b176d3779
Коммит 7ae9832906
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -14,7 +14,7 @@ if [ ! -z "$2" ]
echo "Debug mode: $debug_params"
fi
rm -rf _site/ && rm -rf .sass-cache && rm -rf .jekyll-cache && rm -rf .asset-cache
rm -rf _site/ .sass-cache .jekyll-cache .asset-cache
docker pull tmitev/docs-seed:site
docker build -t tmitev/docs-seed:site .
docker run --rm --env CONFIG_FILE=$config_file --env JEKYLL_COMMAND=build --env JEKYLL_EXTRA=$debug_params -t -v "/$(pwd):/app_root" -t tmitev/docs-seed:site

Просмотреть файл

@ -7,7 +7,7 @@ if [ ! -z "$1" ]
echo "Using configuration from: $config_file"
fi
rm -rf _site/ && rm -rf .sass-cache && rm -rf .jekyll-cache && rm -rf .asset-cache
rm -rf _site/ .sass-cache .jekyll-cache .asset-cache
docker pull tmitev/docs-seed:site
docker build -t tmitev/docs-seed:site .
docker run --rm -it --env CONFIG_FILE=$config_file --env JEKYLL_COMMAND="serve" --env JEKYLL_EXTRA="--watch --incremental --host 0.0.0.0" --name docs_site -t -i -v /$(pwd):/app_root -p 4000:4000 -t tmitev/docs-seed:site