pixelated.sh/docker-compose.yml

10 lines
168 B
YAML
Raw Normal View History

services:
web:
2025-01-27 22:37:42 +01:00
image: nginx:latest
container_name: web
2024-12-11 17:15:06 +01:00
restart: unless-stopped
2025-01-27 22:37:42 +01:00
volumes:
2025-01-27 22:39:50 +01:00
- ./html:/usr/share/nginx/html
ports:
2025-01-27 22:37:42 +01:00
- '80:80'