Tag: 吞口

如何在Docker容器中运行grep的livereload?

我创build了一个docker容器来运行任务。 所有任务正在运行,问题是我不能在Chrome中启用livrereload,虽然我暴露了我的容器中的35729端口。 这是Dockerfile: FROM ubuntu:latest MAINTAINER jiboulex EXPOSE 80 8080 3000 35729 RUN apt-get update RUN apt-get install curl -y RUN apt-get install software-properties-common -y RUN add-apt-repository ppa:chris-lea/node.js RUN apt-get update RUN apt-get install nodejs -y RUN curl -L https://www.npmjs.com/install.sh | sh RUN npm install –global gulp -y # overwrite this with 'CMD []' in […]