广告
返回顶部
首页 > 资讯 > 前端开发 > html >怎么干净的卸载docker
  • 1021
分享到

怎么干净的卸载docker

2024-04-02 19:04:59 1021人浏览 独家记忆
摘要

今天小编给大家分享一下怎么干净的卸载Docker的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下

今天小编给大家分享一下怎么干净的卸载Docker的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

先上服务器环境信息:

怎么干净的卸载docker

卸载的原因:

宿主机过段时间就磁盘100%了,导致continart异常退出,后来找了很多解决方案,才发现是安装docker的时候有个配置文件错误(正常的应该是|storage driver: overlay2)。

怎么干净的卸载docker

上干货:

①卸载

yum remove docker \
         docker-client \
         docker-client-latest \
         docker-common \
         docker-latest \
         docker-latest-logrotate \
         docker-logrotate \
         docker-selinux \
         docker-engine-selinux \
         docker-engine

rm -rf /etc/systemd/system/docker.service.d

rm -rf /var/lib/docker

rm -rf /var/run/docker

②安装

#!/bin/sh
set -e

# this script is meant for quick & easy install via:
#  $ curl -fssl get.docker.com -o get-docker.sh
#  $ sh get-docker.sh
#
# for test builds (ie. release candidates):
#  $ curl -fssl test.docker.com -o test-docker.sh
#  $ sh test-docker.sh
#
# note: make sure to verify the contents of the script
#    you downloaded matches the contents of install.sh
#    located at https://GitHub.com/docker/docker-install
#    before executing.
#
# git commit from Https://github.com/docker/docker-install when
# the script was uploaded (should only be modified by upload job):
script_commit_sha=36b78b2


# this value will automatically get changed for:
#  * edge
#  * test
#  * experimental
default_channel_value="edge"
if [ -z "$channel" ]; then
  channel=$default_channel_value
fi

default_download_url="https://download.docker.com"
if [ -z "$download_url" ]; then
  download_url=$default_download_url
fi

default_repo_file="docker-ce.repo"
if [ -z "$repo_file" ]; then
  repo_file="$default_repo_file"
fi

support_map="
x86_64-Centos-7
x86_64-fedora-26
x86_64-fedora-27
x86_64-fedora-28
x86_64-debian-wheezy
x86_64-debian-jessie
x86_64-debian-stretch
x86_64-debian-buster
x86_64-ubuntu-trusty
x86_64-ubuntu-xenial
x86_64-ubuntu-bionic
x86_64-ubuntu-artful
s390x-ubuntu-xenial
s390x-ubuntu-bionic
s390x-ubuntu-artful
ppc64le-ubuntu-xenial
ppc64le-ubuntu-bionic
ppc64le-ubuntu-artful
aarch64-ubuntu-xenial
aarch64-ubuntu-bionic
aarch64-debian-jessie
aarch64-debian-stretch
aarch64-debian-buster
aarch64-fedora-26
aarch64-fedora-27
aarch64-fedora-28
aarch64-centos-7
armv6l-raspbian-jessie
armv7l-raspbian-jessie
armv6l-raspbian-stretch
armv7l-raspbian-stretch
armv7l-debian-jessie
armv7l-debian-stretch
armv7l-debian-buster
armv7l-ubuntu-trusty
armv7l-ubuntu-xenial
armv7l-ubuntu-bionic
armv7l-ubuntu-artful
"

mirror=''
dry_run=${dry_run:-}
while [ $# -gt 0 ]; do
  case "$1" in
    --mirror)
      mirror="$2"
      shift
      ;;
    --dry-run)
      dry_run=1
      ;;
    --*)
      echo "illegal option $1"
      ;;
  esac
  shift $(( $# > 0 ? 1 : 0 ))
done

case "$mirror" in
  aliyun)
    download_url="https://mirrors.aliyun.com/docker-ce"
    ;;
  Azurechinacloud)
    download_url="https://mirror.azure.cn/docker-ce"
    ;;
esac

command_exists() {
  command -v "$@" > /dev/null 2>&1
}

is_dry_run() {
  if [ -z "$dry_run" ]; then
    return 1
  else
    return 0
  fi
}

deprecation_notice() {
  distro=$1
  date=$2
  echo
  echo "deprecation warning:"
  echo "  the distribution, $distro, will no longer be supported in this script as of $date."
  echo "  if you feel this is a mistake please submit an issue at https://github.com/docker/docker-install/issues/new"
  echo
  sleep 10
}

get_distribution() {
  lsb_dist=""
  # every system that we officially support has /etc/os-release
  if [ -r /etc/os-release ]; then
    lsb_dist="$(. /etc/os-release && echo "$id")"
  fi
  # returning an empty string here should be alright since the
  # case statements don't act unless you provide an actual value
  echo "$lsb_dist"
}

add_debian_backport_repo() {
  debian_version="$1"
  backports="deb http://ftp.debian.org/debian $debian_version-backports main"
  if ! grep -fxq "$backports" /etc/apt/sources.list; then
    (set -x; $sh_c "echo \"$backports\" >> /etc/apt/sources.list")
  fi
}

echo_docker_as_nonroot() {
  if is_dry_run; then
    return
  fi
  if command_exists docker && [ -e /var/run/docker.sock ]; then
    (
      set -x
      $sh_c 'docker version'
    ) || true
  fi
  your_user=your-user
  [ "$user" != 'root' ] && your_user="$user"
  # intentionally mixed spaces and tabs here -- tabs are stripped by "<<-eof", spaces are kept in the output
  echo "if you would like to use docker as a non-root user, you should now consider"
  echo "adding your user to the \"docker\" group with something like:"
  echo
  echo " sudo usermod -ag docker $your_user"
  echo
  echo "remember that you will have to log out and back in for this to take effect!"
  echo
  echo "warning: adding a user to the \"docker\" group will grant the ability to run"
  echo "     containers which can be used to obtain root privileges on the"
  echo "     docker host."
  echo "     refer to https://docs.docker.com/engine/security/security/#docker-daemon-attack-surface"
  echo "     for more infORMation."

}

# check if this is a forked linux distro
check_forked() {

  # check for lsb_release command existence, it usually exists in forked distros
  if command_exists lsb_release; then
    # check if the `-u` option is supported
    set +e
    lsb_release -a -u > /dev/null 2>&1
    lsb_release_exit_code=$?
    set -e

    # check if the command has exited successfully, it means we're in a forked distro
    if [ "$lsb_release_exit_code" = "0" ]; then
      # print info about current distro
      cat <<-eof
      you're using '$lsb_dist' version '$dist_version'.
      eof

      # get the upstream release info
      lsb_dist=$(lsb_release -a -u 2>&1 | tr '[:upper:]' '[:lower:]' | grep -e 'id' | cut -d ':' -f 2 | tr -d '[:space:]')
      dist_version=$(lsb_release -a -u 2>&1 | tr '[:upper:]' '[:lower:]' | grep -e 'codename' | cut -d ':' -f 2 | tr -d '[:space:]')

      # print info about upstream distro
      cat <<-eof
      upstream release is '$lsb_dist' version '$dist_version'.
      eof
    else
      if [ -r /etc/debian_version ] && [ "$lsb_dist" != "ubuntu" ] && [ "$lsb_dist" != "raspbian" ]; then
        if [ "$lsb_dist" = "osmc" ]; then
          # osmc runs raspbian
          lsb_dist=raspbian
        else
          # we're debian and don't even know it!
          lsb_dist=debian
        fi
        dist_version="$(sed 's/\/.*//' /etc/debian_version | sed 's/\..*//')"
        case "$dist_version" in
          9)
            dist_version="stretch"
          ;;
          8|'kali linux 2')
            dist_version="jessie"
          ;;
          7)
            dist_version="wheezy"
          ;;
        esac
      fi
    fi
  fi
}

semverparse() {
  major="${1%%.*}"
  minor="${1#$major.}"
  minor="${minor%%.*}"
  patch="${1#$major.$minor.}"
  patch="${patch%%[-.]*}"
}

ee_notice() {
  echo
  echo
  echo " warning: $1 is now only supported by docker ee"
  echo "      check https://store.docker.com for information on docker ee"
  echo
  echo
}

do_install() {
  echo "# executing docker install script, commit: $script_commit_sha"

  if command_exists docker; then
    docker_version="$(docker -v | cut -d ' ' -f3 | cut -d ',' -f1)"
    major_w=1
    minor_w=10

    semverparse "$docker_version"

    shouldwarn=0
    if [ "$major" -lt "$major_w" ]; then
      shouldwarn=1
    fi

    if [ "$major" -le "$major_w" ] && [ "$minor" -lt "$minor_w" ]; then
      shouldwarn=1
    fi

    cat >&2 <<-'eof'
      warning: the "docker" command appears to already exist on this system.

      if you already have docker installed, this script can cause trouble, which is
      why we're displaying this warning and provide the opportUnity to cancel the
      installation.

      if you installed the current docker package using this script and are using it
    eof

    if [ $shouldwarn -eq 1 ]; then
      cat >&2 <<-'eof'
      again to update docker, we urge you to migrate your image store before upgrading
      to v1.10+.

      you can find instructions for this here:
      https://github.com/docker/docker/wiki/engine-v1.10.0-content-addressability-migration
      eof
    else
      cat >&2 <<-'eof'
      again to update docker, you can safely ignore this message.
      eof
    fi

    cat >&2 <<-'eof'

      you may press ctrl+c now to abort this script.
    eof
    ( set -x; sleep 20 )
  fi

  user="$(id -un 2>/dev/null || true)"

  sh_c='sh -c'
  if [ "$user" != 'root' ]; then
    if command_exists sudo; then
      sh_c='sudo -e sh -c'
    elif command_exists su; then
      sh_c='su -c'
    else
      cat >&2 <<-'eof'
      error: this installer needs the ability to run commands as root.
      we are unable to find either "sudo" or "su" available to make this happen.
      eof
      exit 1
    fi
  fi

  if is_dry_run; then
    sh_c="echo"
  fi

  # perform some very rudimentary platform detection
  lsb_dist=$( get_distribution )
  lsb_dist="$(echo "$lsb_dist" | tr '[:upper:]' '[:lower:]')"

  case "$lsb_dist" in

    ubuntu)
      if command_exists lsb_release; then
        dist_version="$(lsb_release --codename | cut -f2)"
      fi
      if [ -z "$dist_version" ] && [ -r /etc/lsb-release ]; then
        dist_version="$(. /etc/lsb-release && echo "$distrib_codename")"
      fi
    ;;

    debian|raspbian)
      dist_version="$(sed 's/\/.*//' /etc/debian_version | sed 's/\..*//')"
      case "$dist_version" in
        9)
          dist_version="stretch"
        ;;
        8)
          dist_version="jessie"
        ;;
        7)
          dist_version="wheezy"
        ;;
      esac
    ;;

    centos)
      if [ -z "$dist_version" ] && [ -r /etc/os-release ]; then
        dist_version="$(. /etc/os-release && echo "$version_id")"
      fi
    ;;

    rhel|ol|sles)
      ee_notice "$lsb_dist"
      exit 1
      ;;

    *)
      if command_exists lsb_release; then
        dist_version="$(lsb_release --release | cut -f2)"
      fi
      if [ -z "$dist_version" ] && [ -r /etc/os-release ]; then
        dist_version="$(. /etc/os-release && echo "$version_id")"
      fi
    ;;

  esac

  # check if this is a forked linux distro
  check_forked

  # check if we actually support this configuration
  if ! echo "$support_map" | grep "$(uname -m)-$lsb_dist-$dist_version" >/dev/null; then
    cat >&2 <<-'eof'

    either your platform is not easily detectable or is not supported by this
    installer script.
    please visit the following url for more detailed installation instructions:

    https://docs.docker.com/engine/installation/

    eof
    exit 1
  fi

  # run setup for each distro accordingly
  case "$lsb_dist" in
    ubuntu|debian|raspbian)
      pre_reqs="apt-transport-https ca-certificates curl"
      if [ "$lsb_dist" = "debian" ]; then
        if [ "$dist_version" = "wheezy" ]; then
          add_debian_backport_repo "$dist_version"
        fi
        # libseccomp2 does not exist for debian jessie main repos for aarch64
        if [ "$(uname -m)" = "aarch64" ] && [ "$dist_version" = "jessie" ]; then
          add_debian_backport_repo "$dist_version"
        fi
      fi

      # todo: august 31, 2018 delete from here,
      if [ "$lsb_dist" = "ubuntu" ] && [ "$dist_version" = "artful" ]; then
        deprecation_notice "$lsb_dist $dist_version" "august 31, 2018"
      fi
      # todo: august 31, 2018 delete to here,

      if ! command -v gpg > /dev/null; then
        pre_reqs="$pre_reqs gnupg"
      fi
      apt_repo="deb [arch=$(dpkg --print-architecture)] $download_url/linux/$lsb_dist $dist_version $channel"
      (
        if ! is_dry_run; then
          set -x
        fi
        $sh_c 'apt-get update -qq >/dev/null'
        $sh_c "apt-get install -y -qq $pre_reqs >/dev/null"
        $sh_c "curl -fssl \"$download_url/linux/$lsb_dist/gpg\" | apt-key add -qq - >/dev/null"
        $sh_c "echo \"$apt_repo\" > /etc/apt/sources.list.d/docker.list"
        if [ "$lsb_dist" = "debian" ] && [ "$dist_version" = "wheezy" ]; then
          $sh_c 'sed -i "/deb-src.*download\.docker/d" /etc/apt/sources.list.d/docker.list'
        fi
        $sh_c 'apt-get update -qq >/dev/null'
      )
      pkg_version=""
      if [ ! -z "$version" ]; then
        if is_dry_run; then
          echo "# warning: version pinning is not supported in dry_run"
        else
          # will work for incomplete versions ie (17.12), but may not actually grab the "latest" if in the test channel
          pkg_pattern="$(echo "$version" | sed "s/-ce-/~ce~.*/g" | sed "s/-/.*/g").*-0~$lsb_dist"
          search_command="apt-cache madison 'docker-ce' | grep '$pkg_pattern' | head -1 | cut -d' ' -f 4"
          pkg_version="$($sh_c "$search_command")"
          echo "info: searching repository for version '$version'"
          echo "info: $search_command"
          if [ -z "$pkg_version" ]; then
            echo
            echo "error: '$version' not found amongst apt-cache madison results"
            echo
            exit 1
          fi
          pkg_version="=$pkg_version"
        fi
      fi
      (
        if ! is_dry_run; then
          set -x
        fi
        $sh_c "apt-get install -y -qq --no-install-recommends docker-ce$pkg_version >/dev/null"
      )
      echo_docker_as_nonroot
      exit 0
      ;;
    centos|fedora)
      yum_repo="$download_url/linux/$lsb_dist/$repo_file"
      if ! curl -ifs "$yum_repo" > /dev/null; then
        echo "error: unable to curl repository file $yum_repo, is it valid?"
        exit 1
      fi
      if [ "$lsb_dist" = "fedora" ]; then
        if [ "$dist_version" -lt "26" ]; then
          echo "error: only fedora >=26 are supported"
          exit 1
        fi

        pkg_manager="dnf"
        config_manager="dnf config-manager"
        enable_channel_flag="--set-enabled"
        pre_reqs="dnf-plugins-core"
        pkg_suffix="fc$dist_version"
      else
        pkg_manager="yum"
        config_manager="yum-config-manager"
        enable_channel_flag="--enable"
        pre_reqs="yum-utils"
        pkg_suffix="el"
      fi
      (
        if ! is_dry_run; then
          set -x
        fi
        $sh_c "$pkg_manager install -y -q $pre_reqs"
        $sh_c "$config_manager --add-repo $yum_repo"

        if [ "$channel" != "stable" ]; then
          $sh_c "$config_manager $enable_channel_flag docker-ce-$channel"
        fi
        $sh_c "$pkg_manager makecache"
      )
      pkg_version=""
      if [ ! -z "$version" ]; then
        if is_dry_run; then
          echo "# warning: version pinning is not supported in dry_run"
        else
          pkg_pattern="$(echo "$version" | sed "s/-ce-/\\\\.ce.*/g" | sed "s/-/.*/g").*$pkg_suffix"
          search_command="$pkg_manager list --showduplicates 'docker-ce' | grep '$pkg_pattern' | tail -1 | awk '{print \$2}'"
          pkg_version="$($sh_c "$search_command")"
          echo "info: searching repository for version '$version'"
          echo "info: $search_command"
          if [ -z "$pkg_version" ]; then
            echo
            echo "error: '$version' not found amongst $pkg_manager list results"
            echo
            exit 1
          fi
          # cut out the epoch and prefix with a '-'
          pkg_version="-$(echo "$pkg_version" | cut -d':' -f 2)"
        fi
      fi
      (
        if ! is_dry_run; then
          set -x
        fi
        $sh_c "$pkg_manager install -y -q docker-ce$pkg_version"
      )
      echo_docker_as_nonroot
      exit 0
      ;;
  esac
  exit 1
}

# wrapped up in a function so that we have some protection against only getting
# half the file during "curl | sh"
do_install
chmod +x getdocker.sh 
./getdocker.sh -s docker --mirror aliyun

getdocker.sh 文件内容在上个代码区域

以上就是“怎么干净的卸载docker”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网html频道。

--结束END--

本文标题: 怎么干净的卸载docker

本文链接: https://www.lsjlt.com/news/96370.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • 怎么干净的卸载docker
    今天小编给大家分享一下怎么干净的卸载docker的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下...
    99+
    2022-10-19
  • windows office365怎么卸载干净
    这篇文章主要介绍“windows office365怎么卸载干净”,在日常操作中,相信很多人在windows office365怎么卸载干净问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”windows off...
    99+
    2023-06-30
  • win10 cad怎么卸载干净
    本文小编为大家详细介绍“win10 cad怎么卸载干净”,内容详细,步骤清晰,细节处理妥当,希望这篇“win10 cad怎么卸载干净”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。win10 cad卸载干净的方法首...
    99+
    2023-07-01
  • python卸载方法(教你一招干干净净卸载Python
    是认真的。我们在写怎么从hello world开始你的python之旅,本篇是说卸载python安装版,不是放弃python哦。 为什么要卸载 有的版本太旧。python3一改python2的旧习,成了名副其实的“版本帝”。 原有的pyt...
    99+
    2023-09-01
    python 开发语言
  • git 卸载不干净
    在开始之前,我们先来简单了解一下 Git。Git 是一个版本控制系统,可以帮助我们记录文件的变化,以便在以后进行跟踪和比较,同时也方便多人协作开发,确保代码的同步和一致性。Git 是一个非常流行的工具,被广泛应用于软件开发、网站建设、文档编...
    99+
    2023-10-22
  • nodejs 卸载不干净
    近年来,随着Node.js在全球范围内的广泛应用,越来越多的开发者开始在其项目中使用该框架。但是,由于Node.js的更新频繁,许多人在进行版本升级或卸载时会出现一些问题。有时候,即使你已经卸载了Node.js,却仍然会遗留下一些文件或配置...
    99+
    2023-05-18
  • navicat怎么卸载,navicat彻底卸载干净教程
    目录navicat彻底卸载干净教程navicat升级后,失效,重新ok,navicat彻底卸载总结navicat彻底卸载干净教程 1、控制面板卸载 2、删除对应的文件夹 3、删除注册表 全部删除就好了 ~ navic...
    99+
    2023-02-15
    navicat怎么卸载 navicat彻底卸载 navicat卸载
  • windows amd驱动怎么卸载干净
    本篇内容介绍了“windows amd驱动怎么卸载干净”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!amd驱动卸载干净的方法:我们可以下载安...
    99+
    2023-06-30
  • 如何卸载干净nodejs
    Node.js是一款开放源代码的JavaScript运行环境,它使得开发者们可以使用JavaScript语言开发服务器端的应用程序。随着Node.js的越来越流行,其使用人数也愈发增长。但是,有时候我们需要卸载Node.js,卸载Node....
    99+
    2023-05-23
  • nodejs如何卸载干净
    要在Windows系统上彻底卸载Node.js,您可以按照以下步骤进行操作:1. 打开“控制面板”。2. 点击“程序”。3. 在“程...
    99+
    2023-08-24
    nodejs
  • AndroidStudio卸载删除干净
    文章目录 前言一、卸载AndroidStudio程序二、删除目录.android三,删除AndroidStudio,Sdk目录在这里插入图片描述 这样文件目录就删除干净了,接下来的教程是将配置...
    99+
    2023-10-01
    android android studio ide
  • mysql如何卸载干净
    mysql卸载干净的方法:1、停止mysql服务;2、卸载“mysql server”程序;3、将mysql安装目录下的mysql文件夹删除;4、删除注册表中与mysql相关的三个文件夹;5、删除“C:\ProgramData\MySQL”...
    99+
    2022-10-21
  • navicat如何卸载干净
    这篇文章将为大家详细讲解有关navicat如何卸载干净,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。卸载点开windows设置,选择应用,找道navicat,点击选择卸载...
    99+
    2022-10-18
  • matlab如何卸载干净
    本篇内容介绍了“matlab如何卸载干净”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!matlab卸载干净的方法:首先打开电脑的设置,然后打...
    99+
    2023-07-04
  • sql2008r2如何卸载干净
    本篇内容主要讲解“sql2008r2如何卸载干净”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“sql2008r2如何卸载干净”吧!sql2008r2卸载干净教程首先打开“控制面板”,接着点击“卸...
    99+
    2023-07-04
  • 干净卸载mysql的方法
    本篇内容主要讲解“干净卸载mysql的方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“干净卸载mysql的方法”吧!第七步出现找不到相应的文件夹。第七步:路径...
    99+
    2022-10-18
  • 怎么查看oracle是否卸载干净
    要查看Oracle是否已经卸载干净,可以按照以下步骤进行操作:1. 检查Oracle安装目录是否还存在。默认情况下,Oracle安装...
    99+
    2023-08-30
    oracle
  • windows夸克网盘怎么卸载干净
    这篇文章主要介绍了windows夸克网盘怎么卸载干净的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇windows夸克网盘怎么卸载干净文章都会有所收获,下面我们一起来看看吧。夸克网盘卸载干净的方法:首先打开控制面...
    99+
    2023-07-04
  • windows上怎么干净彻底的卸载oracle
    1.关闭oracle所有的服务。可以在windows的服务管理器中关闭;2.打开注册表:regedit 打开路径:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Se...
    99+
    2022-10-18
  • Android Studio如何卸载干净?
    想要卸载Android Studio?跟着步骤做,还愁卸载不干净? 卸载前,一定要把Android Studio退出,接着打开【控制面板】——【卸载程序】——【Android Studio】——右键【卸载】   卸载Android St...
    99+
    2023-09-20
    android studio android android-studio
软考高级职称资格查询
推荐阅读
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作