Docker Compose 示例

1
2
3
4
5
6
version: '3.8'
services:
  web:
    image: nginx:latest
    ports:
      - "80:80"