0%

Windows安装配置Docker

windows安装docker, 示例部署gitlab

安装

自行下载安装Docker Desktop

安装完成后命令行输入docker -v可查看Docker版本信息

配置

配置镜像源

  1. 在配置中添加registry mirrors

    1
    2
    3
    4
    "registry-mirrors": [
    "https://docker.1ms.run",
    "https://docker.xuanyuan.me"
    ]
  2. 修改docker/daemon.json文件设置registry mirrors

拉去镜像

如: 拉取gitlabdocker pull gitlab/gitlab-ee:latest

Gitlab配置

新建文件路径存储Gitlab信息如:

gitlab

config
data
logs
docker-compose.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: '3'
services:
gitlab:
image: 'gitlab/gitlab-ee:latest' # 使用 GitLab 企业版镜像,或将 'gitlab-ee' 改为 'gitlab-ce' 使用社区版
restart: always
hostname: 'localhost' # 配置 GitLab 的主机名,可以改为你自己的域名或 IP 地址
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://localhost' # GitLab 的外部 URL,建议替换为你服务器的域名或 IP
ports:
- '80:80' # 映射 HTTP 端口
- '443:443' # 映射 HTTPS 端口
- '22:22' # 映射 SSH 端口,供 GitLab 使用
volumes:
- ./gitlab/config:/etc/gitlab
- ./gitlab/data:/var/opt/gitlab
- ./gitlab/logs:/var/log/gitlab
logging:
driver: 'json-file'
options:
max-size: '2g'

启动Gitlab

使用命令docker-compose up -d启动容器需要一定时间, 期间可以用docker ps查看状态, 从starting转为healthy则启动成功
访问http://localhost即可登录gitlab
默认用户为:root 密码在gitlab部署目录下gitlab下的gitlab/config/initial_root_password文件中