17 lines
261 B
Markdown
17 lines
261 B
Markdown
---
|
|
title: Docker换源
|
|
createTime: 2024/08/01 15:32:15
|
|
tags:
|
|
- Docker
|
|
---
|
|
|
|
修改`/etc/docker/daemon.json`:
|
|
|
|
```bash
|
|
"registry-mirrors": [
|
|
"https://dockerhub.icu"
|
|
],
|
|
```
|
|
|
|
[https://github.com/dongyubin/DockerHub](https://github.com/dongyubin/DockerHub)
|