linux
「已注销」
这个作者很懒,什么都没留下…
展开
-
批量构建docker镜像
批量构建dockers镜像shell脚本# !/bin/bash # 指定shell类型dockerfile="Dockerfile"length=`cat imageFile.txt | jq '.| length'`for ((i=0; i<length; i++))do if [ -f "$dockerfile" ]; then rm -rf $dockerfile fi imageUrl=`cat imageFile.txt原创 2021-04-27 10:23:58 · 579 阅读 · 0 评论 -
构建py3.6+tensorflow1.15镜像
通过容器构建#创建python3.6 conda install -y python=3.6 #创建tensorflow1.15conda install -y tensorflow-gpu=1.15python -m pip install -i https://pypi.douban.com/simple/ jupyter python -m pip install -i https://pypi.douban.com/simple/ ipywidgets jupyter nb原创 2021-04-27 10:11:45 · 355 阅读 · 0 评论 -
构建py3.6+pytorch1.2镜像
通过容器构建#创建python3.6 conda install -y python=3.6 #创建pytorch1.2conda install -y pytorch=1.2python -m pip install -i https://pypi.douban.com/simple/ jupyter python -m pip install -i https://pypi.douban.com/simple/ ipywidgets jupyter nbextension en原创 2021-04-27 10:11:04 · 274 阅读 · 0 评论 -
制作cuda10.0+miniconda镜像 dockerfile文件
dockerfileFROM nvidia/cuda:10.0-devel-ubuntu16.04MAINTAINER yangxd@deepblueai.comWORKDIR /home/userENV PATH /root/miniconda3/bin:$PATHENV PATH /root/miniconda3/condabin:$PATH #useradd --create-home --no-log-init --shell /bin/bash user \#&&a原创 2021-04-27 10:09:18 · 869 阅读 · 0 评论 -
Centos7 防火墙
CentOS7 以上机器一些命令和低版本CentOS是有些差异的,本文只针对CentOS7 以上版本。CentOS7使用firewalld打开关闭防火墙与端口1、firewalld的基本使用启动: systemctl start firewalld关闭: systemctl stop firewalld查看状态: systemctl status firewalld开机禁用 : systemctl disable firewalld开机启用 : systemctl enable firewal原创 2021-04-27 10:07:52 · 5671 阅读 · 0 评论 -
备份docker部署的mysql数据sh脚本
#!/bin/bash# 设置mysql的登录用户名和密码(根据实际情况填写)mysql_user="root"mysql_password="xxx"mysql_host="localhost"mysql_port="3306"mysql_charset="utf8mb4"# 备份文件存放地址backup_location=/home/infrastructure/mysql/backup# 是否删除过期数据expire_backup_delete="ON"expire_原创 2021-04-27 10:05:39 · 277 阅读 · 0 评论