千家信息网

windows 2008 开机启动 Docker Toolbox 并运行容器

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,新建 docker-startup.bat@echo offREM Set the name of the VM configuration where dockerd will be hosteds
千家信息网最后更新 2025年01月23日windows 2008 开机启动 Docker Toolbox 并运行容器

新建 docker-startup.bat

@echo offREM Set the name of the VM configuration where dockerd will be hostedset BOOT2DOCKER_VM=defaultset PATH=%PATH%;"D:\Program Files\Docker Toolbox\"REM Start the default machine (or any other machine)docker-machine start %BOOT2DOCKER_VM%REM docker-compose up or docker run docker-compose up -d

因为我使用Docker Compose管理多个容器,你也可以直接docker run 运行镜像

创建并设置任务计划

cdn.xitu.io/2018/9/29/16624d8a9be88764?w=631&h=506&f=png&s=11912">

设置为系统启动时执行计划

指定要执行的脚本

"程序或脚本" 选择刚创建的docker-startup.bat

"起始于" D:\Program Files\Docker Toolbox\

"起始于" 指向docker-startup.bat所在的目录且不能用双引号包括


开机自动执行脚本后服务会在后台运行,打开VirtualBox会显示镜像是关闭状态,莫慌,已在后台启动了(被坑得不要不要的。。。)

打开Docker Quickstart Terminal会报错,因为已被后台占用

开机后稍等一会,让服务跑起来,ssh到docker

enjoy life

参考:
https://serverfault.com/questions/753971/windows-how-to-start-docker-vm-att-system-boot

来源:windows 2008 开机启动 Docker Toolbox 并运行容器

0