Files
learn/pelajaran-1/docker-compose.yml
T

9 lines
168 B
YAML

services:
web:
image: nginx:alpine
ports:
- "8088:80"
volumes:
- ./index.html:/usr/share/nginx/html/index.html:ro
restart: unless-stopped