我有这个作曲家文件:
version: '3.1'
services:
php:
image: crypto:core
container_name: php.crypto.core
networks:
- global
stdin_open: true
tty: true
ports:
- "4000:8080"
volumes:
- .:/app
links:
- redis
- postgres
restart: always
networks:
global:
external: true
但是,当我打电话给http://localhost:4000
时,它并没有映射到外部。如果我在容器中卷曲,则8080
端口会给出响应。
我在同一网络中有更多物品,应该是将php服务器输出到外界。我的docker撰写文件出问题了吗?
非常感谢你, 马尔滕