摘要:
dockerfile FROM python:3.6.8 WORKDIR /home ENV LC_ALL C.UTF-8 ENV NAME maike_business EXPOSE 8888 RUN apt-get update \ && apt-get install -y --no-inst 阅读全文
摘要:
centos安装crontab yum install crontabs #安装Crontab chkconfig crond on #设置开机启动Crontab service crond start #启动Crontab debian安装crontab apt-get install cron 阅读全文
摘要:
启动一个容器 docker run -itd -m 10g --name python3 --restart=always --net host -v /root/python_env:/root/python_env docker.io/python:3.6.8 -itd其中-d:后台启动;-t: 阅读全文