我正在运行SEEDBubuntu在我构建容器之后,当我尝试启动它时,它将挂起连接到www-10.9.0.80。我能做些什么来解决这个问题?
Starting www-10.9.0.80 ... done
Attaching to www-10.9.0.80
docker-compose.yml 的内容
version: "3"
services:
web-server:
build: ./image_www
image: seed-image-www-pki
container_name: www-10.9.0.80
tty: true
volumes:
- ./volumes:/volumes
networks:
net-10.9.0.0:
ipv4_address: 10.9.0.80
networks:
net-10.9.0.0:
name: net-10.9.0.0
ipam:
config:
- subnet: 10.9.0.0/24
这是预期行为。如果您想要返回命令行,则必须在分离模式下运行docker命令。
docker-compose up -d