假设有一个容器具有容器ID 8e35276e845e
。您可以使用命令docker rm 8e35276e845e
或docker rm 8e3
结束容器。请注意,前三个字符串是该特定Docker容器ID的ID。因此,根据上述场景8E3是的id 8e35276e845e。
例如:
build:
context: ./apache
dockerfile: Dockerfile
working_dir: /var/www/
volumes:
- .:/var/www
networks:
- app-network
ports:
- 8082:80
depends_on:
- mysql_db
应该变成
apache_server:
build:
context: ./apache
dockerfile: Dockerfile
working_dir: /var/www/
volumes:
- .:/var/www
networks:
- app-network
ports:
- 8083:80
depends_on:
- mysql_db
而且特定的虚拟主机也必须更改,
例(根据以上情况):
<VirtualHost *:80>
ProxyPreserveHost On
ServerAlias phpadocker.lk
ProxyPass / http://localhost:8083/
ProxyPassReverse / http://localhost:8083/
</VirtualHost>
这将帮助您解决上述问题。