我在客户端使用 macOS,在服务器端使用 Ubuntu 16.04。
我想问一下,如果我定义了一个 docker-compose.yml 文件,如下所示:
version: "3.1"
services:
server:
image: ubuntu
web:
image: nginx
php:
image: 7.1.12-fpm-alpine
它是否安装 ubuntu、debian (FROM debian:stretch-slim) 和 alpine?
还是只安装 ubuntu、nginx 和 php-7-fpm?
如果我想要第二个,我该怎么办?