diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 85d3f0d..e85b215 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -1,10 +1,12 @@ module.exports = { - base:'/docker-compose/' - // lang: 'en-US', - // title: 'Hello, VuePress!', - // description: 'This is my first VuePress site', - - // themeConfig: { - // logo: 'https://vuejs.org/images/logo.png' - // } + base: '/docker-compose/', + themeConfig: { + navbar: [ + { text: 'GitHub', link: 'https://github.com/PDMLab/docker-compose' }, + { text: 'npm', link: 'https://npmjs.com/docker-compose' } + ], + displayAllHeaders: true, + lastUpdated: true, + sidebar: [] + } } diff --git a/docs/README.md b/docs/README.md index 7785222..43ebac0 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,11 +1,11 @@ --- -layout: default -title: README -nav_order: 99 +title: Manage Docker-Compose via Node.js +lang: en-US +home: false --- # Manage Docker-Compose via Node.js -`docker-compose` is a small library that allows you to run [docker-compose](https://docs.docker.com/compose/)(which is still required) via Node.js. This is useful to bootstrap test environments. You might also generate your `docker-compose.yml` files using [composefile](https://www.npmjs.com/package/composefile). +`docker-compose` is a small library that allows you to run [docker-compose](https://docs.docker.com/compose/) (which is still required) via Node.js. This is useful to bootstrap test environments. ## Installation