标签: docker

10 篇文章

TrueNAS Scale使用Docker编译Openwrt
相关资料文档: https://github.com/mwarning/docker-openwrt-builder https://github.com/noonien/docker-openwrt-buildroot https://blog.mjyai.com/2021/02/12/docker-compile-lede-openwrt/ https://blog.laolilin.com/posts/2020/02/using_docker_to_build_openwrt.html 清理docker残留数据 docker system prune docker volume prune docker image prune 构建镜像 docker build -t foxopenwrt . --network host 运行镜像 …
docker 安装相关说明及资料
docker install update date: 2021-12-09 docker install doc url: https://docs.docker.com/engine/install/centos/ curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh docker-compose install 1.29.2 doc url:https://docs.docker.com/compose/install/ sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname …
安装docker
安装docker 安装docker - https://docs.docker.com/engine/install/centos/ 卸载旧版 sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine 安装yum工具 sudo yum install -y yum-utils 添加docker库 sudo yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo rpm -…
如何更新docker容器镜像
2018-07 from--https://blog.minirplus.com/12138/ Cloud Torrent出了新版本,但是当前运行的容器还是老版的,遂尝试更新容器镜像 方法 拉取最新镜像 停止并删除当前运行容器 用最新镜像重新创建容器 All Done! 拉取最新镜像 查找当前系统中使用的镜像 1 docker images 拉取最新镜像 1 docker pull jpillora/cloud-torrent 输出显示 1 2 3 4 5 6 Using default tag: latest latest: Pulling from jpillora/cloud-torrent 1eae7a7426b0:Pullcomplete 4136a8c2b2a4:Pullcomplete Digest: sha256:2ae38…
Docker容器添加定时任务
from--https://stackoverflow.com/questions/37015624/how-to-run-a-cron-job-inside-a-docker-container from--https://forums.docker.com/t/how-to-run-a-cron-job-inside-a-container-alpine/7759/8 from--https://stackoverflow.com/questions/37458287/how-to-run-a-cron-job-inside-a-docker-container 这是我运行我的cron容器之一的方法。 Dockerfile: FROM alpine:3.3 ADD crontab.txt /crontab.txt ADD script.…
Docker Samba 文件共享踩坑记录
2019-09 from--https://ld246.com/article/1569228613055 ubuntu18.04 默认的 samba 版本号为 4.7,这个版本不支持 timemachine,于是准备在 docker 上搭建,虽然目前还没开起 timemachine 的功能,但是后续有空也许会弄上。 用的人最多的镜像是 dperson/samba,然而官方的例子太少了,只给了常用情况,但我还有一些需求没有满足, 比如使用单独文件存放密码什么的,于是踩了一波坑。 下面这个是我的完整的 docker 命令 docker run -itd --name samba --restart=always --net=host \ -v /etc/localtime:/etc/localtime \ -v /home/lomot/doc…
thumbnail
有关Dockerfile 多阶段构建原理和使用场景的分享
2018-08 from--https://blog.csdn.net/weixin_42852772/article/details/82013418?utm_medium=distribute.pc_relevant.none-task-blog-baidujs-7 Docker 17.05版本以后,新增了Dockerfile多阶段构建。所谓多阶段构建,实际上是允许一个Dockerfile 中出现多个 FROM 指令。这样做有什么意义呢? 老版本Docker中为什么不支持多个 FROM 指令 在17.05版本之前的Docker,只允许Dockerfile中出现一个FROM指令,这得从镜像的本质说起。 在《Docker概念简介》 中我们提到,你可以简单理解Docker的镜像是一个压缩文件,其中包含了你需要的程序和一个文件系统。其实这样说是…