使用docker时需要使用虚拟环境吗?

时间:2019-03-29 02:47:14

标签: django docker virtualenv

我不知道Docker比虚拟环境有什么好处。是否需要同时使用虚拟环境和docker。

在今天之前,基本上,我使用虚拟环境创建了Django项目。但是今天我的朋友推荐我使用docker。我很困惑该怎么用?

我使用此命令创建虚拟环境 python3 -m venv virtual_environment_name 这是创建虚拟环境的最佳方法还是我应该使用另一种方法创建虚拟环境

1 个答案:

答案 0 :(得分:3)

我宁愿在本地开发环境中使用pipenv替换virtualenv,而在生产环境中使用不具有虚拟环境的docker。这是我的Dockerfile(使用gunicorn运行django):

FROM python:3.6

ENV PYTHONUNBUFFERED 1

# switch system download source
RUN python -c "s='mirrors.163.com';import re;from pathlib import Path;p=Path('/etc/apt/sources.list');p.write_text(re.sub(r'(deb|security)\.debian\.org', s, p.read_text()))"
RUN apt-get update

# aliyun source for pip
RUN python -c "s='mirrors.aliyun.com';from pathlib import Path;p=Path.home()/'.pip';p.mkdir();(p/'pip.conf').write_text(f'[global]\nindex-url=https://{s}/pypi/simple\n[install]\ntrusted-host={s}\n')"

# Optional: install and conf vim, install ipython
RUN apt-get install -y vim
RUN wget https://raw.githubusercontent.com/waketzheng/carstino/master/.vimrc
RUN pip install ipython

# copy source code to docker image
WORKDIR /carrot
ADD . .

# required packages for carrot
RUN apt-get install -y ruby-sass

# install gunicorn and Pipfile
RUN pip install pipenv gunicorn
RUN pipenv install --system
RUN python manage.py collectstatic --noinput

# database name and rpc server ip
ENV POSTGRES_HOST=db
ENV RPC_SERVER_IP=172.21.0.2

EXPOSE 9000

# the PASSWORD env should be replace to a real one
CMD ["gunicorn", "--bind", ":9000", "--env", "PASSWORD=123456", "--error-logfile", "gunicorn.error", "--log-file", "gunicorn.log", "carrot.wsgi:application"]