mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-20 12:58:43 +00:00
docs: enable navbar, clean up text
This commit is contained in:
parent
bfd45f47fa
commit
ecf4ba5e2b
2 changed files with 14 additions and 12 deletions
|
|
@ -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: []
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue