分类标签归档:python

docker实践


django项目介绍 项目地址:https://gitee.com/agagin/python-demo.git python3 + django + uwsgi + nginx + mysql 内部服务端口8002

容器化Django项目 dockerfiles/myblog/Dockerfile

# This my first django Dockerfile
# Version 1.0

# Base images 基础镜像
FROM centos:centos7.5.1804

#MAINTAINER 维护者信息
LABEL maintainer="inspur_lyx@h

Read more