Convert a docker run command into a docker-compose.yaml service, locally in your browser.
docker-compose.yaml
services:web:image: "nginx:alpine"container_name: webrestart: unless-stoppedports:- "8080:80"volumes:- "./html:/usr/share/nginx/html:ro"environment:- "TZ=Asia/Shanghai"