base-nginx/docker-compose.yml
Astound 353b0538bd
All checks were successful
release / release-default (push) Successful in 6m59s
initial import
2025-06-24 21:15:58 -05:00

13 lines
259 B
YAML

version: '3.8'
services:
web:
image: docker.io/rusian/base-nginx
container_name: base-nginx
ports:
- "8080:80"
volumes:
- ./html:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/nginx.conf:ro
restart: unless-stopped