ESTA É UMA EXEMPLO DE PERGUNTA! NUNCA FAÇA NA PRODUÇÃO. EXECUTE NGINX / PHP / OUTROS SERVIÇOS EM CONTÊINERES SEPARADOS!
Quando eu inicio, docker-compose up
o contêiner do Ubuntu é encerrado com ubuntu exited with code 0
.
Quando corro docker run -d -ti -p 80:80 -v ~/sph/laravel52:/www/laravel ubuntu
, tudo funciona bem.
Como posso replicar esse comportamento usando o Docker Compose?
Este é o meu Dockerfile
:
# Version: 0.0.1
FROM ubuntu:15.04
ENV DEBIAN_FRONTEND noninteractive
#INSTALL ALL
RUN apt-get update && apt-get install -y \
nano \
php5-fpm \
php5-mysql \
nginx
#NGINX CONF
ADD nginx/sites-available/laravel.conf /etc/nginx/sites-available/
RUN rm /etc/nginx/sites-available/default
RUN mv /etc/nginx/sites-available/laravel.conf /etc/nginx/sites-available/default
VOLUME /www
ENTRYPOINT nginx && service php5-fpm start && /bin/bash
CMD ["true"]
EXPOSE 80
E docker-compose.yml
:
version: '2'
services:
ubuntu:
build: .
container_name: ubuntu
volumes:
- ~/sph/laravel52:/www/laravel
ports:
- "80:80"
docker
docker-compose
Tim Devlet
fonte
fonte
ENTRYPOINT nginx && service php5-fpm start && /bin/bash
. Mas se você não entende a implicação dessa decisão, pode ler o seguinte github.com/phusion/baseimage-dockerRespostas:
O fato é que você está usando a opção
-t
ao executar seu contêiner.Você poderia verificar se a ativação da
tty
opção (consulte a referência ) no arquivo docker-compose.yml o contêiner continua em execução?fonte
ERROR: An HTTP request took too long to complete. Retry with --verbose to obtain debug information.
depois de adicionartty: true
?