如何使用docker-compose

时间:2018-09-11 09:09:39

标签: docker docker-compose dockerfile

我有一个dockerfile,试图像下面这样安装nginx:

Dockerfile

FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y expect
RUN apt-get -y install software-properties-common 
RUN apt-add-repository ppa:ondrej/php
RUN apt-get -y install php7.1 php7.1-fpm 
RUN apt-get install php7.1-mysql
RUN apt-get -y install nginx

由于某种原因,我试图在docker-compose内部运行dockfile:

version: '3'

services:
   web:
     build: 
       context: .
       dockerfile: Dockerfile
     ports:
       - "3011:80"
     command: nginx

运行 docker-compose up 后,我访问 127.0.0.1:3011 ,但是nginx没有运行。

似乎尚未启动nginx。我在这条线上做错了吗?

command: nginx

0 个答案:

没有答案