Saya baru-baru ini mulai bermigrasi ke fitur jaringan Docker 1.9 dan Docker-Compose 1.5 untuk mengganti menggunakan tautan.
Sejauh ini dengan tautan tidak ada masalah dengan nginx menghubungkan ke server fastcgi php5-fpm saya yang terletak di server berbeda dalam satu grup melalui docker-compose. Baru-baru ini ketika saya menjalankan docker-compose --x-networking up
wadah php-fpm, mongo dan nginx saya boot, namun nginx langsung berhenti dengan[emerg] 1#1: host not found in upstream "waapi_php_1" in /etc/nginx/conf.d/default.conf:16
Namun, jika saya menjalankan perintah docker-compose lagi saat wadah php dan mongo berjalan (nginx keluar), nginx mulai dan berfungsi dengan baik sejak saat itu.
Ini docker-compose.yml
file saya :
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
Ini default.conf
untuk nginx saya :
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;
}
}
Bagaimana saya bisa membuat nginx bekerja hanya dengan satu panggilan docker-compose?