mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 12:13:38 +00:00
83619ad6e3
Signed-off-by: Kang HuaiShuai <khs1994@khs1994.com>
392 lines
9.0 KiB
Go
392 lines
9.0 KiB
Go
module.exports = {
|
|
title: 'Docker 从入门到实践',
|
|
base: '/',
|
|
themeConfig: {
|
|
docsRepo: 'yeasy/docker_practice',
|
|
docsDir: '/',
|
|
editLinks: true,
|
|
nav: [{
|
|
text: '安装 Docker',
|
|
link: '/install/',
|
|
},
|
|
{
|
|
text: 'Docker 入门',
|
|
link: '/'
|
|
},
|
|
{
|
|
text: 'Docker 实战',
|
|
link: '/cases/os/'
|
|
},
|
|
{
|
|
text: 'CI/CD',
|
|
link: '/cases/ci/'
|
|
},
|
|
{
|
|
text: 'Docker 仓库',
|
|
link: '/repository/'
|
|
},
|
|
{
|
|
text: '底层实现',
|
|
link: '/underly/',
|
|
},
|
|
{
|
|
text: 'Compose',
|
|
link: '/compose/',
|
|
},
|
|
{
|
|
text: 'Kubernetes',
|
|
link: '/kubernetes/',
|
|
},
|
|
{
|
|
text: "云计算",
|
|
link: "/cloud/",
|
|
},
|
|
{
|
|
text: 'GitHub',
|
|
link: 'https://github.com/yeasy/docker_practice'
|
|
},
|
|
// {
|
|
// text: '捐赠',
|
|
// link: ''
|
|
// },
|
|
{
|
|
text: '腾讯云容器服务',
|
|
link: 'https://cloud.tencent.com/redirect.php?redirect=10058&cps_key=3a5255852d5db99dcd5da4c72f05df61'
|
|
},
|
|
// {
|
|
// text: '语言',
|
|
// items: [{
|
|
// text: 'English',
|
|
// link: ''
|
|
// }]
|
|
// }
|
|
],
|
|
sidebar: {
|
|
'/cloud/': [
|
|
'intro',
|
|
'aws',
|
|
'tencentCloud',
|
|
'alicloud',
|
|
'summary',
|
|
],
|
|
'/kubernetes/': [
|
|
'intro',
|
|
'concepts',
|
|
'design',
|
|
{
|
|
title: "部署 Kubernetes",
|
|
collapsable: false,
|
|
children: [
|
|
"setup/",
|
|
"setup/docker",
|
|
]
|
|
},
|
|
{
|
|
title: "Kubernetes 命令行 kubectl",
|
|
collapsable:false,
|
|
children: [
|
|
'kubectl/'
|
|
]
|
|
}
|
|
],
|
|
'/compose/': [
|
|
'introduction',
|
|
'install',
|
|
'usage',
|
|
'commands',
|
|
'compose_file',
|
|
'django',
|
|
'rails',
|
|
'wordpress',
|
|
],
|
|
'/install/': [
|
|
'ubuntu',
|
|
'debian',
|
|
'fedora',
|
|
'centos',
|
|
'raspberry-pi',
|
|
'mac',
|
|
'windows',
|
|
'mirror',
|
|
'experimental',
|
|
],
|
|
'/underly/': [
|
|
'arch',
|
|
'namespace',
|
|
'cgroups',
|
|
'ufs',
|
|
'container_format',
|
|
'network',
|
|
],
|
|
'/repository/': [
|
|
'dockerhub',
|
|
'registry',
|
|
'registry_auth',
|
|
'nexus3_registry',
|
|
],
|
|
'/cases/os/': [
|
|
{
|
|
title: "操作系统",
|
|
collapsable:false,
|
|
children: [
|
|
'busybox',
|
|
'alpine',
|
|
'debian',
|
|
'centos',
|
|
'summary',
|
|
],
|
|
},
|
|
{
|
|
title: "在 IDE 中使用 Docker",
|
|
collapsable: false,
|
|
children: [
|
|
'/IDE/',
|
|
'/IDE/vsCode',
|
|
],
|
|
},
|
|
],
|
|
'/cases/ci/': [
|
|
'actions/',
|
|
{
|
|
title: "Drone",
|
|
collapsable: false,
|
|
children: [
|
|
'drone/',
|
|
'drone/install'
|
|
]
|
|
},
|
|
'travis/'
|
|
],
|
|
'/': [
|
|
'/',
|
|
'/CHANGELOG',
|
|
'/CONTRIBUTING',
|
|
{
|
|
title: "Docker 简介",
|
|
collapsable: false,
|
|
children: [
|
|
'introduction/',
|
|
'introduction/what',
|
|
'introduction/why',
|
|
]
|
|
},{
|
|
title: "基本概念",
|
|
collapsable: false,
|
|
children: [
|
|
'basic_concept/',
|
|
'basic_concept/image',
|
|
'basic_concept/container',
|
|
'basic_concept/repository'
|
|
]
|
|
},
|
|
{
|
|
title: "使用镜像",
|
|
collapsable: false,
|
|
children: [
|
|
'image/',
|
|
'image/pull',
|
|
'image/list',
|
|
'image/rm',
|
|
'image/commit',
|
|
'image/build',
|
|
'image/other.md',
|
|
'image/internal.md',
|
|
]
|
|
},
|
|
{
|
|
title: 'Dockerfile',
|
|
collapsable: false,
|
|
children: [
|
|
"image/dockerfile/",
|
|
'image/dockerfile/copy',
|
|
'image/dockerfile/add',
|
|
'image/dockerfile/cmd',
|
|
'image/dockerfile/entrypoint',
|
|
'image/dockerfile/env',
|
|
'image/dockerfile/arg',
|
|
'image/dockerfile/volume',
|
|
'image/dockerfile/expose',
|
|
'image/dockerfile/workdir',
|
|
'image/dockerfile/user',
|
|
'image/dockerfile/healthcheck',
|
|
'image/dockerfile/onbuild',
|
|
'image/dockerfile/references',
|
|
'image/multistage-builds/',
|
|
'image/multistage-builds/laravel',
|
|
'image/manifest',
|
|
]
|
|
},{
|
|
title: "操作容器",
|
|
collapsable: false,
|
|
children: [
|
|
'container/',
|
|
'container/run',
|
|
'container/daemon',
|
|
'container/stop',
|
|
'container/attach_exec',
|
|
'container/import_export',
|
|
'container/rm',
|
|
],
|
|
},
|
|
{
|
|
title: "数据管理",
|
|
collapsable:false,
|
|
children: [
|
|
'data_management/',
|
|
'data_management/volume',
|
|
'data_management/bind-mounts',
|
|
],
|
|
},{
|
|
title: "使用网络",
|
|
collapsable:false,
|
|
children: [
|
|
'network/',
|
|
'network/port_mapping',
|
|
'network/linking',
|
|
'network/dns',
|
|
],
|
|
},
|
|
{
|
|
title: "高级网络配置",
|
|
collapsable:false,
|
|
children: [
|
|
'advanced_network/',
|
|
'advanced_network/quick_guide',
|
|
'advanced_network/access_control',
|
|
'advanced_network/port_mapping',
|
|
'advanced_network/bridge',
|
|
'advanced_network/example',
|
|
'advanced_network/config_file',
|
|
'advanced_network/ptp',
|
|
],
|
|
},
|
|
{
|
|
title: "Swarm mode",
|
|
collapsable:false,
|
|
children: [
|
|
'swarm_mode/',
|
|
'swarm_mode/overview',
|
|
'swarm_mode/create',
|
|
'swarm_mode/deploy',
|
|
'swarm_mode/stack',
|
|
'swarm_mode/secret',
|
|
'swarm_mode/config',
|
|
'swarm_mode/rolling_update',
|
|
],
|
|
},
|
|
{
|
|
title: "安全",
|
|
collapsable: false,
|
|
children: [
|
|
'security/',
|
|
'security/kernel_ns',
|
|
'security/control_group',
|
|
'security/daemon_sec',
|
|
'security/kernel_capability',
|
|
'security/other_feature',
|
|
'security/summary',
|
|
],
|
|
},
|
|
{
|
|
title: "Docker Buildx",
|
|
collapsable: false,
|
|
children: [
|
|
"buildx/",
|
|
"buildx/buildkit",
|
|
"buildx/buildx",
|
|
"buildx/multi-arch-images",
|
|
],
|
|
},
|
|
{
|
|
title: "Etcd",
|
|
collapsable:false,
|
|
children: [
|
|
'etcd/',
|
|
'etcd/intro',
|
|
'etcd/install',
|
|
'etcd/cluster',
|
|
'etcd/etcdctl',
|
|
],
|
|
},
|
|
{
|
|
title: "Fedora CoreOS",
|
|
collapsable: false,
|
|
children: [
|
|
'coreos/',
|
|
'coreos/intro',
|
|
'coreos/intro_tools',
|
|
],
|
|
},
|
|
{
|
|
title: "Docker 开源项目",
|
|
collapsable:false,
|
|
children:[
|
|
'opensource/',
|
|
'opensource/linuxkit',
|
|
],
|
|
},
|
|
'appendix/faq/',
|
|
{
|
|
title: "热门镜像介绍",
|
|
collapsable: false,
|
|
children: [
|
|
'appendix/repo/',
|
|
'appendix/repo/ubuntu',
|
|
'appendix/repo/centos',
|
|
'appendix/repo/nginx',
|
|
'appendix/repo/php',
|
|
'appendix/repo/nodejs',
|
|
'appendix/repo/mysql',
|
|
'appendix/repo/wordpress',
|
|
'appendix/repo/mongodb',
|
|
'appendix/repo/redis',
|
|
],
|
|
},
|
|
{
|
|
title: "Docker 命令",
|
|
collapsable: false,
|
|
children: [
|
|
'appendix/command/',
|
|
'appendix/command/docker',
|
|
'appendix/command/dockerd',
|
|
]
|
|
},
|
|
'appendix/best_practices',
|
|
'appendix/debug',
|
|
'appendix/resources',
|
|
'archive/',
|
|
{
|
|
title: "Docker Machine",
|
|
collapsable: false,
|
|
children: [
|
|
'machine/',
|
|
'machine/install',
|
|
'machine/usage',
|
|
],
|
|
},
|
|
{
|
|
title: 'Mesos',
|
|
collapsable: false,
|
|
children: [
|
|
'mesos/',
|
|
'mesos/intro',
|
|
'mesos/installation',
|
|
'mesos/architecture',
|
|
'mesos/configuration',
|
|
'mesos/monitor',
|
|
'mesos/framework',
|
|
'mesos/summary',
|
|
]
|
|
},
|
|
{
|
|
title: 'Docker Swarm',
|
|
collapsable: false,
|
|
children: [
|
|
"swarm/"
|
|
]
|
|
}
|
|
],
|
|
},
|
|
}
|
|
}
|