Files
bb-valentines/docker-compose.yml
2026-02-05 13:21:48 +08:00

9 lines
153 B
YAML

version: '3'
services:
web:
image: nginx:alpine
ports:
- "8888:80"
volumes:
- ./html:/usr/share/nginx/html/
restart: always