13 lines
259 B
YAML
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
|