博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker 镜像制作
阅读量:4911 次
发布时间:2019-06-11

本文共 2039 字,大约阅读时间需要 6 分钟。

# wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

# bash 

# source ~/.bashrc

# conda -V

# conda install jupyter notebook

# jupyter notebook
# conda install ipython

# ipython 进入python shell交互

# jupyter notebook --generate-config

Writing default config to: /root/.jupyter/jupyter_notebook_config.py

# ipython //进入ipython交互模式

# In [1]: from notebook.auth import passwd
# In [2]: passwd()

Enter password:

Verify password:
Out[2]: 'sha1:d93397e8cfba:d93d88814530642f44233b72110621aef924bdd7'

'sha1:97fb8b9cfed6:bd105748f3ce5f9ec1ff7eb21c43f00019c6ba6f'

修改默认配置文件

# vi ~/.jupyter/jupyter_notebook_config.py

c.NotebookApp.ip='*' # 设置所有ip皆可访问

c.NotebookApp.password = u'sha1:上面生成的哈希值' #
c.NotebookApp.open_browser = False # 禁止自动打开浏览器
c.NotebookApp.port = 8888 #指定一个端口
更改存储文件地址
## The directory to use for notebooks and kernels.
2 c.NotebookApp.notebook_dir = 'E:\dev\Jupyter'

启动jupyter

# jupyter notebook --allow-root

 

 

 

启动脚本 auto_service.sh

#!/bin/sh

/bin/serviceA start #启动服务
/bin/bash #保留一个终端,防止容器自动退出 
启动镜像按指定启动脚本 

docker run -d -t -v /etc/localtime:/etc/localtime -p 8889:8889  --name service_A imageX   /home/auto_service.sh

 

登录和提交镜像

docker pull centos

docker run -it -d --name test-centos1 centos
docker exec -it test-centos1 /bin/bash
docker commit test-centos1 centos_sshd:7.0

conda install -c anaconda pymysql

from sqlalchemy import create_engine
engine=create_engine('mysql+pymysql://username:password.@HOST_IP:PORT/db_name?charset=utf8') 
conn = engine.connect() 
r = conn.execute('select sysdate()')
查看 centos version
 cat /etc/redhat-release

 linux 离线安装缺少包可强制安装

rpm -ivh  --nodeps  createrepo-0.9.9-28.el7.noarch.rpm #意思不考虑依赖

centos1

docker exec -it 93b7ef3dd8f8 /bin/bash 172.31.254.3
creditapp
docker exec -it 9999d669359a /bin/bash 172.31.254.7
xxl-job
docker exec -it 05f5424f45a4 /bin/bash 172.31.254.6
docker cp ./ROOT 05f5424f45a4:/usr/local/tomcat/webapps/ROOT
fastdfs
172.31.254.8
从服务器下载整个目录
scp -r root@172.96.190.155:/data/ROOT/ ./
docker cp /data/bak/ROOT 93b7ef3dd8f8:/data

 

转载于:https://www.cnblogs.com/adolfmc/p/11572696.html

你可能感兴趣的文章
第一次OO作业总结
查看>>
python 怎么画图
查看>>
EntityFramework Linq to Entities Left join and filter Include
查看>>
C#中的结构体与类的区别
查看>>
8th week blog 1
查看>>
BZOJ3991 [SDOI2015]寻宝游戏
查看>>
estt
查看>>
关于Java语言中那些修饰符
查看>>
LeetCode-380 Insert Delete GetRandom O(1)
查看>>
Flink – Trigger,Evictor
查看>>
Recurrent NN vs Recursive NN
查看>>
如何在vue+element中实现选择框和穿梭框的根据拼音以及拼音首字母以及汉字的模糊搜索...
查看>>
.net面试题
查看>>
php读取不到https的域名
查看>>
2018-01-11 Antlr4实现数学四则运算
查看>>
centos7上基于kubernetes的docker集群管理
查看>>
【转】七个受用一生的心理寓言
查看>>
nginx
查看>>
自制密码管理系统
查看>>
成功者所应具有的九大素质
查看>>