创建了一个安装nginx,python,uwsgi和django的docker。如何在VM中测试它?

时间:2015-05-18 11:42:28

标签: django nginx docker uwsgi

我使用docker创建了following project

这是Dockerfile

############################################################
# Purpose   : Dockerize Django App to be used in AWS EC2
# Django    : 1.8.1
# OS        : Ubuntu 14.04
# WebServer : nginx
# Database  : Postgres inside RDS
# Python    : 2.7
# VERSION   : 0.1
############################################################

from ubuntu:14.04

maintainer Kim Stacks, kimcity@gmail.com

# make sure package repository is up to date
# this is commented out because it clashes with install build-essential
# run echo "deb http://archive.ubuntu.com/ubuntu trusty main universe" > /etc/apt/sources.list

run apt-get update

# run apt-get upgrade --force-yes -y

# install python
run apt-get install python  --force-yes -y              ## install 2.7
run apt-get install python-setuptools --force-yes -y    ## for python2.7 or above
run apt-get install build-essential --force-yes -y      ##
run apt-get install python-virtualenv --force-yes -y    ## virtual env
run apt-get install python-dev --force-yes -y       ## because ubuntu 14.04 does not have dev version of python 2


# install nginx
run apt-get install \
        nginx \
        --force-yes -y

## copy the nginx config files
COPY ./nginx_configuration/common.conf      /etc/nginx/common.conf
COPY ./nginx_configuration/fastcgi_params   /etc/nginx/fastcgi_params
COPY ./nginx_configuration/nginx.conf       /etc/nginx/nginx.conf
COPY ./nginx_configuration/php.conf         /etc/nginx/php.conf
COPY ./nginx_configuration/default          /etc/nginx/sites-available/default
COPY ./nginx_configuration/php.example      /etc/nginx/sites-available/php.example
COPY ./nginx_configuration/django-app.conf      /etc/nginx/sites-available/django-app.conf

## copy the bash_rc over
# COPY ./bash_files/.bash_profile           /root/.bash_profile

run /etc/init.d/nginx restart


########################################
## Install Django 
## and associated python modules
########################################

# Install pip
RUN easy_install pip

# Add and install Python modules
ADD requirements.txt /src/requirements.txt
RUN cd /src; pip install -r requirements.txt


# Bundle app source
ADD ./djangoapp /src

########################################
## Remove any unwanted packages
########################################
run apt-get autoremove --force-yes -y

我有一个Ubuntu14.04的虚拟机,所以我在客户操作系统中运行了 中的docker。

docker build -t django18-python27-ubuntu1404 . ## build docker reponame dockerfilepath

docker run -ti django18-python27-ubuntu1404 sh ## run the docker and go in

一旦我 停靠者,我就转到/src,然后运行uwsgi --ini uwsgi.ini

我的问题是如何在docker容器的/src内测试djangoapp?

我的主机操作系统是Mac OS X Mavericks。

我的客户操作系统是Ubuntu 14.04。

我的泊坞窗是在内部客户操作系统中运行。

请告知。

1 个答案:

答案 0 :(得分:4)

在您的docker文件中,定义您将公开以进行外部访问的网络端口,如下所示:

EXPOSE 80

这会将容器的端口80暴露给docker。

现在您可以告诉docker NAT并将此端口转发到docker主机的空闲端口以访问它。像这样:

docker run -p 80:80 ...

这将告诉docker将主机端口80映射到容器端口80。

请注意,它基本上是

host-port:container-port

在此之后你可以打开一个浏览器,用端口80输入你的Docker主机(Ubuntu服务器)的IP,然后你就在你的容器上了;)