docker/docker-compose.yml
Данил Смелянец d5a7ff11df Задание 2 докер
2025-12-04 21:56:41 +03:00

19 lines
307 B
YAML

version: "3.9"
services:
web:
build: .
container_name: web-app
expose:
- "80"
nginx:
image: nginx:alpine
container_name: nginx-proxy
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- web