コンテナにアクセスしてブラウザに表示するまでが遅くて不便だったので
対策をメモ
docker-compose.yml
web:
image: nginx:alpine
container_name: nginx
ports:
- '9400:80'
depends_on:
- app
volumes:
- ./default.conf:/etc/nginx/conf.d/default.conf:delegated
- .:/var/www/html:delegated
app:
build: ./php
container_name: php
volumes:
- .:/var/www/html:delegated
depends_on:
- mysql
volumeにdelegateオプションを付与