13 lines
347 B
YAML
13 lines
347 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: andronevskaya-nginx
|
|
ports:
|
|
- "8081:80" # сайт будет доступен по http://localhost:8080
|
|
volumes:
|
|
- ./site:/usr/share/nginx/html:ro
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
restart: unless-stopped
|