QUESTA È UNA DOMANDA DI CAMPIONE! NON FARLO MAI IN PRODUZIONE. ESEGUI NGINX / PHP / ALTRI SERVIZI IN CONTENITORI SEPARATI!
Quando avvio docker-compose up
il contenitore di Ubuntu esce con ubuntu exited with code 0
.
Quando corro docker run -d -ti -p 80:80 -v ~/sph/laravel52:/www/laravel ubuntu
, tutto funziona bene.
Come posso replicare questo comportamento utilizzando Docker Compose?
Questo è il mio 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"
ENTRYPOINT nginx && service php5-fpm start && /bin/bash
. Ma se non capisci le implicazioni di tale decisione potresti leggere il seguente github.com/phusion/baseimage-docker