随笔分类 - docker
摘要:ubuntu安装docker 更新软件包索引: apt-get update 允许APT使用HTTPS: apt-get install apt-transport-https ca-certificates curl software-properties-common lsb-release l
阅读全文
摘要:更新docker源 修改docker源 vim /etc/docker/daemon.json { "registry-mirrors": [ "https://ustc-edu-cn.mirror.aliyuncs.com/", "https://ccr.ccs.tencentyun.com/",
阅读全文
摘要:首先,创建一个 Dockerfile 文件,内容如下: FROM php:7.4-fpm RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.listRUN sed -i 's/security.
阅读全文
摘要:一、下载最新版nacos,linux如果没有安装docker,百度自行查找linux安装docker教程docker pull nacos/nacos-server 下载完成后查看已下载的镜像docker images 二、运行nacos容器docker run --name nacos -e MO
阅读全文
摘要:ubuntu 安装docker 更新软件包索引:apt-get update 允许APT使用HTTPS:apt-get install apt-transport-https ca-certificates curl software-properties-common lsb-release li
阅读全文
摘要:目录结构 docker-compose.yml version: "3" services: nginx: image: nginx:latest ports: - "80:80" volumes: - ./code:/var/www/html - ./nginx/default.conf:/etc
阅读全文