Files
Songdle/docker-compose.yaml
2025-07-01 11:40:25 +02:00

11 lines
174 B
YAML

services:
web:
image: nginx
volumes:
- ./html:/usr/share/nginx/html
ports:
- "8080:80"
environment:
- NGINX_HOST=foobar.com
- NGINX_PORT=80