Files
docker-test/docker-compose.yml
2025-08-25 18:03:03 +01:00

11 lines
198 B
YAML

version: "3.9"
services:
web:
image: nginx:alpine
container_name: hello-nginx
restart: unless-stopped
ports:
- "8082:80"
volumes:
- ./html:/usr/share/nginx/html:ro