parent
fd85d5a0e5
commit
c572a399f3
|
@ -15,6 +15,6 @@
|
|||
"postStartCommand": [
|
||||
"sh",
|
||||
"-cx",
|
||||
"pwd ; mkdir -p /workspaces/docker_practice/node_modules; mkdir -p /workspaces/docker_practice/_book; mount --bind /srv/gitbook/node_modules /workspaces/docker_practice/node_modules ; mount --bind /mnt /workspaces/docker_practice/_book"
|
||||
"pwd ; cd /workspaces/docker_practice ; mkdir -p ${PWD}/node_modules; mkdir -p ${PWD}/_book; mount --bind /srv/gitbook/node_modules ${PWD}/node_modules ; mount --bind /mnt ${PWD}/_book"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
name: CI
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
const resolve = require("vuepress-theme-hope/resolve");
|
||||
// const { config } = require('vuepress-theme-hope')
|
||||
|
||||
// module.exports =config({
|
||||
module.exports = resolve({
|
||||
title: 'Docker 从入门到实践',
|
||||
base: '/',
|
||||
|
@ -52,7 +54,7 @@ module.exports = resolve({
|
|||
'Word',
|
||||
],
|
||||
footer: {
|
||||
content: "",
|
||||
content: "Powerd by Vuepress, Made with <a target='_blank' href='https://github.com/mister-hope/vuepress-theme-hope'>vuepress-theme-hope</a>",
|
||||
display: true,
|
||||
copyright: false,
|
||||
},
|
||||
|
@ -62,16 +64,13 @@ module.exports = resolve({
|
|||
hostname: 'https://vuepress.mirror.docker-practice.com',
|
||||
// author: 'yeasy',
|
||||
markdown: {
|
||||
// lineNumbers: true,
|
||||
// sub: true,
|
||||
// footnote: true
|
||||
enableAll: true
|
||||
lineNumbers: true,
|
||||
},
|
||||
themeColor: {
|
||||
blue: '#2196f3',
|
||||
red: '#f26d6d',
|
||||
green: '#3eaf7c',
|
||||
orange: '#fb9b5f'
|
||||
// red: '#f26d6d',
|
||||
// green: '#3eaf7c',
|
||||
// orange: '#fb9b5f'
|
||||
},
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue