Di recente ho iniziato la migrazione alle funzionalità di rete di Docker 1.9 e Docker-Compose 1.5 per sostituire utilizzando i collegamenti.
Finora con i collegamenti non ci sono stati problemi con nginx che si connette al mio server php5-fpm fastcgi situato in un server diverso in un gruppo tramite docker-compose. Di recente però quando docker-compose --x-networking up
eseguo i miei contenitori php-fpm, mongo e nginx si avviano, tuttavia nginx si chiude immediatamente con[emerg] 1#1: host not found in upstream "waapi_php_1" in /etc/nginx/conf.d/default.conf:16
Tuttavia, se eseguo nuovamente il comando docker-compose mentre i contenitori php e mongo sono in esecuzione (uscita da nginx), nginx si avvia e da quel momento in poi funziona correttamente.
Questo è il mio docker-compose.yml
file:
nginx:
image: nginx
ports:
- "42080:80"
volumes:
- ./config/docker/nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
php:
build: config/docker/php
ports:
- "42022:22"
volumes:
- .:/var/www/html
env_file: config/docker/php/.env.development
mongo:
image: mongo
ports:
- "42017:27017"
volumes:
- /var/mongodata/wa-api:/data/db
command: --smallfiles
Questo è il mio default.conf
per nginx:
server {
listen 80;
root /var/www/test;
error_log /dev/stdout debug;
access_log /dev/stdout;
location / {
# try to serve file directly, fallback to app.php
try_files $uri /index.php$is_args$args;
}
location ~ ^/.+\.php(/|$) {
# Referencing the php service host (Docker)
fastcgi_pass waapi_php_1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
# We must reference the document_root of the external server ourselves here.
fastcgi_param SCRIPT_FILENAME /var/www/html/public$fastcgi_script_name;
fastcgi_param HTTPS off;
}
}
Come posso far funzionare nginx con una sola chiamata docker-compose?