我试图在docker容器中运行Web应用程序。这是我的docker-compose.yml
version: '2'
services:
web-app:
image: org/webapp
container_name: web-app
ports:
- "8080:8080"
expose:
- "8080"
volumes:
- ./code/source:/source
command: tail -f /dev/null
postgres:
image: postgres:9.5
container_name: local-postgres9.5
volumes_from:
- postgres-data
postgres-data:
image: busybox
container_name: postgres9.5-data
volumes:
- /var/lib/postgresql/data
当我跑步时
docker-compose up -d
我可以使用curl命令从容器内连接到Web应用程序。当我尝试从主机连接时,我收到连接拒绝错误