我是Docker的新手。我创建了一个docker-compose,其中包含1个主应用程序(laravel)网站和2个API。
我正在尝试从laravel网站访问api,但是不断获取:
cURL error 7: Failed to connect to 0.0.0.0 port 8082: Connection refused (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
我的docker-compose.yml是:
version: '3'
services:
web:
image: nginx:1.10
volumes:
- ./vhost.conf:/etc/nginx/conf.d/default.conf
ports:
- "8080:80"
depends_on:
- app
restart: always
app:
build: . #run the dockerfile to install whatever
env_file: .env
volumes:
- ./:/var/www
depends_on:
- database
web-api2:
image: nginx:1.10
volumes:
- ../api/api2/vhost.conf:/etc/nginx/conf.d/default.conf
ports:
- "8081:81"
depends_on:
- app-api2
app-api2:
build: . #run the dockerfile to install whatever
env_file: .env
volumes:
- ../api/api2:/var/www
depends_on:
- database
web-api1:
image: nginx:1.10
volumes:
- ../api/api1/vhost.conf:/etc/nginx/conf.d/default.conf
ports:
- "8082:82"
depends_on:
- app-api1
app-api1:
build: . #run the dockerfile to install whatever
env_file: ../api/api1/.env
volumes:
- ../api/api1:/var/www
depends_on:
- database
database:
image: mysql:5.7
environment:
- "MYSQL_ROOT_PASSWORD=IAmSoSecure"
- "MYSQL_DATABASE=my_app"
ports:
- "33061:3306"
volumes:
- my_app:/var/lib/mysql
restart: always
volumes:
wildfire:
我已经研究了docker网络,但是我的尝试失败了。我有一个网络设置,并尝试使用子网,但没有成功:
"IPAM": {
"Driver": "default",
"Options": {},
"Config": [
{
"Subnet": "172.18.0.0/16",
"Gateway": "172.18.0.1"
}
]
},
我也尝试访问已启用的端口:
"Ports": {
"443/tcp": null,
"80/tcp": null,
"82/tcp": [
{
"HostIp": "0.0.0.0",
"HostPort": "8082"
}
]
},
我正像往常一样通过Guzzle请求通话:
$client = new Client();
$res = $client->get('127.0.0.1:8082/accounts');
dd($res->getBody()->getContents());
我尝试了不同的IP,但是找不到正确的IP。
我当前的vhost.conf是:
server {
listen 80;
index index.php server.php;
root /var/www/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html server.php index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass app:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_param PATH_INFO $fastcgi_path_info;
include fastcgi_params;
include /etc/nginx/mime.types;
}
location ~ /\.(?!well-known).* {
deny all;
}
location ~ \.css {
add_header Content-Type text/css;
}
location ~ \.js {
add_header Content-Type application/x-javascript;
}
}
答案 0 :(得分:2)
在docker compose上,启动3个nginx:web,web-api2和web-api1。
根据您的编写,web-api2在端口81上侦听,web-api1在端口82上侦听。
如果要从网络中的应用程序访问api,则需要使用:
http://web-api2:81/...
http://web-api1:82/...
请注意,在您的本地计算机中,您将使用http://localhost:8081
和http://localhost:8082
来映射Web-api2上的端口8081至81和Web-api1上的8082至82
答案 1 :(得分:1)
在docker compose创建的默认网络上,由协调器管理的每个容器都可以通过其服务名称来访问,该服务名称恰好与docker-compose.yaml
文件中为其指定的名称相同。因此,根据您的问题,您可以使用以下相同的方式在同一网络上的每个容器到达app-api2
:
http://app-api2:82/accounts
要在容器中使用127.0.0.1
获得更完整的答案,则意味着您正在尝试访问容器本身内的服务,并且在您的情况下,监听82
。由于您没有其他可执行文件在同一个容器中运行并在该端口上侦听,因此您可以正确接收Connection refused
。
知道您严格不需要公开来自docker-compose.yaml
文件的端口以供同一网络上的其他容器进行通信也可能对您很有用。暴露的端口使您可以从主机发出请求(实际上您将使用127.0.0.1
)。
如果出于某种原因您确实想使用容器的IP地址在容器之间进行通信,则可以使用docker inspect <container name>
找到特定容器的当前IP。但是请注意,此IP是临时的,每次旋转容器时都可能会更改。
答案 2 :(得分:1)
为解决此问题,我将原来查看的网址更改为:
libB
为了最佳实践,我还将端口号更改为8082。这也反映在我的docker-compose.yml中:
$client = new Client();
$res = $client->get('**http://web-api2:82/accounts**');
dd($res->getBody()->getContents());
感谢大家的回答!