[root@server11 linuxconfig]# vim DocumentRoot/index.php 创建php的测试页面
<?php
phpinfo();
?>
[root@server11 linuxconfig]# docker compose up -d 在后台运行容器编排
WARN[0000] /root/linuxconfig/docker-compose.yml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion
[root@server11 linuxconfig]# docker compose up -d --build 重新生成容器编排
WARN[0000] /root/linuxconfig/docker-compose.yml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion
[+] Running 0/2
[root@server10 linuxconfig]# docker ps 查看正在运行的容器
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f084588d3a9f phpmyadmin/phpmyadmin "/docker-entrypoint.…" 7 seconds ago Up 6 seconds 0.0.0.0:8081->80/tcp, [::]:8081->80/tcp pma
7906040eb174 mariadb:10.5.2 "docker-entrypoint.s…" 7 seconds ago Up 7 seconds 0.0.0.0:3366->3306/tcp, [::]:3366->3306/tcp linuxconfig-mariadb-1
68e2e9c682be php:7.3-apache "docker-php-entrypoi…" 52 minutes ago Up 7 seconds 0.0.0.0:80->80/tcp, [::]:80->80/tcp linuxconfig-php-httpd-1