- 修改系统时间:
> timedatectl set-timezone Asia/Shanghai- run es
| # Stop all containers | |
| docker stop `docker ps -qa` | |
| # Remove all containers | |
| docker rm `docker ps -qa` | |
| # Remove all images | |
| docker rmi -f `docker images -qa ` | |
| # Remove all volumes |
source
修改配置文件 /etc/docker/daemon.json
{
"registry-mirrors": [
"https://docker.mirrors.ustc.edu.cn",
"https://hub-mirror.c.163.com"
]
}import contextlib
import sys
def your_task():
print("The test !")| { | |
| "python.pythonPath": "venv/bin/python", | |
| "python.analysis.extraPaths": [], | |
| "python.autoComplete.extraPaths": [], | |
| "files.watcherExclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/venv/**": true, | |
| "**/.git/**": true, | |
| }, |